clarify error message about codec tag

Originally committed as revision 14013 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-06-27 21:29:11 +00:00
parent 150611474e
commit bc4c3a55f5
1 changed files with 2 additions and 1 deletions

View File

@ -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){