diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-13 13:54:32 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-13 13:54:52 +0100 |
commit | 6d6eb7c12c833b33ce94e7bd963b1d770defd56c (patch) | |
tree | 3b4a40e93f46031fc8a4325d18af59d469f39f7a /libavformat | |
parent | 841a288cb32785400261cbab959fcfb982d3f699 (diff) | |
parent | abae27ed3acd0a7c54f11760c5be2d2653c4edf8 (diff) | |
download | ffmpeg-6d6eb7c12c833b33ce94e7bd963b1d770defd56c.tar.gz |
Merge commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8'
* commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8':
rtpdec: Fix the calculation of expected number of packets
fate: vp3: Fix fate-vp3-coeff-level64 test dependencies
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 17e2e87bd3..6f6fa799dc 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -273,7 +273,7 @@ int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, URLContext *fd, // some placeholders we should really fill... // RFC 1889/p64 extended_max = stats->cycles + stats->max_seq; - expected = extended_max - stats->base_seq + 1; + expected = extended_max - stats->base_seq; lost = expected - stats->received; lost = FFMIN(lost, 0xffffff); // clamp it since it's only 24 bits... expected_interval = expected - stats->expected_prior; |