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
This commit is contained in:
Anton Khirnov
2010-02-24 06:27:12 +00:00
committed by Kostya Shishkov
parent c8c0ac6b26
commit 43382b5f13
4 changed files with 21 additions and 10 deletions

View File

@ -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 },
};