Commit b951a546 authored by pross's avatar pross

it is not necessary to display the decoder name, as av_log() automatically prints the context

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22023 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b88b2558
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment