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
8b524ab0
Commit
8b524ab0
authored
Sep 09, 2013
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Add a warning message if conflicting options have been specified
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
a6a4596e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
movenc.c
libavformat/movenc.c
+4
-1
No files found.
libavformat/movenc.c
View file @
8b524ab0
...
...
@@ -3141,8 +3141,11 @@ static int mov_write_header(AVFormatContext *s)
/* faststart: moov at the beginning of the file, if supported */
if
(
mov
->
flags
&
FF_MOV_FLAG_FASTSTART
)
{
if
((
mov
->
flags
&
FF_MOV_FLAG_FRAGMENT
)
||
(
s
->
flags
&
AVFMT_FLAG_CUSTOM_IO
))
(
s
->
flags
&
AVFMT_FLAG_CUSTOM_IO
))
{
av_log
(
s
,
AV_LOG_WARNING
,
"The faststart flag is incompatible "
"with fragmentation and custom IO, disabling faststart
\n
"
);
mov
->
flags
&=
~
FF_MOV_FLAG_FASTSTART
;
}
}
/* Non-seekable output is ok if using fragmentation. If ism_lookahead
...
...
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