summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/aac_adtstoasc_bsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg/libavcodec/aac_adtstoasc_bsf.c')
-rw-r--r--ffmpeg/libavcodec/aac_adtstoasc_bsf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg/libavcodec/aac_adtstoasc_bsf.c b/ffmpeg/libavcodec/aac_adtstoasc_bsf.c
index c7d7b3a..c8f9e0a 100644
--- a/ffmpeg/libavcodec/aac_adtstoasc_bsf.c
+++ b/ffmpeg/libavcodec/aac_adtstoasc_bsf.c
@@ -112,7 +112,7 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc,
}
AVBitStreamFilter ff_aac_adtstoasc_bsf = {
- "aac_adtstoasc",
- sizeof(AACBSFContext),
- aac_adtstoasc_filter,
+ .name = "aac_adtstoasc",
+ .priv_data_size = sizeof(AACBSFContext),
+ .filter = aac_adtstoasc_filter,
};