[FFmpeg-cvslog] r12051 - trunk/libavfilter/avfilter.c
vitor
subversion
Fri Feb 15 22:41:15 CET 2008
Author: vitor
Date: Fri Feb 15 22:41:15 2008
New Revision: 12051
Log:
Remove useless ()
Commited in SoC by Vitor Sessak on 2008-02-11 17:16:05
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c (original)
+++ trunk/libavfilter/avfilter.c Fri Feb 15 22:41:15 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-cvslog
mailing list