summaryrefslogtreecommitdiff
path: root/test/ffmpeg_decoder_sequential_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-26 16:47:39 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-26 22:32:11 +0100
commitf188128e2577942f030374631d3cf1324a00624a (patch)
tree72c1b82d5b7f90069b7ba2a05e8b209cd527c3e4 /test/ffmpeg_decoder_sequential_test.cc
parentc4ea2ff06b31ccd20daadbdc968e397eb13a7e36 (diff)
{Video,Audio}Frame -> Frame.
Diffstat (limited to 'test/ffmpeg_decoder_sequential_test.cc')
-rw-r--r--test/ffmpeg_decoder_sequential_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ffmpeg_decoder_sequential_test.cc b/test/ffmpeg_decoder_sequential_test.cc
index c5f43173e..551157652 100644
--- a/test/ffmpeg_decoder_sequential_test.cc
+++ b/test/ffmpeg_decoder_sequential_test.cc
@@ -54,11 +54,11 @@ test (boost::filesystem::path file, float fps, int gaps)
BOOST_CHECK_CLOSE (decoder.video_content()->video_frame_rate(), fps, 0.01);
- VideoFrame const N = decoder.video_content()->video_length().frames (decoder.video_content()->video_frame_rate ());
+ Frame const N = decoder.video_content()->video_length().frames (decoder.video_content()->video_frame_rate ());
#ifdef DCPOMATIC_DEBUG
decoder.test_gaps = 0;
#endif
- for (VideoFrame i = 0; i < N; ++i) {
+ for (Frame i = 0; i < N; ++i) {
list<ContentVideo> v;
v = decoder.get_video (i, true);
BOOST_CHECK_EQUAL (v.size(), 1);