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
53e122dd
Commit
53e122dd
authored
Oct 09, 2012
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swfenc: error out for more than 1 audio or video stream
Prevents CID602000.
parent
0fb3b24a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
swfenc.c
libavformat/swfenc.c
+8
-0
No files found.
libavformat/swfenc.c
View file @
53e122dd
...
...
@@ -186,6 +186,10 @@ static int swf_write_header(AVFormatContext *s)
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
AVCodecContext
*
enc
=
s
->
streams
[
i
]
->
codec
;
if
(
enc
->
codec_type
==
AVMEDIA_TYPE_AUDIO
)
{
if
(
swf
->
audio_enc
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"SWF muxer only supports 1 audio stream
\n
"
);
return
AVERROR_INVALIDDATA
;
}
if
(
enc
->
codec_id
==
AV_CODEC_ID_MP3
)
{
swf
->
audio_enc
=
enc
;
swf
->
audio_fifo
=
av_fifo_alloc
(
AUDIO_FIFO_SIZE
);
...
...
@@ -196,6 +200,10 @@ static int swf_write_header(AVFormatContext *s)
return
-
1
;
}
}
else
{
if
(
swf
->
video_enc
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"SWF muxer only supports 1 video stream
\n
"
);
return
AVERROR_INVALIDDATA
;
}
if
(
enc
->
codec_id
==
AV_CODEC_ID_VP6F
||
enc
->
codec_id
==
AV_CODEC_ID_FLV1
||
enc
->
codec_id
==
AV_CODEC_ID_MJPEG
)
{
...
...
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