[FFmpeg-soc] [soc]: r2113 - libavfilter/graphparser.c

vitor subversion at mplayerhq.hu
Thu Apr 10 18:46:33 CEST 2008


Author: vitor
Date: Thu Apr 10 18:46:33 2008
New Revision: 2113

Log:
Merge declaration and initialization

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Thu Apr 10 18:46:33 2008
@@ -197,8 +197,7 @@ typedef struct AVFilterInOut {
 static void free_inout(AVFilterInOut *head)
 {
     while (head) {
-        AVFilterInOut *next;
-        next = head->next;
+        AVFilterInOut *next = head->next;
         av_free(head);
         head = next;
     }



More information about the FFmpeg-soc mailing list