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
927509e1
Commit
927509e1
authored
Jun 11, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indent
Originally committed as revision 13747 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c6e2c6c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
movenc.c
libavformat/movenc.c
+12
-12
No files found.
libavformat/movenc.c
View file @
927509e1
...
...
@@ -1263,18 +1263,18 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext *mov,
mov_write_3gp_udta_tag
(
pb
,
s
,
"albm"
,
s
->
album
);
mov_write_3gp_udta_tag
(
pb
,
s
,
"yrrc"
,
"nil"
);
}
else
{
/* iTunes meta data */
mov_write_meta_tag
(
pb
,
mov
,
s
);
if
(
mov
->
mode
==
MODE_MOV
){
// the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
mov_write_string_tag
(
pb
,
"
\251
nam"
,
s
->
title
,
0
);
mov_write_string_tag
(
pb
,
"
\251
aut"
,
s
->
author
,
0
);
mov_write_string_tag
(
pb
,
"
\251
alb"
,
s
->
album
,
0
);
mov_write_day_tag
(
pb
,
s
->
year
,
0
);
mov_write_string_tag
(
pb
,
"
\251
enc"
,
LIBAVFORMAT_IDENT
,
0
);
mov_write_string_tag
(
pb
,
"
\251
des"
,
s
->
comment
,
0
);
mov_write_string_tag
(
pb
,
"
\251
gen"
,
s
->
genre
,
0
);
}
/* iTunes meta data */
mov_write_meta_tag
(
pb
,
mov
,
s
);
if
(
mov
->
mode
==
MODE_MOV
){
// the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
mov_write_string_tag
(
pb
,
"
\251
nam"
,
s
->
title
,
0
);
mov_write_string_tag
(
pb
,
"
\251
aut"
,
s
->
author
,
0
);
mov_write_string_tag
(
pb
,
"
\251
alb"
,
s
->
album
,
0
);
mov_write_day_tag
(
pb
,
s
->
year
,
0
);
mov_write_string_tag
(
pb
,
"
\251
enc"
,
LIBAVFORMAT_IDENT
,
0
);
mov_write_string_tag
(
pb
,
"
\251
des"
,
s
->
comment
,
0
);
mov_write_string_tag
(
pb
,
"
\251
gen"
,
s
->
genre
,
0
);
}
}
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