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
dad12ce4
Commit
dad12ce4
authored
Oct 11, 2014
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Print a warning for an unhandled case of nonzero start dts with empty_moov
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
dbb472cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
movenc.c
libavformat/movenc.c
+7
-1
No files found.
libavformat/movenc.c
View file @
dad12ce4
...
@@ -3115,8 +3115,14 @@ int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -3115,8 +3115,14 @@ int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
* of this packet to be what the previous packets duration implies. */
* of this packet to be what the previous packets duration implies. */
trk
->
cluster
[
trk
->
entry
].
dts
=
trk
->
start_dts
+
trk
->
track_duration
;
trk
->
cluster
[
trk
->
entry
].
dts
=
trk
->
start_dts
+
trk
->
track_duration
;
}
}
if
(
trk
->
start_dts
==
AV_NOPTS_VALUE
)
if
(
trk
->
start_dts
==
AV_NOPTS_VALUE
)
{
trk
->
start_dts
=
pkt
->
dts
;
trk
->
start_dts
=
pkt
->
dts
;
if
(
pkt
->
dts
&&
mov
->
flags
&
FF_MOV_FLAG_EMPTY_MOOV
)
av_log
(
s
,
AV_LOG_WARNING
,
"Track %d starts with a nonzero dts %"
PRId64
". This "
"currently isn't handled correctly in combination with "
"empty_moov.
\n
"
,
pkt
->
stream_index
,
pkt
->
dts
);
}
trk
->
track_duration
=
pkt
->
dts
-
trk
->
start_dts
+
pkt
->
duration
;
trk
->
track_duration
=
pkt
->
dts
-
trk
->
start_dts
+
pkt
->
duration
;
if
(
pkt
->
pts
==
AV_NOPTS_VALUE
)
{
if
(
pkt
->
pts
==
AV_NOPTS_VALUE
)
{
...
...
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