diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-14 11:48:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-14 11:48:37 +0100 |
| commit | 4b7b0edb359ae68f2dbcab90c7c10382f507fa5b (patch) | |
| tree | 2cf52d224651f1f0fb1b4fd0d542acf8b77835eb /test/ffmpeg_decoder_seek_test.cc | |
| parent | 3d6501346b187f35d0f55d16e13f8817f505a82f (diff) | |
Add VideoFrame class.
This puts a frame index with an Eyes, which simplifies code in
some areas. I can't think of a better name for it,
unfortunately.
Diffstat (limited to 'test/ffmpeg_decoder_seek_test.cc')
| -rw-r--r-- | test/ffmpeg_decoder_seek_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ffmpeg_decoder_seek_test.cc b/test/ffmpeg_decoder_seek_test.cc index 93c447591..8a854b01b 100644 --- a/test/ffmpeg_decoder_seek_test.cc +++ b/test/ffmpeg_decoder_seek_test.cc @@ -49,7 +49,7 @@ check (shared_ptr<FFmpegDecoder> decoder, int frame) list<ContentVideo> v; v = decoder->video->get (frame, true); BOOST_CHECK (v.size() == 1); - BOOST_CHECK_EQUAL (v.front().frame, frame); + BOOST_CHECK_EQUAL (v.front().frame.index(), frame); } static void |
