mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:

committed by
Kostya Shishkov

parent
c8c0ac6b26
commit
43382b5f13
@ -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 },
|
||||
};
|
||||
|
Reference in New Issue
Block a user