This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
943ebf2c4e
commit
e3a28ea5a9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save