Browse Source

Print unexpected length of flicvideo extradata.

tags/n0.11
Carl Eugen Hoyos 14 years ago
parent
commit
b4043ef504
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flicvideo.c

+ 1
- 1
libavcodec/flicvideo.c View File

@@ -87,7 +87,7 @@ static av_cold int flic_decode_init(AVCodecContext *avctx)
avctx->extradata_size != 12 &&
avctx->extradata_size != 128 &&
avctx->extradata_size != 1024) {
av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12, 128 or 1024 bytes\n");
av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12, 128 or 1024 bytes, got %d\n", avctx->extradata_size);
return AVERROR_INVALIDDATA;
}



Loading…
Cancel
Save