Fix some confusions with FFmpeg audio streams.
[dcpomatic.git] / test / seek_zero_test.cc
index 7f661b21cf11183ead22b494a080146837f5c0c6..f05920c26718f74cd490d0132e13890658f4f78d 100644 (file)
@@ -31,6 +31,7 @@
 #include "lib/ffmpeg_audio_stream.h"
 #include "lib/content_video.h"
 #include "test.h"
+#include <iostream>
 
 using std::cout;
 using std::list;
@@ -47,7 +48,7 @@ BOOST_AUTO_TEST_CASE (seek_zero_test)
        shared_ptr<FFmpegContent> content (new FFmpegContent (film, "test/data/count300bd48.m2ts"));
        film->examine_and_add_content (content);
        wait_for_jobs ();
-       content->set_scale (VideoContentScale (Ratio::from_id ("185")));
+       content->video->set_scale (VideoContentScale (Ratio::from_id ("185")));
 
        /* Work out the first video frame index that we will be given, taking into account
         * the difference between first video and first audio.
@@ -57,9 +58,9 @@ BOOST_AUTO_TEST_CASE (seek_zero_test)
                video_delay = ContentTime ();
        }
 
-       Frame const first_frame = video_delay.round_up (content->video_frame_rate ()).frames (content->video_frame_rate ());
+       Frame const first_frame = video_delay.round_up (content->video->frame_rate ()).frames_round (content->video->frame_rate ());
 
-       FFmpegDecoder decoder (content, film->log());
+       FFmpegDecoder decoder (content, film->log(), false);
        list<ContentVideo> a = decoder.get_video (first_frame, true);
        BOOST_CHECK (a.size() == 1);
        BOOST_CHECK_EQUAL (a.front().frame, first_frame);