mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
h264: Calculate a tighter recovery_frame.
Reduces delay with mplayers TS demuxer. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
63f0708478
commit
35075dc650
@ -3863,7 +3863,8 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
|
|||||||
if((err = decode_slice_header(hx, h)))
|
if((err = decode_slice_header(hx, h)))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (h->sei_recovery_frame_cnt >= 0 && h->recovery_frame < 0) {
|
if ( h->sei_recovery_frame_cnt >= 0
|
||||||
|
&& (h->recovery_frame - h->frame_num) & ((1 << h->sps.log2_max_frame_num)-1) > h->sei_recovery_frame_cnt) {
|
||||||
h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) %
|
h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) %
|
||||||
(1 << h->sps.log2_max_frame_num);
|
(1 << h->sps.log2_max_frame_num);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user