comparison asf.c @ 4618:5b9eddbee9c4 libavformat

Add some basic metadata conversion tables for matroska and asf. Add missing const qualifiers for metadata_conv in AV{In|Out}putFormat.
author aurel
date Sun, 01 Mar 2009 00:12:08 +0000
parents 0d8b36d98ce2
children 86dd0cab30d3
comparison
equal deleted inserted replaced
4617:f04bc8b70940 4618:5b9eddbee9c4
109 /* I am not a number !!! This GUID is the one found on the PC used to 109 /* I am not a number !!! This GUID is the one found on the PC used to
110 generate the stream */ 110 generate the stream */
111 const GUID ff_asf_my_guid = { 111 const GUID ff_asf_my_guid = {
112 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 112 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
113 }; 113 };
114
115
116 const AVMetadataConv ff_asf_metadata_conv[] = {
117 { "AlbumArtist", "artist" },
118 { "AlbumTitle" , "album" },
119 { "Author" , "author" },
120 { "Genre" , "genre" },
121 { "Copyright" , "copyright" },
122 { "TrackNumber", "track" },
123 { "Year" , "year" },
124 { 0 }
125 };