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/g722.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/g722.c')
-rw-r--r-- | libavcodec/g722.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g722.c b/libavcodec/g722.c index 0efc390afc..f00fa6a0e2 100644 --- a/libavcodec/g722.c +++ b/libavcodec/g722.c @@ -577,7 +577,7 @@ AVCodec ff_adpcm_g722_encoder = { .close = g722_close, .encode = g722_encode_frame, .long_name = NULL_IF_CONFIG_SMALL("G.722 ADPCM"), - .sample_fmts = (enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, + .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, }; #endif |