mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-03 16:51:18 +00:00
h264_cavlc: fix reading skip run
Fixes Ticket2606 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3f714d1ffd
commit
826b3a75cd
@ -712,7 +712,7 @@ int ff_h264_decode_mb_cavlc(H264Context *h){
|
||||
down the code */
|
||||
if(h->slice_type_nos != AV_PICTURE_TYPE_I){
|
||||
if(h->mb_skip_run==-1)
|
||||
h->mb_skip_run= get_ue_golomb(&h->gb);
|
||||
h->mb_skip_run= get_ue_golomb_long(&h->gb);
|
||||
|
||||
if (h->mb_skip_run--) {
|
||||
if(FRAME_MBAFF(h) && (h->mb_y&1) == 0){
|
||||
|
Loading…
Reference in New Issue
Block a user