From: Baptiste Coudurier Date: Fri, 27 Jun 2008 21:29:11 +0000 (+0000) Subject: clarify error message about codec tag X-Git-Tag: v0.5~3905 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/bc4c3a55f5a4d41e2a5b65ed10d11a989c66903d clarify error message about codec tag Originally committed as revision 14013 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d41fd97..b7601a1 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1531,7 +1531,8 @@ static int mov_write_header(AVFormatContext *s) track->mode = mov->mode; track->tag = mov_find_codec_tag(s, track); if (!track->tag) { - av_log(s, AV_LOG_ERROR, "track %d: could not find tag for codec\n", i); + av_log(s, AV_LOG_ERROR, "track %d: could not find tag, " + "codec not currently supported in container\n", i); return -1; } if(st->codec->codec_type == CODEC_TYPE_VIDEO){