diff options
author | Stefano Sabatini | 2008-06-12 21:50:13 +0000 |
---|---|---|
committer | Stefano Sabatini | 2008-06-12 21:50:13 +0000 |
commit | fe4bf37455e81ecf2c0b769c979bdf6eec785602 (patch) | |
tree | a12f7782e43db4c9703cce6d8c304dfb7c2c638c /libavcodec/wmadec.c | |
parent | d18811bbf541cc55ac2e36bc34c7c2f541a388cb (diff) |
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r-- | libavcodec/wmadec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index e622b238d6..361a73d273 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -862,7 +862,7 @@ AVCodec wmav1_decoder = NULL, ff_wma_end, wma_decode_superframe, - .long_name = "Windows Media Audio 1", + .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"), }; AVCodec wmav2_decoder = @@ -875,5 +875,5 @@ AVCodec wmav2_decoder = NULL, ff_wma_end, wma_decode_superframe, - .long_name = "Windows Media Audio 2", + .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 2"), }; |