I want to add directsound support in audio.c

how to enable this file in compile time?

if i add this lines:
#ifdef CONFIG_DSOUND_DEMUXER
AVInputFormat dsound_demuxer = {
    "dsound",
    "dsound audio grab and output",
    sizeof(AudioData),
    NULL,
    audio_read_header,
    audio_read_packet,
    audio_read_close,
    .flags = AVFMT_NOFILE,
};
#endif

Can I enable this file by ./configure --enable dsound_demuxer?
_______________________________________________
libav-user mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/libav-user

Reply via email to