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
bed4fc54
Commit
bed4fc54
authored
Sep 08, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
write copyright metadata tag
Originally committed as revision 15276 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9345ae6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
movenc.c
libavformat/movenc.c
+3
-0
No files found.
libavformat/movenc.c
View file @
bed4fc54
...
...
@@ -1225,6 +1225,7 @@ static int mov_write_ilst_tag(ByteIOContext *pb, MOVContext *mov,
mov_write_string_tag
(
pb
,
"
\251
too"
,
LIBAVFORMAT_IDENT
,
1
);
mov_write_string_tag
(
pb
,
"
\251
cmt"
,
s
->
comment
,
1
);
mov_write_string_tag
(
pb
,
"
\251
gen"
,
s
->
genre
,
1
);
mov_write_string_tag
(
pb
,
"
\251
cpy"
,
s
->
copyright
,
1
);
mov_write_trkn_tag
(
pb
,
mov
,
s
);
return
updateSize
(
pb
,
pos
);
}
...
...
@@ -1321,6 +1322,7 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext *mov,
mov_write_3gp_udta_tag
(
pb
,
s
,
"gnre"
,
s
->
genre
);
mov_write_3gp_udta_tag
(
pb
,
s
,
"dscp"
,
s
->
comment
);
mov_write_3gp_udta_tag
(
pb
,
s
,
"albm"
,
s
->
album
);
mov_write_3gp_udta_tag
(
pb
,
s
,
"cprt"
,
s
->
copyright
);
mov_write_3gp_udta_tag
(
pb
,
s
,
"yrrc"
,
"nil"
);
}
else
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
);
...
...
@@ -1330,6 +1332,7 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext *mov,
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
);
mov_write_string_tag
(
pb
,
"
\251
cpy"
,
s
->
copyright
,
0
);
}
else
{
/* iTunes meta data */
mov_write_meta_tag
(
pb
,
mov
,
s
);
...
...
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