summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmavoice/wmavoice.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmavoice/wmavoice.c')
-rw-r--r--apps/codecs/libwmavoice/wmavoice.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/codecs/libwmavoice/wmavoice.c b/apps/codecs/libwmavoice/wmavoice.c
index c4582f35cc..39bcb0e04e 100644
--- a/apps/codecs/libwmavoice/wmavoice.c
+++ b/apps/codecs/libwmavoice/wmavoice.c
@@ -2015,7 +2015,7 @@ static av_cold void wmavoice_flush(AVCodecContext *ctx)
2015 memset(s->denoise_filter_cache, 0, sizeof(s->denoise_filter_cache)); 2015 memset(s->denoise_filter_cache, 0, sizeof(s->denoise_filter_cache));
2016 } 2016 }
2017} 2017}
2018 2018#if 0
2019AVCodec wmavoice_decoder = { 2019AVCodec wmavoice_decoder = {
2020 "wmavoice", 2020 "wmavoice",
2021 AVMEDIA_TYPE_AUDIO, 2021 AVMEDIA_TYPE_AUDIO,
@@ -2029,3 +2029,9 @@ AVCodec wmavoice_decoder = {
2029 .flush = wmavoice_flush, 2029 .flush = wmavoice_flush,
2030 .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio Voice"), 2030 .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio Voice"),
2031}; 2031};
2032#endif
2033
2034int main(void)
2035{
2036 return 0;
2037}