Author: vitor
Date: Mon Feb 11 18:16:05 2008
New Revision: 1893

Log:
Remove useless ()

Modified:
   libavfilter/avfilter.c

Modified: libavfilter/avfilter.c
==============================================================================
--- libavfilter/avfilter.c      (original)
+++ libavfilter/avfilter.c      Mon Feb 11 18:16:05 2008
@@ -67,7 +67,7 @@ void avfilter_insert_pad(unsigned idx, u
     (*count) ++;
     for(i = idx+1; i < *count; i ++)
         if(*links[i])
-            (*(unsigned *)((uint8_t *)(*links[i]) + padidx_off)) ++;
+            (*(unsigned *)((uint8_t *) *links[i] + padidx_off)) ++;
 }
 
 int avfilter_link(AVFilterContext *src, unsigned srcpad,
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to