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
03290ffb
Commit
03290ffb
authored
Dec 03, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegts: check that codec is not open in mpegts_find_stream_type
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8897b5aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
mpegts.c
libavformat/mpegts.c
+5
-0
No files found.
libavformat/mpegts.c
View file @
03290ffb
...
...
@@ -598,6 +598,11 @@ static const StreamType DESC_types[] = {
static
void
mpegts_find_stream_type
(
AVStream
*
st
,
uint32_t
stream_type
,
const
StreamType
*
types
)
{
if
(
avcodec_is_open
(
st
->
codec
))
{
av_log
(
NULL
,
AV_LOG_DEBUG
,
"cannot set stream info, codec is open
\n
"
);
return
;
}
for
(;
types
->
stream_type
;
types
++
)
{
if
(
stream_type
==
types
->
stream_type
)
{
st
->
codec
->
codec_type
=
types
->
codec_type
;
...
...
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