Commit 826b3a75 authored by Michael Niedermayer's avatar Michael Niedermayer

h264_cavlc: fix reading skip run

Fixes Ticket2606
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3f714d1f
......@@ -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){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment