Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-13 01:50:13 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-13 01:50:13 +0400
commitfe4bf37455e81ecf2c0b769c979bdf6eec785602 (patch)
treea12f7782e43db4c9703cce6d8c304dfb7c2c638c /libavcodec/8svx.c
parentd18811bbf541cc55ac2e36bc34c7c2f541a388cb (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/8svx.c')
-rw-r--r--libavcodec/8svx.c4
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"),
};