diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-06 09:15:07 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-06 09:15:07 +0000 |
commit | b5f09d31c21d1e89f7c4693f28046d3b26209da3 (patch) | |
tree | a6e2a42f04e4c19d1bce8933aa2cc5e85ad0d293 /libavcodec/wmaenc.c | |
parent | 88e70e1b0acbcb80d1fa6576082570122b8cf82b (diff) | |
download | ffmpeg-b5f09d31c21d1e89f7c4693f28046d3b26209da3.tar.gz |
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
Diffstat (limited to 'libavcodec/wmaenc.c')
-rw-r--r-- | libavcodec/wmaenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c index 8386983014..a1da2830e5 100644 --- a/libavcodec/wmaenc.c +++ b/libavcodec/wmaenc.c @@ -392,7 +392,7 @@ AVCodec wmav1_encoder = encode_init, encode_superframe, ff_wma_end, - .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("Windows Media Audio 1"), }; @@ -405,6 +405,6 @@ AVCodec wmav2_encoder = encode_init, encode_superframe, ff_wma_end, - .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("Windows Media Audio 2"), }; |