diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-12 21:50:13 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-12 21:50:13 +0000 |
commit | fe4bf37455e81ecf2c0b769c979bdf6eec785602 (patch) | |
tree | a12f7782e43db4c9703cce6d8c304dfb7c2c638c /libavcodec/8svx.c | |
parent | d18811bbf541cc55ac2e36bc34c7c2f541a388cb (diff) | |
download | ffmpeg-fe4bf37455e81ecf2c0b769c979bdf6eec785602.tar.gz |
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/8svx.c')
-rw-r--r-- | libavcodec/8svx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index cdbd6b791f..660f00ccf8 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -96,7 +96,7 @@ AVCodec eightsvx_fib_decoder = { .priv_data_size = sizeof (EightSvxContext), .init = eightsvx_decode_init, .decode = eightsvx_decode_frame, - .long_name = "8SVX fibonacci", + .long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"), }; AVCodec eightsvx_exp_decoder = { @@ -106,5 +106,5 @@ AVCodec eightsvx_exp_decoder = { .priv_data_size = sizeof (EightSvxContext), .init = eightsvx_decode_init, .decode = eightsvx_decode_frame, - .long_name = "8SVX exponential", + .long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"), }; |