remove goto and reindent patch by (Loic Le Loarer <lll+ffmpeg m4x org>)

Originally committed as revision 3960 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Loic Le Loarer 20 years ago committed by Michael Niedermayer
parent 8536ab8964
commit e7e09b49b4
  1. 5
      libavcodec/h264.c

@ -2765,8 +2765,7 @@ static void hl_decode_mb(H264Context *h){
}
}
}
goto deblock;
}
} else {
if(IS_INTRA(mb_type)){
if(h->deblocking_filter)
xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1);
@ -2873,7 +2872,7 @@ static void hl_decode_mb(H264Context *h){
}
}
}
deblock:
}
if(h->deblocking_filter) {
backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
fill_caches(h, mb_type, 1); //FIXME dont fill stuff which isnt used by filter_mb

Loading…
Cancel
Save