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
599e629f
Commit
599e629f
authored
Jan 26, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/huffyuvenc: fix end pointer for stats_out
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a301bb63
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
huffyuvenc.c
libavcodec/huffyuvenc.c
+3
-2
No files found.
libavcodec/huffyuvenc.c
View file @
599e629f
...
...
@@ -217,7 +217,8 @@ static av_cold int encode_init(AVCodecContext *avctx)
ff_huffyuv_common_init
(
avctx
);
avctx
->
extradata
=
av_mallocz
(
3
*
MAX_N
+
4
);
avctx
->
stats_out
=
av_mallocz
(
21
*
MAX_N
*
3
+
4
);
// 21*256*3(%llu ) + 3(\n) + 1(0) = 16132
#define STATS_OUT_SIZE 21*MAX_N*3 + 4
avctx
->
stats_out
=
av_mallocz
(
STATS_OUT_SIZE
);
// 21*256*3(%llu ) + 3(\n) + 1(0) = 16132
if
(
!
avctx
->
extradata
||
!
avctx
->
stats_out
)
{
av_freep
(
&
avctx
->
stats_out
);
return
AVERROR
(
ENOMEM
);
...
...
@@ -938,7 +939,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
if
((
s
->
flags
&
CODEC_FLAG_PASS1
)
&&
(
s
->
picture_number
&
31
)
==
0
)
{
int
j
;
char
*
p
=
avctx
->
stats_out
;
char
*
end
=
p
+
1024
*
30
;
char
*
end
=
p
+
STATS_OUT_SIZE
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
for
(
j
=
0
;
j
<
s
->
vlc_n
;
j
++
)
{
snprintf
(
p
,
end
-
p
,
"%"
PRIu64
" "
,
s
->
stats
[
i
][
j
]);
...
...
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