Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
d9fef740
Commit
d9fef740
authored
Apr 11, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dnxhdenc: use av_malloc_array()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
1de8a4f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dnxhdenc.c
libavcodec/dnxhdenc.c
+1
-1
No files found.
libavcodec/dnxhdenc.c
View file @
d9fef740
...
@@ -879,7 +879,7 @@ static void radix_sort_pass(RCCMPEntry *dst, const RCCMPEntry *data, int size, i
...
@@ -879,7 +879,7 @@ static void radix_sort_pass(RCCMPEntry *dst, const RCCMPEntry *data, int size, i
static
void
radix_sort
(
RCCMPEntry
*
data
,
int
size
)
static
void
radix_sort
(
RCCMPEntry
*
data
,
int
size
)
{
{
int
buckets
[
RADIX_PASSES
][
NBUCKETS
];
int
buckets
[
RADIX_PASSES
][
NBUCKETS
];
RCCMPEntry
*
tmp
=
av_malloc
(
sizeof
(
*
tmp
)
*
size
);
RCCMPEntry
*
tmp
=
av_malloc
_array
(
size
,
sizeof
(
*
tmp
)
);
radix_count
(
data
,
size
,
buckets
);
radix_count
(
data
,
size
,
buckets
);
radix_sort_pass
(
tmp
,
data
,
size
,
buckets
[
0
],
0
);
radix_sort_pass
(
tmp
,
data
,
size
,
buckets
[
0
],
0
);
radix_sort_pass
(
data
,
tmp
,
size
,
buckets
[
1
],
1
);
radix_sort_pass
(
data
,
tmp
,
size
,
buckets
[
1
],
1
);
...
...
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