diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-04-29 20:57:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-04-29 20:57:02 +0100 |
| commit | 233bb3f790aef3c8f9a7a7fde9875833b7dc1dfb (patch) | |
| tree | bdf3969586b1d393a0dc7affe184573d2efb4c66 /test/ffmpeg_decoder_sequential_test.cc | |
| parent | 034feb503b0a38eb82c21ae8d9f83522fc63a25c (diff) | |
Various comment fixes to tests.
Diffstat (limited to 'test/ffmpeg_decoder_sequential_test.cc')
| -rw-r--r-- | test/ffmpeg_decoder_sequential_test.cc | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/ffmpeg_decoder_sequential_test.cc b/test/ffmpeg_decoder_sequential_test.cc index 96de9be27..48b9b6b3b 100644 --- a/test/ffmpeg_decoder_sequential_test.cc +++ b/test/ffmpeg_decoder_sequential_test.cc @@ -17,6 +17,11 @@ */ +/** @file test/ffmpeg_decoder_sequential_test.cc + * @brief Check that the FFmpeg decoder produces sequential frames without gaps or dropped frames; + * (dropped frames being checked by assert() in VideoDecoder). Also that the decoder picks up frame rates correctly. + */ + #include <boost/test/unit_test.hpp> #include <boost/filesystem.hpp> #include "lib/ffmpeg_content.h" @@ -64,13 +69,10 @@ test (boost::filesystem::path file, float fps, int first) BOOST_CHECK_EQUAL (decoder.test_gaps, 0); } -/** Check that the FFmpeg decoder produces sequential frames without gaps or dropped frames; - * (dropped frames being checked by assert() in VideoDecoder). Also that the decoder picks up frame rates correctly. - */ BOOST_AUTO_TEST_CASE (ffmpeg_decoder_sequential_test) { - //test ("boon_telly.mkv", 29.97, 0); - //test ("Sintel_Trailer1.480p.DivX_Plus_HD.mkv", 24, 0); + test ("boon_telly.mkv", 29.97, 0); + test ("Sintel_Trailer1.480p.DivX_Plus_HD.mkv", 24, 0); test ("prophet_clip.mkv", 23.976, 12); } |
