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
f3c51215
Commit
f3c51215
authored
Jun 06, 2013
by
Atli Thorbjornsson
Committed by
Michael Niedermayer
Jun 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flvdec: Fix mistakenly discarding metadata at dts==0
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9c9d2e9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
flvdec.c
libavformat/flvdec.c
+7
-7
No files found.
libavformat/flvdec.c
View file @
f3c51215
...
...
@@ -653,7 +653,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
FLVContext
*
flv
=
s
->
priv_data
;
int
ret
,
i
,
type
,
size
,
flags
;
int
stream_type
=-
1
;
int64_t
next
,
pos
;
int64_t
next
,
pos
,
meta_pos
;
int64_t
dts
,
pts
=
AV_NOPTS_VALUE
;
int
av_uninit
(
channels
);
int
av_uninit
(
sample_rate
);
...
...
@@ -703,13 +703,13 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
if
((
flags
&
FLV_VIDEO_FRAMETYPE_MASK
)
==
FLV_FRAME_VIDEO_INFO_CMD
)
goto
skip
;
}
else
if
(
type
==
FLV_TAG_TYPE_META
)
{
stream_type
=
FLV_STREAM_TYPE_DATA
;
if
(
size
>
13
+
1
+
4
&&
dts
==
0
)
{
// Header-type metadata stuff
flv_read_metabody
(
s
,
next
);
goto
skip
;
}
else
if
(
dts
!=
0
)
{
// Script-data "special" metadata frames - don't skip
stream_type
=
FLV_STREAM_TYPE_DATA
;
}
else
{
goto
skip
;
meta_pos
=
avio_tell
(
s
->
pb
);
if
(
flv_read_metabody
(
s
,
next
)
==
0
){
goto
skip
;
}
avio_seek
(
s
->
pb
,
meta_pos
,
SEEK_SET
);
}
}
else
{
av_log
(
s
,
AV_LOG_DEBUG
,
"skipping flv packet: type %d, size %d, flags %d
\n
"
,
type
,
size
,
flags
);
...
...
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