OSDN Git Service

Make the image2 demuxer log more verbose
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 26 Jan 2011 22:03:38 +0000 (23:03 +0100)
committerJanne Grunau <janne-ffmpeg@jannau.net>
Fri, 28 Jan 2011 17:04:33 +0000 (18:04 +0100)
Add an error message in case the user requests to write more than one file
and the path does not contain a "%d" or "%0Nd" pattern.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
libavformat/img2.c

index 4cf409e..9583eea 100644 (file)
@@ -347,7 +347,9 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
     if (!img->is_pipe) {
         if (av_get_frame_filename(filename, sizeof(filename),
                                   img->path, img->img_number) < 0 && img->img_number>1) {
-            av_log(s, AV_LOG_ERROR, "Could not get frame filename from pattern\n");
+            av_log(s, AV_LOG_ERROR,
+                   "Could not get frame filename number %d from pattern '%s'\n",
+                   img->img_number, img->path);
             return AVERROR(EIO);
         }
         for(i=0; i<3; i++){