Commit e3a28ea5 authored by Måns Rullgård's avatar Måns Rullgård

avfft: remove useless parens

Originally committed as revision 24229 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 943ebf2c
......@@ -120,7 +120,7 @@ DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse)
{
DCTContext *s = av_malloc(sizeof(*s));
if (s && (ff_dct_init(s, nbits, inverse)))
if (s && ff_dct_init(s, nbits, inverse))
av_freep(&s);
return s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment