diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-11 08:46:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | 640a1ef73e575fe891a420dec392dace8b1a0255 (patch) | |
| tree | e318886298cbc11e894246eb0ad804f8bcecaf0a | |
| parent | fbc3732485c9b56a9dff75071e661a54edbacafe (diff) | |
Another test fix.
| -rw-r--r-- | test/ffmpeg_pts_offset_test.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ffmpeg_pts_offset_test.cc b/test/ffmpeg_pts_offset_test.cc index db9e751d5..a10e505dd 100644 --- a/test/ffmpeg_pts_offset_test.cc +++ b/test/ffmpeg_pts_offset_test.cc @@ -35,6 +35,10 @@ BOOST_AUTO_TEST_CASE (ffmpeg_pts_offset_test) { shared_ptr<Film> film = new_test_film ("ffmpeg_pts_offset_test"); shared_ptr<FFmpegContent> content (new FFmpegContent (film, "test/data/test.mp4")); + film->examine_and_add_content (content); + wait_for_jobs (); + + content->audio.reset (new AudioContent (content.get(), film)); content->audio->add_stream (shared_ptr<FFmpegAudioStream> (new FFmpegAudioStream)); content->_video_frame_rate = 24; |
