[SCM] libav/experimental: These error messages should print the filter name, not the instance name Commited in SoC by Vitor Sessak on 2008-05-24 13:08:23

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:21:33 UTC 2013


The following commit has been merged in the experimental branch:
commit 089d3714502f8e1ee25e66f3ac3d2e421f6965a1
Author: Vitor Sessak <vitor1001 at gmail.com>
Date:   Sat May 24 20:42:00 2008 +0000

    These error messages should print the filter name, not the instance name
    Commited in SoC by Vitor Sessak on 2008-05-24 13:08:23
    
    Originally committed as revision 13349 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index ad1c5fa..624b098 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -211,7 +211,7 @@ static int link_filter_inouts(AVFilterContext *filter,
         if(!p) {
             av_log(log_ctx, AV_LOG_ERROR,
                    "Not enough inputs specified for the \"%s\" filter.\n",
-                   filter->name);
+                   filter->filter->name);
             return -1;
         }
 
@@ -231,7 +231,7 @@ static int link_filter_inouts(AVFilterContext *filter,
     if(*currInputs) {
         av_log(log_ctx, AV_LOG_ERROR,
                "Too many inputs specified for the \"%s\" filter.\n",
-               filter->name);
+               filter->filter->name);
         return -1;
     }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list