{ 0, 0 },
};
+#ifdef CONFIG_ENCODERS
/* AUDIO_FILE header */
static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
{
return 0;
}
+#endif //CONFIG_ENCODERS
static int au_probe(AVProbeData *p)
{
au_read_close,
};
+#ifdef CONFIG_ENCODERS
static AVOutputFormat au_oformat = {
"au",
"SUN AU Format",
au_write_packet,
au_write_trailer,
};
+#endif //CONFIG_ENCODERS
int au_init(void)
{
av_register_input_format(&au_iformat);
+#ifdef CONFIG_ENCODERS
av_register_output_format(&au_oformat);
+#endif //CONFIG_ENCODERS
return 0;
}