mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
avfft: remove useless parens
Originally committed as revision 24229 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
943ebf2c4e
commit
e3a28ea5a9
@ -120,7 +120,7 @@ DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse)
|
|||||||
{
|
{
|
||||||
DCTContext *s = av_malloc(sizeof(*s));
|
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);
|
av_freep(&s);
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user