diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-27 21:29:11 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-27 21:29:11 +0000 |
commit | bc4c3a55f5a4d41e2a5b65ed10d11a989c66903d (patch) | |
tree | 5c49f478521b7a55f155c55d44e3c58fe9403e28 /libavformat | |
parent | 150611474e2a12471078bc4c7300ab97cc174d22 (diff) | |
download | ffmpeg-bc4c3a55f5a4d41e2a5b65ed10d11a989c66903d.tar.gz |
clarify error message about codec tag
Originally committed as revision 14013 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/movenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
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){ |