Mercurial > libavcodec.hg
changeset 5984:ba13cc3e38bb libavcodec
Initialize function pointers used by error resilience code before any
potential error return from decode_slice_header.
Fixes issue 284.
author | heydowns |
---|---|
date | Wed, 05 Dec 2007 05:24:54 +0000 |
parents | f0ae240d8349 |
children | 51b4b51fa622 |
files | h264.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Tue Dec 04 17:41:46 2007 +0000 +++ b/h264.c Wed Dec 05 05:24:54 2007 +0000 @@ -3875,6 +3875,14 @@ s->dropable= h->nal_ref_idc == 0; + if((s->avctx->flags2 & CODEC_FLAG2_FAST) && !h->nal_ref_idc){ + s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab; + s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab; + }else{ + s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab; + s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab; + } + first_mb_in_slice= get_ue_golomb(&s->gb); if((s->flags2 & CODEC_FLAG2_CHUNKS) && first_mb_in_slice == 0){ @@ -4241,14 +4249,6 @@ ); } - if((s->avctx->flags2 & CODEC_FLAG2_FAST) && !h->nal_ref_idc){ - s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab; - s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab; - }else{ - s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab; - s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab; - } - return 0; }