summaryrefslogtreecommitdiff
path: root/libavcodec/mmvideo.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2010-02-24 11:51:42 +0000
committerPeter Ross <pross@xvid.org>2010-02-24 11:51:42 +0000
commit601e74d3660f0bda7d5d6e5da52bfcdf731952eb (patch)
tree86f33a54cf37ca16e9b5aa39c529cbb3648e463b /libavcodec/mmvideo.c
parentdd80be5bfcc4135906cf9aff516c82c6efca18bd (diff)
it is not necessary to display the decoder name, as av_log() automatically prints the context
Originally committed as revision 22023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mmvideo.c')
-rw-r--r--libavcodec/mmvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mmvideo.c b/libavcodec/mmvideo.c
index 0b45b77474..fe1156159b 100644
--- a/libavcodec/mmvideo.c
+++ b/libavcodec/mmvideo.c
@@ -60,7 +60,7 @@ static av_cold int mm_decode_init(AVCodecContext *avctx)
s->frame.reference = 1;
if (avctx->get_buffer(avctx, &s->frame)) {
- av_log(s->avctx, AV_LOG_ERROR, "mmvideo: get_buffer() failed\n");
+ av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1;
}