Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d9823692
Commit
d9823692
authored
Jan 07, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use av_malloc instead of malloc
Originally committed as revision 1412 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ea0f841a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mdct.c
libavcodec/mdct.c
+2
-2
No files found.
libavcodec/mdct.c
View file @
d9823692
...
@@ -31,10 +31,10 @@ int ff_mdct_init(MDCTContext *s, int nbits, int inverse)
...
@@ -31,10 +31,10 @@ int ff_mdct_init(MDCTContext *s, int nbits, int inverse)
s
->
nbits
=
nbits
;
s
->
nbits
=
nbits
;
s
->
n
=
n
;
s
->
n
=
n
;
n4
=
n
>>
2
;
n4
=
n
>>
2
;
s
->
tcos
=
malloc
(
n4
*
sizeof
(
FFTSample
));
s
->
tcos
=
av_
malloc
(
n4
*
sizeof
(
FFTSample
));
if
(
!
s
->
tcos
)
if
(
!
s
->
tcos
)
goto
fail
;
goto
fail
;
s
->
tsin
=
malloc
(
n4
*
sizeof
(
FFTSample
));
s
->
tsin
=
av_
malloc
(
n4
*
sizeof
(
FFTSample
));
if
(
!
s
->
tsin
)
if
(
!
s
->
tsin
)
goto
fail
;
goto
fail
;
...
...
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