mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
h264: 10l fix, missing () after replacing % by &
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1ca1336067
commit
e403a97aac
@ -3864,7 +3864,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
|
||||
break;
|
||||
|
||||
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) & ((1 << h->sps.log2_max_frame_num)-1)) > h->sei_recovery_frame_cnt) {
|
||||
h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) %
|
||||
(1 << h->sps.log2_max_frame_num);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user