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
17ece3f7
Commit
17ece3f7
authored
Feb 16, 2020
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/dashenc: always set coding_dependency to 1 if a parser isn't used
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
29be3de9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
dashenc.c
libavformat/dashenc.c
+4
-2
No files found.
libavformat/dashenc.c
View file @
17ece3f7
...
@@ -1518,8 +1518,7 @@ static int dash_init(AVFormatContext *s)
...
@@ -1518,8 +1518,7 @@ static int dash_init(AVFormatContext *s)
return
ret
;
return
ret
;
// We only want to parse frame headers
// We only want to parse frame headers
os
->
parser
->
flags
|=
PARSER_FLAG_COMPLETE_FRAMES
;
os
->
parser
->
flags
|=
PARSER_FLAG_COMPLETE_FRAMES
;
}
else
}
os
->
coding_dependency
=
1
;
if
(
c
->
single_file
)
{
if
(
c
->
single_file
)
{
if
(
os
->
single_file_name
)
if
(
os
->
single_file_name
)
...
@@ -1573,6 +1572,9 @@ static int dash_init(AVFormatContext *s)
...
@@ -1573,6 +1572,9 @@ static int dash_init(AVFormatContext *s)
av_log
(
s
,
AV_LOG_WARNING
,
"frag_type set to P-Frame reordering, but no parser found for stream %d
\n
"
,
i
);
av_log
(
s
,
AV_LOG_WARNING
,
"frag_type set to P-Frame reordering, but no parser found for stream %d
\n
"
,
i
);
os
->
frag_type
=
c
->
streaming
?
FRAG_TYPE_EVERY_FRAME
:
FRAG_TYPE_NONE
;
os
->
frag_type
=
c
->
streaming
?
FRAG_TYPE_EVERY_FRAME
:
FRAG_TYPE_NONE
;
}
}
if
(
os
->
frag_type
!=
FRAG_TYPE_PFRAMES
&&
as
->
trick_idx
<
0
)
// Set this now if a parser isn't used
os
->
coding_dependency
=
1
;
if
(
os
->
segment_type
==
SEGMENT_TYPE_MP4
)
{
if
(
os
->
segment_type
==
SEGMENT_TYPE_MP4
)
{
if
(
c
->
streaming
)
if
(
c
->
streaming
)
...
...
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