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
6ba9ed95
Commit
6ba9ed95
authored
Jun 14, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
invert mode_mov condition
Originally committed as revision 13773 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d3e47832
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
movenc.c
libavformat/movenc.c
+4
-3
No files found.
libavformat/movenc.c
View file @
6ba9ed95
...
...
@@ -1407,13 +1407,14 @@ static int mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s)
put_be32
(
pb
,
0x200
);
if
(
mov
->
mode
!=
MODE_MOV
){
if
(
mov
->
mode
==
MODE_MOV
)
put_tag
(
pb
,
"qt "
);
else
{
put_tag
(
pb
,
"isom"
);
put_tag
(
pb
,
"iso2"
);
if
(
has_h264
)
put_tag
(
pb
,
"avc1"
);
}
else
put_tag
(
pb
,
"qt "
);
}
if
(
mov
->
mode
==
MODE_3GP
)
put_tag
(
pb
,
has_h264
?
"3gp6"
:
"3gp4"
);
...
...
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