Mercurial > libavformat.hg
changeset 3909:214c1c37be6f libavformat
write copyright metadata tag
author | bcoudurier |
---|---|
date | Mon, 08 Sep 2008 19:11:53 +0000 |
parents | 1d3d17de20ba |
children | 45dfe99dced8 |
files | movenc.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/movenc.c Mon Sep 08 14:24:59 2008 +0000 +++ b/movenc.c Mon Sep 08 19:11:53 2008 +0000 @@ -1225,6 +1225,7 @@ mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 1); mov_write_string_tag(pb, "\251cmt", s->comment , 1); mov_write_string_tag(pb, "\251gen", s->genre , 1); + mov_write_string_tag(pb, "\251cpy", s->copyright , 1); mov_write_trkn_tag(pb, mov, s); return updateSize(pb, pos); } @@ -1321,6 +1322,7 @@ 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, "\251nam", s->title , 0); @@ -1330,6 +1332,7 @@ mov_write_string_tag(pb, "\251enc", LIBAVFORMAT_IDENT, 0); mov_write_string_tag(pb, "\251des", s->comment , 0); mov_write_string_tag(pb, "\251gen", s->genre , 0); + mov_write_string_tag(pb, "\251cpy", s->copyright , 0); } else { /* iTunes meta data */ mov_write_meta_tag(pb, mov, s);