Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c
index db5735eff2..24542ffced 100644
--- a/libavcodec/wmadec.c
+++ b/libavcodec/wmadec.c
@@ -1000,35 +1000,35 @@ static av_cold void flush(AVCodecContext *avctx)
}
#if CONFIG_WMAV1_DECODER
-const AVCodec ff_wmav1_decoder = {
- .name = "wmav1",
- .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"),
- .type = AVMEDIA_TYPE_AUDIO,
- .id = AV_CODEC_ID_WMAV1,
+const FFCodec ff_wmav1_decoder = {
+ .p.name = "wmav1",
+ .p.long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"),
+ .p.type = AVMEDIA_TYPE_AUDIO,
+ .p.id = AV_CODEC_ID_WMAV1,
.priv_data_size = sizeof(WMACodecContext),
.init = wma_decode_init,
.close = ff_wma_end,
.decode = wma_decode_superframe,
.flush = flush,
- .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
- .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
+ .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
+ .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
AV_SAMPLE_FMT_NONE },
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};
#endif
#if CONFIG_WMAV2_DECODER
-const AVCodec ff_wmav2_decoder = {
- .name = "wmav2",
- .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 2"),
- .type = AVMEDIA_TYPE_AUDIO,
- .id = AV_CODEC_ID_WMAV2,
+const FFCodec ff_wmav2_decoder = {
+ .p.name = "wmav2",
+ .p.long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 2"),
+ .p.type = AVMEDIA_TYPE_AUDIO,
+ .p.id = AV_CODEC_ID_WMAV2,
.priv_data_size = sizeof(WMACodecContext),
.init = wma_decode_init,
.close = ff_wma_end,
.decode = wma_decode_superframe,
.flush = flush,
- .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
- .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
+ .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
+ .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
AV_SAMPLE_FMT_NONE },
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};