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
af0fafcb
Commit
af0fafcb
authored
Dec 19, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: decode_update_thread_context() copy parameter sets before using them
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e33811bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
h264.c
libavcodec/h264.c
+7
-0
No files found.
libavcodec/h264.c
View file @
af0fafcb
...
@@ -1200,6 +1200,13 @@ static int decode_update_thread_context(AVCodecContext *dst,
...
@@ -1200,6 +1200,13 @@ static int decode_update_thread_context(AVCodecContext *dst,
s
->
height
=
s1
->
height
;
s
->
height
=
s1
->
height
;
s
->
mb_height
=
s1
->
mb_height
;
s
->
mb_height
=
s1
->
mb_height
;
h
->
b_stride
=
h1
->
b_stride
;
h
->
b_stride
=
h1
->
b_stride
;
// SPS/PPS
copy_parameter_set
((
void
**
)
h
->
sps_buffers
,
(
void
**
)
h1
->
sps_buffers
,
MAX_SPS_COUNT
,
sizeof
(
SPS
));
h
->
sps
=
h1
->
sps
;
copy_parameter_set
((
void
**
)
h
->
pps_buffers
,
(
void
**
)
h1
->
pps_buffers
,
MAX_PPS_COUNT
,
sizeof
(
PPS
));
h
->
pps
=
h1
->
pps
;
if
((
err
=
h264_slice_header_init
(
h
,
1
))
<
0
)
{
if
((
err
=
h264_slice_header_init
(
h
,
1
))
<
0
)
{
av_log
(
h
->
s
.
avctx
,
AV_LOG_ERROR
,
"h264_slice_header_init() failed"
);
av_log
(
h
->
s
.
avctx
,
AV_LOG_ERROR
,
"h264_slice_header_init() failed"
);
...
...
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