Remove all use of stringstream in an attempt to fix
[dcpomatic.git] / test / ffmpeg_examiner_test.cc
index 13846a8a16bff016609efa9a85357e8b7b5d8fb5..4113160899b7aa63b920bf96455193e1f6f5be0a 100644 (file)
@@ -37,7 +37,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_examiner_test)
        shared_ptr<FFmpegContent> content (new FFmpegContent (film, "test/data/count300bd24.m2ts"));
        shared_ptr<FFmpegExaminer> examiner (new FFmpegExaminer (content));
 
-       BOOST_CHECK_EQUAL (examiner->first_video().get(), ContentTime::from_seconds (600));
+       BOOST_CHECK_EQUAL (examiner->first_video().get().get(), ContentTime::from_seconds(600).get());
        BOOST_CHECK_EQUAL (examiner->audio_streams().size(), 1U);
-       BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime::from_seconds (600));
+       BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get().get(), ContentTime::from_seconds(600).get());
 }