X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fffmpeg_decoder_error_test.cc;h=414c6138496c31f14bb1e8c8cedf58c548d3cdab;hp=368f54e3ccce7c0020cc2f622935ef56937ec4e1;hb=fb0e2ead59a442700c671270c7d57b5bffeaeab3;hpb=c372e8abde00dcf29493643cf7354154637150fa diff --git a/test/ffmpeg_decoder_error_test.cc b/test/ffmpeg_decoder_error_test.cc index 368f54e3c..414c61384 100644 --- a/test/ffmpeg_decoder_error_test.cc +++ b/test/ffmpeg_decoder_error_test.cc @@ -22,6 +22,7 @@ #include "lib/content.h" #include "lib/content_factory.h" #include "lib/dcpomatic_time.h" +#include "lib/player.h" #include "test.h" #include @@ -46,3 +47,13 @@ BOOST_AUTO_TEST_CASE (check_exception_during_flush) } + +BOOST_AUTO_TEST_CASE (check_exception_with_multiple_video_frames_per_packet) +{ + auto content = content_factory(TestPaths::private_data() / "chk.mkv").front(); + auto film = new_test_film2 ("check_exception_with_multiple_video_frames_per_packet", { content }); + auto player = std::make_shared(film, film->playlist()); + + while (!player->pass()) {} +} +