comparison au.c @ 3424:7a0230981402 libavformat

Make long_names in lavf/lavdev optional depending on CONFIG_SMALL. patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me
author diego
date Tue, 03 Jun 2008 16:20:54 +0000
parents 473906f5a3b9
children 31a0f3b99ef7
comparison
equal deleted inserted replaced
3423:613aff547655 3424:7a0230981402
178 } 178 }
179 179
180 #ifdef CONFIG_AU_DEMUXER 180 #ifdef CONFIG_AU_DEMUXER
181 AVInputFormat au_demuxer = { 181 AVInputFormat au_demuxer = {
182 "au", 182 "au",
183 "SUN AU Format", 183 NULL_IF_CONFIG_SMALL("SUN AU format"),
184 0, 184 0,
185 au_probe, 185 au_probe,
186 au_read_header, 186 au_read_header,
187 au_read_packet, 187 au_read_packet,
188 au_read_close, 188 au_read_close,
192 #endif 192 #endif
193 193
194 #ifdef CONFIG_AU_MUXER 194 #ifdef CONFIG_AU_MUXER
195 AVOutputFormat au_muxer = { 195 AVOutputFormat au_muxer = {
196 "au", 196 "au",
197 "SUN AU Format", 197 NULL_IF_CONFIG_SMALL("SUN AU format"),
198 "audio/basic", 198 "audio/basic",
199 "au", 199 "au",
200 0, 200 0,
201 CODEC_ID_PCM_S16BE, 201 CODEC_ID_PCM_S16BE,
202 CODEC_ID_NONE, 202 CODEC_ID_NONE,