summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-12-13 20:41:33 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-12-13 20:41:33 +0000
commitd55f7b6521016250c2f22397454c05fc8ace600a (patch)
tree6cc707c837160b52ca24b6c56e4089d7f6aef623 /libavcodec/h263dec.c
parent0c11692a1d0fb006713c2174809ba60985f4a28e (diff)
cleanup
Originally committed as revision 2605 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 306097cf40..1372e4a7e1 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -85,7 +85,6 @@ int ff_h263_decode_init(AVCodecContext *avctx)
s->msmpeg4_version=5;
break;
case CODEC_ID_H263I:
- s->h263_intel = 1;
break;
case CODEC_ID_FLV1:
s->h263_flv = 1;
@@ -460,7 +459,7 @@ retry:
if(s->flags& CODEC_FLAG_LOW_DELAY)
s->low_delay=1;
- } else if (s->h263_intel) {
+ } else if (s->codec_id == CODEC_ID_H263I) {
ret = intel_h263_decode_picture_header(s);
} else if (s->h263_flv) {
ret = flv_h263_decode_picture_header(s);