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/smacker.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/smacker.c')
-rw-r--r--libavcodec/smacker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c
index 62e78bd785..5e3b6df8cf 100644
--- a/libavcodec/smacker.c
+++ b/libavcodec/smacker.c
@@ -698,7 +698,7 @@ AVCodec smacker_decoder = {
NULL,
decode_end,
decode_frame,
- .long_name = "Smacker video",
+ .long_name = NULL_IF_CONFIG_SMALL("Smacker video"),
};
AVCodec smackaud_decoder = {
@@ -710,6 +710,6 @@ AVCodec smackaud_decoder = {
NULL,
NULL,
smka_decode_frame,
- .long_name = "Smacker audio",
+ .long_name = NULL_IF_CONFIG_SMALL("Smacker audio"),
};