[FFmpeg-cvslog] r12607 - trunk/libavformat/mov.c

bcoudurier subversion
Thu Mar 27 14:30:31 CET 2008


Author: bcoudurier
Date: Thu Mar 27 14:30:31 2008
New Revision: 12607

Log:
print essence path in error message

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Thu Mar 27 14:30:31 2008
@@ -1259,8 +1259,8 @@ static int mov_read_trak(MOVContext *c, 
 
     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
         if (url_fopen(&sc->pb, sc->drefs[sc->dref_id-1].path, URL_RDONLY) < 0)
-            av_log(c->fc, AV_LOG_ERROR, "stream %d, error opening external essence: %s\n",
-                   st->index, strerror(errno));
+            av_log(c->fc, AV_LOG_ERROR, "stream %d, error opening file %s: %s\n",
+                   st->index, sc->drefs[sc->dref_id-1].path, strerror(errno));
     } else
         sc->pb = c->fc->pb;
 




More information about the ffmpeg-cvslog mailing list