diff 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
line wrap: on
line diff
--- a/aac.c	Sun Sep 06 08:56:10 2009 +0000
+++ b/aac.c	Sun Sep 06 09:15:07 2009 +0000
@@ -1804,7 +1804,7 @@
     aac_decode_close,
     aac_decode_frame,
     .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
-    .sample_fmts = (enum SampleFormat[]) {
+    .sample_fmts = (const enum SampleFormat[]) {
         SAMPLE_FMT_S16,SAMPLE_FMT_NONE
     },
 };