diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-18 13:19:59 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-18 13:19:59 +0000 |
commit | f2f8fb1035d0ce0ab4b229f412564b28d4b5263b (patch) | |
tree | dbd237207f35d15a292d0da416d3f13eb8043e3a | |
parent | 082a857522fb6b2cf1dc5f2d7251063c9531d62d (diff) | |
download | ffmpeg-f2f8fb1035d0ce0ab4b229f412564b28d4b5263b.tar.gz |
Remove redundant text in the log.
Originally committed as revision 25517 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/xan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/xan.c b/libavcodec/xan.c index ebc2b420f0..e5792a1fce 100644 --- a/libavcodec/xan.c +++ b/libavcodec/xan.c @@ -68,7 +68,7 @@ static av_cold int xan_decode_init(AVCodecContext *avctx) if ((avctx->codec->id == CODEC_ID_XAN_WC3) && (s->avctx->palctrl == NULL)) { - av_log(avctx, AV_LOG_ERROR, " WC3 Xan video: palette expected.\n"); + av_log(avctx, AV_LOG_ERROR, "palette expected\n"); return AVERROR(EINVAL); } @@ -364,7 +364,7 @@ static int xan_decode_frame(AVCodecContext *avctx, AVPaletteControl *palette_control = avctx->palctrl; if ((ret = avctx->get_buffer(avctx, &s->current_frame))) { - av_log(s->avctx, AV_LOG_ERROR, " Xan Video: get_buffer() failed\n"); + av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); return ret; } s->current_frame.reference = 3; |