diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-02-24 06:27:12 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-02-24 06:27:12 +0000 |
commit | 43382b5f13d18c75ec284a48bd7352766810ed90 (patch) | |
tree | f52d1d38f35f640e56b17b149885555639c4f394 /libavformat/nut.c | |
parent | c8c0ac6b2618e92e75b37fce874a5378535e5358 (diff) | |
download | ffmpeg-43382b5f13d18c75ec284a48bd7352766810ed90.tar.gz |
Introduce metadata conversion table for NUT muxer and demuxer.
Patch by Anton Khirnov (wyskas, do no evil mail)
Thread "[PATCH] nut metadata conversion table"
Originally committed as revision 22015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 6fdc298f8e..be6bcf6a42 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -79,3 +79,16 @@ const Dispositions ff_nut_dispositions[] = { {"" , 0} }; +const AVMetadataConv ff_nut_metadata_conv[] = { + { "Author", "artist" }, + { "X-CreationTime", "date" }, + { "CreationTime", "date" }, + { "SourceFilename", "filename" }, + { "X-Language", "language" }, + { "X-Disposition", "disposition" }, + { "X-Replaces", "replaces" }, + { "X-Depends", "depends" }, + { "X-Uses", "uses" }, + { "X-UsesFont", "usesfont" }, + { 0 }, +}; |