diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-04-12 14:25:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-04-12 14:26:18 +0200 |
commit | 8b7dc087e4c46cd20702882aa50a930e97eeccad (patch) | |
tree | 811ec39da2617d22c0bf1a06724ef5904854d811 /libavcodec/amrwbdec.c | |
parent | 44a8b0ddd98cc5ef9eeaae73f380c4048a77ffe2 (diff) | |
download | ffmpeg-8b7dc087e4c46cd20702882aa50a930e97eeccad.tar.gz |
Add forgotten const to enum AVSampleFormat
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/amrwbdec.c')
-rw-r--r-- | libavcodec/amrwbdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/amrwbdec.c b/libavcodec/amrwbdec.c index 90bf1d5fdf..fa3f8dd050 100644 --- a/libavcodec/amrwbdec.c +++ b/libavcodec/amrwbdec.c @@ -1233,5 +1233,5 @@ AVCodec ff_amrwb_decoder = { .init = amrwb_decode_init, .decode = amrwb_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Adaptive Multi-Rate WideBand"), - .sample_fmts = (enum AVSampleFormat[]){AV_SAMPLE_FMT_FLT,AV_SAMPLE_FMT_NONE}, + .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_FLT,AV_SAMPLE_FMT_NONE}, }; |