comparison oggparsetheora.c @ 3767:11169564fbdc libavformat

Make ogg_codec_t descriptions const
author reimar
date Sun, 24 Aug 2008 17:09:15 +0000
parents 27537074f2a9
children 6c71b789c69e
comparison
equal deleted inserted replaced
3766:f062deeedb8d 3767:11169564fbdc
128 os->pflags |= PKT_FLAG_KEY; 128 os->pflags |= PKT_FLAG_KEY;
129 129
130 return iframe + pframe; 130 return iframe + pframe;
131 } 131 }
132 132
133 ogg_codec_t theora_codec = { 133 const ogg_codec_t theora_codec = {
134 .magic = "\200theora", 134 .magic = "\200theora",
135 .magicsize = 7, 135 .magicsize = 7,
136 .header = theora_header, 136 .header = theora_header,
137 .gptopts = theora_gptopts 137 .gptopts = theora_gptopts
138 }; 138 };