comparison aac.c @ 10145:7955db355703 libavcodec

Make sample_fmts and channel_layouts compound literals const to reduce size of .data section.
author reimar
date Sun, 06 Sep 2009 09:15:07 +0000
parents 15c5048b9a49
children 76132409af55
comparison
equal deleted inserted replaced
10144:50ec8930f99e 10145:7955db355703
1802 aac_decode_init, 1802 aac_decode_init,
1803 NULL, 1803 NULL,
1804 aac_decode_close, 1804 aac_decode_close,
1805 aac_decode_frame, 1805 aac_decode_frame,
1806 .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"), 1806 .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
1807 .sample_fmts = (enum SampleFormat[]) { 1807 .sample_fmts = (const enum SampleFormat[]) {
1808 SAMPLE_FMT_S16,SAMPLE_FMT_NONE 1808 SAMPLE_FMT_S16,SAMPLE_FMT_NONE
1809 }, 1809 },
1810 }; 1810 };