summaryrefslogtreecommitdiff
path: root/libavcodec/g726.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-12 21:50:13 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-12 21:50:13 +0000
commitfe4bf37455e81ecf2c0b769c979bdf6eec785602 (patch)
treea12f7782e43db4c9703cce6d8c304dfb7c2c638c /libavcodec/g726.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/g726.c')
-rw-r--r--libavcodec/g726.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c
index d9eb94a34d..1a0d40d324 100644
--- a/libavcodec/g726.c
+++ b/libavcodec/g726.c
@@ -413,7 +413,7 @@ AVCodec adpcm_g726_encoder = {
g726_encode_frame,
g726_close,
NULL,
- .long_name = "G.726 ADPCM",
+ .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
};
#endif //CONFIG_ENCODERS
@@ -426,5 +426,5 @@ AVCodec adpcm_g726_decoder = {
NULL,
g726_close,
g726_decode_frame,
- .long_name = "G.726 ADPCM",
+ .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
};