diff options
author | Dirk Ausserhaus <dausserhaus@gmail.com> | 2014-05-29 13:17:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-30 13:49:25 +0200 |
commit | d24673a2c80418c3c14dad523619f44f3ca8cb58 (patch) | |
tree | 0284da96f0cca98800c681f11740e804d2e25a5c /libavcodec/ivi_common.c | |
parent | ca2ec98cbe1f0e690cac6f6a8c9b9fedd58c10f5 (diff) | |
download | ffmpeg-d24673a2c80418c3c14dad523619f44f3ca8cb58.tar.gz |
avcodec/indeo4: Move frametypes into common header.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r-- | libavcodec/ivi_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c index 7b1db42b06..55843efa92 100644 --- a/libavcodec/ivi_common.c +++ b/libavcodec/ivi_common.c @@ -1044,7 +1044,7 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, * That's exactly the same Intel decoders do. */ if (avctx->codec_id == AV_CODEC_ID_INDEO4 && - ctx->frame_type == 0/*FRAMETYPE_INTRA*/) { + ctx->frame_type == IVI4_FRAMETYPE_INTRA) { // skip version string while (get_bits(&ctx->gb, 8)) { if (get_bits_left(&ctx->gb) < 8) |