Merge commit 'abae27ed3a
'
* commit 'abae27ed3a
':
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>
This commit is contained in:
commit
6d6eb7c12c
3 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue