From bc4c3a55f5a4d41e2a5b65ed10d11a989c66903d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 27 Jun 2008 21:29:11 +0000 Subject: [PATCH] clarify error message about codec tag Originally committed as revision 14013 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d41fd97b48..b7601a13da 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){