[FFmpeg-soc] [soc]: r1893 - libavfilter/avfilter.c
vitor
subversion at mplayerhq.hu
Mon Feb 11 18:16:05 CET 2008
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,
More information about the FFmpeg-soc
mailing list