Commit bc4c3a55 authored by Baptiste Coudurier's avatar Baptiste Coudurier

clarify error message about codec tag

Originally committed as revision 14013 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 15061147
......@@ -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){
......
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