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
95fd52c1
Commit
95fd52c1
authored
Nov 26, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mxfdec: set extradata size
The line setting it was mistakenly removed in
ecf442a5
parent
3c8507a8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
mxfdec.c
libavformat/mxfdec.c
+3
-1
No files found.
libavformat/mxfdec.c
View file @
95fd52c1
...
...
@@ -1556,8 +1556,10 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
}
if
(
descriptor
->
extradata
)
{
st
->
codec
->
extradata
=
av_mallocz
(
descriptor
->
extradata_size
+
FF_INPUT_BUFFER_PADDING_SIZE
);
if
(
st
->
codec
->
extradata
)
if
(
st
->
codec
->
extradata
)
{
memcpy
(
st
->
codec
->
extradata
,
descriptor
->
extradata
,
descriptor
->
extradata_size
);
st
->
codec
->
extradata_size
=
descriptor
->
extradata_size
;
}
}
else
if
(
st
->
codec
->
codec_id
==
AV_CODEC_ID_H264
)
{
ret
=
ff_generate_avci_extradata
(
st
);
if
(
ret
<
0
)
...
...
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