Commit 7ddf8d6c authored by bcoudurier's avatar bcoudurier

clarify error message about codec tag

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14013 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a656d406
...@@ -1531,7 +1531,8 @@ static int mov_write_header(AVFormatContext *s) ...@@ -1531,7 +1531,8 @@ static int mov_write_header(AVFormatContext *s)
track->mode = mov->mode; track->mode = mov->mode;
track->tag = mov_find_codec_tag(s, track); track->tag = mov_find_codec_tag(s, track);
if (!track->tag) { 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; return -1;
} }
if(st->codec->codec_type == CODEC_TYPE_VIDEO){ 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