summaryrefslogtreecommitdiff
path: root/libavcodec/g723_1enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/g723_1enc.c')
-rw-r--r--libavcodec/g723_1enc.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/g723_1enc.c b/libavcodec/g723_1enc.c
index 9f91d282f5..a4cfb72519 100644
--- a/libavcodec/g723_1enc.c
+++ b/libavcodec/g723_1enc.c
@@ -1238,20 +1238,20 @@ static const AVCodecDefault defaults[] = {
{ NULL },
};
-const AVCodec ff_g723_1_encoder = {
- .name = "g723_1",
- .long_name = NULL_IF_CONFIG_SMALL("G.723.1"),
- .type = AVMEDIA_TYPE_AUDIO,
- .id = AV_CODEC_ID_G723_1,
- .capabilities = AV_CODEC_CAP_DR1,
+const FFCodec ff_g723_1_encoder = {
+ .p.name = "g723_1",
+ .p.long_name = NULL_IF_CONFIG_SMALL("G.723.1"),
+ .p.type = AVMEDIA_TYPE_AUDIO,
+ .p.id = AV_CODEC_ID_G723_1,
+ .p.capabilities = AV_CODEC_CAP_DR1,
.priv_data_size = sizeof(G723_1_Context),
.init = g723_1_encode_init,
.encode2 = g723_1_encode_frame,
.defaults = defaults,
- .sample_fmts = (const enum AVSampleFormat[]) {
+ .p.sample_fmts = (const enum AVSampleFormat[]) {
AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
},
- .ch_layouts = (const AVChannelLayout[]){
+ .p.ch_layouts = (const AVChannelLayout[]){
AV_CHANNEL_LAYOUT_MONO, { 0 }
},
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,