comparison matroska.h @ 2905:616fb87724b5 libavformat

Make ff_mkv_codec_tags lie entirely in .rodata section. From: Diego 'Flameeyes' Petten < flameeyes _at_ gmail _dot_ com >
author aurel
date Mon, 07 Jan 2008 00:03:19 +0000
parents 888d5439eac6
children 910ac68ab3b5
comparison
equal deleted inserted replaced
2904:72e3c40f0fb2 2905:616fb87724b5
179 /* 179 /*
180 * Matroska Codec IDs. Strings. 180 * Matroska Codec IDs. Strings.
181 */ 181 */
182 182
183 typedef struct CodecTags{ 183 typedef struct CodecTags{
184 const char *str; 184 char str[16];
185 enum CodecID id; 185 enum CodecID id;
186 }CodecTags; 186 }CodecTags;
187 187
188 #define MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC "V_MS/VFW/FOURCC" 188 #define MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC "V_MS/VFW/FOURCC"
189 #define MATROSKA_CODEC_ID_AUDIO_ACM "A_MS/ACM" 189 #define MATROSKA_CODEC_ID_AUDIO_ACM "A_MS/ACM"