changeset 3526:ae0885c44048 libavformat

clarify error message about codec tag
author bcoudurier
date Fri, 27 Jun 2008 21:29:11 +0000
parents 3fb9221edfe9
children 32840cdd83b3
files movenc.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/movenc.c	Fri Jun 27 19:00:04 2008 +0000
+++ b/movenc.c	Fri Jun 27 21:29:11 2008 +0000
@@ -1531,7 +1531,8 @@
         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){