2008/7/30 Diego Biurrun <[EMAIL PROTECTED]>: > On Wed, Jul 30, 2008 at 05:37:41PM +0200, superdump wrote: >> >> Log: >> Add missing error check >> >> --- aac/aac.c (original) >> +++ aac/aac.c Wed Jul 30 17:37:41 2008 >> @@ -2314,7 +2314,8 @@ static int aac_decode_frame(AVCodecConte >> >> - output_samples(avccontext, data, data_size); >> + if((err = output_samples(avccontext, data, data_size))) > > redundant ()
I'm almost certain GCC will spew a warning about the assignment if I don't have these parentheses, and I know how you dislike GCC warnings. :) Rob _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
