diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-11 16:42:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-11 22:16:16 +0100 |
| commit | 758c1ba16ab87152621f6c7c62c2e011a2ae2712 (patch) | |
| tree | c9b68e6660e47a493b927c6be222d058cd0320c9 /test/player_test.cc | |
| parent | 84039db657c3cc72719706a136c90741170c765a (diff) | |
Fix failure to decode multiple video frames from one packet (#2159).v2.15.183
Diffstat (limited to 'test/player_test.cc')
| -rw-r--r-- | test/player_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/player_test.cc b/test/player_test.cc index cafb14586..0d3af5f8c 100644 --- a/test/player_test.cc +++ b/test/player_test.cc @@ -210,7 +210,7 @@ BOOST_AUTO_TEST_CASE (player_interleave_test) player->Audio.connect (bind (&audio, _1, _2)); video_frames = audio_frames = 0; while (!player->pass ()) { - BOOST_CHECK (abs(video_frames - (audio_frames / 2000)) < 8); + BOOST_CHECK (abs(video_frames - (audio_frames / 2000)) <= 8); } } |
