Browse Source

avfft: remove useless parens

Originally committed as revision 24229 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
e3a28ea5a9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/avfft.c

+ 1
- 1
libavcodec/avfft.c View File

@@ -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;


Loading…
Cancel
Save