diff vorbis_dec.c @ 7040:e943e1409077 libavcodec

Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
author stefano
date Thu, 12 Jun 2008 21:50:13 +0000
parents 1fc844ec6430
children 60c3177894fe
line wrap: on
line diff
--- a/vorbis_dec.c	Tue Jun 10 19:21:40 2008 +0000
+++ b/vorbis_dec.c	Thu Jun 12 21:50:13 2008 +0000
@@ -1634,6 +1634,6 @@
     NULL,
     vorbis_decode_close,
     vorbis_decode_frame,
-    .long_name = "Vorbis",
+    .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
 };