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/libfaac.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/libfaac.c')
-rw-r--r-- | libavcodec/libfaac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libfaac.c b/libavcodec/libfaac.c index cd4d38f5eb..18b056b04f 100644 --- a/libavcodec/libfaac.c +++ b/libavcodec/libfaac.c @@ -153,6 +153,6 @@ AVCodec libfaac_encoder = { Faac_encode_init, Faac_encode_frame, Faac_encode_close, - .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("libfaac AAC (Advanced Audio Codec)"), }; |