summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-10-26 15:38:46 +0100
committerCarl Hetherington <cth@carlh.net>2025-10-26 15:38:46 +0100
commitd4d26c954f4e61b1b1a526c56d88dfd51b6fab48 (patch)
tree8d1fca74ff1be621887a8ac39e91d947f84f9d31 /src/lib/video_decoder.cc
parentcee4765caf903bf4b60e0e7539eaa2dae2bfa952 (diff)
wip: hacks.new-signals
Diffstat (limited to 'src/lib/video_decoder.cc')
-rw-r--r--src/lib/video_decoder.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc
index 6aa638cea..036307208 100644
--- a/src/lib/video_decoder.cc
+++ b/src/lib/video_decoder.cc
@@ -19,6 +19,7 @@
*/
+#include "cross.h"
#include "frame_interval_checker.h"
#include "image.h"
#include "j2k_image_proxy.h"
@@ -81,6 +82,7 @@ VideoDecoder::emit(shared_ptr<const Film> film, shared_ptr<const ImageProxy> ima
switch (vft) {
case VideoFrameType::TWO_D:
+ std::cout << "Data emit from " << thread_name() << "\n";
Data(ContentVideo(image, time, Eyes::BOTH, Part::WHOLE));
break;
case VideoFrameType::THREE_D: