Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
e3a28ea5
Commit
e3a28ea5
authored
Jul 13, 2010
by
Måns Rullgård
Browse files
avfft: remove useless parens
Originally committed as revision 24229 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
943ebf2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libavcodec/avfft.c
libavcodec/avfft.c
+1
-1
No files found.
libavcodec/avfft.c
View file @
e3a28ea5
...
...
@@ -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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment