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/g726.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/g726.c') diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 3004041b08..a4b2099832 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -394,7 +394,7 @@ AVCodec adpcm_g726_encoder = { g726_encode_frame, g726_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("G.726 ADPCM"), }; #endif -- cgit v1.2.3