diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-13 18:01:50 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-13 18:01:50 +0000 |
commit | e3a28ea5a9268f70ccc0b3464b2acb1c3ee38e6f (patch) | |
tree | 95949ce26e073e83747ce079a899281fa4bbe516 /libavcodec/avfft.c | |
parent | 943ebf2c4e2920371b9b60afb69470af20fe2d0f (diff) | |
download | ffmpeg-e3a28ea5a9268f70ccc0b3464b2acb1c3ee38e6f.tar.gz |
avfft: remove useless parens
Originally committed as revision 24229 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avfft.c')
-rw-r--r-- | libavcodec/avfft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c index a278aa94ed..7d5d08390f 100644 --- a/libavcodec/avfft.c +++ b/libavcodec/avfft.c @@ -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; |