diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-10-17 14:32:14 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-10-19 00:08:01 +0000 |
commit | 0bf40e0ef4218f96b465d5d619772f829d5cf73d (patch) | |
tree | 08b8e61ef7fef71e0acb381cb985a347478b26e0 /libavcodec | |
parent | 4c6c6a266e9ccd1ce49d82cd68478185bfcbc066 (diff) | |
download | ffmpeg-0bf40e0ef4218f96b465d5d619772f829d5cf73d.tar.gz |
lavc/yop: remove redudant YOP in av_log() messages
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/yop.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/yop.c b/libavcodec/yop.c index 21036284b2..255ed32ca7 100644 --- a/libavcodec/yop.c +++ b/libavcodec/yop.c @@ -85,7 +85,6 @@ static av_cold int yop_decode_init(AVCodecContext *avctx) if (avctx->width & 1 || avctx->height & 1 || av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) { - av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n"); return -1; } @@ -104,7 +103,7 @@ static av_cold int yop_decode_init(AVCodecContext *avctx) if (s->num_pal_colors + s->first_color[0] > 256 || s->num_pal_colors + s->first_color[1] > 256) { av_log(avctx, AV_LOG_ERROR, - "YOP: palette parameters invalid, header probably corrupt\n"); + "Palette parameters invalid, header probably corrupt\n"); return AVERROR_INVALIDDATA; } @@ -147,8 +146,7 @@ static int yop_copy_previous_block(YopDecContext *s, int copy_tag) bufptr = s->dstptr + motion_vector[copy_tag][0] + s->frame.linesize[0] * motion_vector[copy_tag][1]; if (bufptr < s->dstbuf) { - av_log(s->avctx, AV_LOG_ERROR, - "YOP: cannot decode, file probably corrupt\n"); + av_log(s->avctx, AV_LOG_ERROR, "File probably corrupt\n"); return AVERROR_INVALIDDATA; } |