[FFmpeg-cvslog] r14013 - trunk/libavformat/movenc.c

bcoudurier subversion
Fri Jun 27 23:29:12 CEST 2008


Author: bcoudurier
Date: Fri Jun 27 23:29:11 2008
New Revision: 14013

Log:
clarify error message about codec tag

Modified:
   trunk/libavformat/movenc.c

Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c	(original)
+++ trunk/libavformat/movenc.c	Fri Jun 27 23:29:11 2008
@@ -1531,7 +1531,8 @@ static int mov_write_header(AVFormatCont
         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){




More information about the ffmpeg-cvslog mailing list