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
655254f0
Commit
655254f0
authored
Jan 14, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify
Originally committed as revision 7457 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5b1e5dce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
swf.c
libavformat/swf.c
+3
-5
No files found.
libavformat/swf.c
View file @
655254f0
...
...
@@ -855,17 +855,17 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
return
AVERROR_IO
;
if
(
tag
==
TAG_VIDEOFRAME
)
{
int
ch_id
=
get_le16
(
pb
);
len
-=
2
;
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
st
=
s
->
streams
[
i
];
if
(
st
->
codec
->
codec_type
==
CODEC_TYPE_VIDEO
&&
st
->
id
==
ch_id
)
{
frame
=
get_le16
(
pb
);
av_get_packet
(
pb
,
pkt
,
len
-
4
);
av_get_packet
(
pb
,
pkt
,
len
-
2
);
pkt
->
pts
=
frame
*
swf
->
ms_per_frame
;
pkt
->
stream_index
=
st
->
index
;
return
pkt
->
size
;
}
}
url_fskip
(
pb
,
len
-
2
);
}
else
if
(
tag
==
TAG_STREAMBLOCK
)
{
st
=
s
->
streams
[
swf
->
audio_stream_index
];
if
(
st
->
codec
->
codec_id
==
CODEC_ID_MP3
)
{
...
...
@@ -874,10 +874,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
pkt
->
stream_index
=
st
->
index
;
return
pkt
->
size
;
}
url_fskip
(
pb
,
len
);
}
else
{
url_fskip
(
pb
,
len
);
}
url_fskip
(
pb
,
len
);
}
return
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