diff dv.c @ 7776:dbcdd0165e55 libavcodec

Replace generic CONFIG_DECODERS preprocessor conditionals by more specific CONFIG_FOO_DECODER conditionals where appropriate.
author diego
date Tue, 02 Sep 2008 23:25:57 +0000
parents e8f71784062e
children 3b5964de95cd
line wrap: on
line diff
--- a/dv.c	Tue Sep 02 23:14:11 2008 +0000
+++ b/dv.c	Tue Sep 02 23:25:57 2008 +0000
@@ -1019,7 +1019,7 @@
 }
 #endif
 
-#ifdef CONFIG_DECODERS
+#ifdef CONFIG_DVVIDEO_DECODER
 /* NOTE: exactly one frame must be given (120000 bytes for NTSC,
    144000 bytes for PAL - or twice those for 50Mbps) */
 static int dvvideo_decode_frame(AVCodecContext *avctx,
@@ -1060,7 +1060,7 @@
 
     return s->sys->frame_size;
 }
-#endif
+#endif /* CONFIG_DVVIDEO_DECODER */
 
 
 static inline int dv_write_pack(enum dv_pack_type pack_id, DVVideoContext *c, uint8_t* buf)