From b5f09d31c21d1e89f7c4693f28046d3b26209da3 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 6 Sep 2009 09:15:07 +0000 Subject: Make sample_fmts and channel_layouts compound literals const to reduce size of .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/adxenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/adxenc.c') diff --git a/libavcodec/adxenc.c b/libavcodec/adxenc.c index 7c5a95d564..04e9b789b5 100644 --- a/libavcodec/adxenc.c +++ b/libavcodec/adxenc.c @@ -192,6 +192,6 @@ AVCodec adpcm_adx_encoder = { adx_encode_frame, adx_encode_close, NULL, - .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, + .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("SEGA CRI ADX ADPCM"), }; -- cgit v1.2.3