diff rawdec.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 5b3acf9fd50a
children 4525dcd81357
line wrap: on
line diff
--- a/rawdec.c	Tue Jun 10 19:21:40 2008 +0000
+++ b/rawdec.c	Thu Jun 12 21:50:13 2008 +0000
@@ -162,5 +162,5 @@
     NULL,
     raw_close_decoder,
     raw_decode,
-    .long_name = "raw video",
+    .long_name = NULL_IF_CONFIG_SMALL("raw video"),
 };