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
d3e47832
Commit
d3e47832
authored
Jun 14, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify
Originally committed as revision 13772 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3473ca9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
movenc.c
libavformat/movenc.c
+2
-3
No files found.
libavformat/movenc.c
View file @
d3e47832
...
...
@@ -1412,7 +1412,8 @@ static int mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s)
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"
);
...
...
@@ -1422,8 +1423,6 @@ static int mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s)
put_tag
(
pb
,
"MSNV"
);
else
if
(
mov
->
mode
==
MODE_MP4
)
put_tag
(
pb
,
"mp41"
);
else
if
(
mov
->
mode
==
MODE_MOV
)
put_tag
(
pb
,
"qt "
);
return
updateSize
(
pb
,
pos
);
}
...
...
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