Commit 6f03c83a authored by benoit's avatar benoit

asf: add more entries to metadata conv table.

Patch from Anton Khirnov wyskas gmail com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22049 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bf7fef77
...@@ -128,11 +128,23 @@ const ff_asf_guid ff_asf_digital_signature = { ...@@ -128,11 +128,23 @@ const ff_asf_guid ff_asf_digital_signature = {
0xfc, 0xb3, 0x11, 0x22, 0x23, 0xbd, 0xd2, 0x11, 0xb4, 0xb7, 0x00, 0xa0, 0xc9, 0x55, 0xfc, 0x6e 0xfc, 0xb3, 0x11, 0x22, 0x23, 0xbd, 0xd2, 0x11, 0xb4, 0xb7, 0x00, 0xa0, 0xc9, 0x55, 0xfc, 0x6e
}; };
/* List of official tags at http://msdn.microsoft.com/en-us/library/dd743066(VS.85).aspx */
const AVMetadataConv ff_asf_metadata_conv[] = { const AVMetadataConv ff_asf_metadata_conv[] = {
{ "WM/AlbumArtist", "album_artist"}, { "WM/AlbumArtist", "album_artist"},
{ "WM/AlbumTitle" , "album" }, { "WM/AlbumTitle" , "album" },
{ "Author" , "artist" }, { "Author" , "artist" },
{ "Description" , "comment" },
{ "WM/Composer" , "composer" },
{ "WM/EncodedBy" , "encoded_by" },
{ "WM/EncodingSettings", "encoder" },
{ "WM/Genre" , "genre" },
{ "WM/Language" , "language" },
{ "WM/OriginalFilename", "filename" },
{ "WM/PartOfSet" , "disc" },
{ "WM/Publisher" , "publisher" },
{ "WM/Tool" , "encoder" },
{ "WM/TrackNumber", "track" }, { "WM/TrackNumber", "track" },
{ "WM/Track" , "track" },
// { "Year" , "date" }, TODO: conversion year<->date // { "Year" , "date" }, TODO: conversion year<->date
{ 0 } { 0 }
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment