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/aacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/aacenc.c') diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index dfa519059c..ce102b6e3b 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -636,6 +636,6 @@ AVCodec aac_encoder = { aac_encode_frame, aac_encode_end, .capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY, - .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("Advanced Audio Coding"), }; -- cgit v1.2.3