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
e55a4dd3
Commit
e55a4dd3
authored
Jan 08, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check av_new_stream return value
Originally committed as revision 11463 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ebbe25d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
swf.c
libavformat/swf.c
+6
-0
No files found.
libavformat/swf.c
View file @
e55a4dd3
...
...
@@ -671,6 +671,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
get_byte
(
pb
);
/* Check for FLV1 */
vst
=
av_new_stream
(
s
,
ch_id
);
if
(
!
vst
)
return
-
1
;
vst
->
codec
->
codec_type
=
CODEC_TYPE_VIDEO
;
vst
->
codec
->
codec_id
=
codec_get_id
(
swf_codec_tags
,
get_byte
(
pb
));
av_set_pts_info
(
vst
,
64
,
256
,
swf
->
frame_rate
);
...
...
@@ -683,6 +685,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
v
=
get_byte
(
pb
);
swf
->
samples_per_frame
=
get_le16
(
pb
);
ast
=
av_new_stream
(
s
,
-
1
);
/* -1 to avoid clash with video stream ch_id */
if
(
!
ast
)
return
-
1
;
swf
->
audio_stream_index
=
ast
->
index
;
ast
->
codec
->
channels
=
1
+
(
v
&
1
);
ast
->
codec
->
codec_type
=
CODEC_TYPE_AUDIO
;
...
...
@@ -725,6 +729,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
}
if
(
i
==
s
->
nb_streams
)
{
vst
=
av_new_stream
(
s
,
-
2
);
/* -2 to avoid clash with video stream and audio stream */
if
(
!
vst
)
return
-
1
;
vst
->
codec
->
codec_type
=
CODEC_TYPE_VIDEO
;
vst
->
codec
->
codec_id
=
CODEC_ID_MJPEG
;
av_set_pts_info
(
vst
,
64
,
256
,
swf
->
frame_rate
);
...
...
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