diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-30 15:32:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-30 16:44:05 +0200 |
commit | a3ec1d6abddb98f7c3d4f280d71e008e88a2d385 (patch) | |
tree | 75ab09a9b88086eef4d7d9d6aac9a496edac7331 /libavformat/movenc.c | |
parent | 08b7d19deff96a0adae93ba7d585176036442f31 (diff) | |
download | ffmpeg-a3ec1d6abddb98f7c3d4f280d71e008e88a2d385.tar.gz |
avformat/movenc: Add loction/xyz support to allow copying data between mov files
Fixes Ticket4337
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 5491082f1f..cfd53f1ec3 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -3080,6 +3080,7 @@ static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov, mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright", 0); mov_write_string_metadata(s, pb_buf, "\251mak", "make", 0); mov_write_string_metadata(s, pb_buf, "\251mod", "model", 0); + mov_write_string_metadata(s, pb_buf, "\251xyz", "location", 0); mov_write_raw_metadata_tag(s, pb_buf, "XMP_", "xmp"); } else { /* iTunes meta data */ |