diff lcldec.c @ 12068:8d969e96d080 libavcodec

Move #ifdef before zlib_decomp() up so it covers the Doxygen comments. Otherwise Doxygen gets confused and cannot map comments to functions.
author diego
date Fri, 02 Jul 2010 12:41:07 +0000
parents 7dd2a45249a9
children
line wrap: on
line diff
--- a/lcldec.c	Fri Jul 02 12:35:51 2010 +0000
+++ b/lcldec.c	Fri Jul 02 12:41:07 2010 +0000
@@ -117,6 +117,7 @@
 }
 
 
+#if CONFIG_ZLIB_DECODER
 /**
  * \brief decompress a zlib-compressed data block into decomp_buf
  * \param src compressed input buffer
@@ -124,7 +125,6 @@
  * \param offset offset in decomp_buf
  * \param expected expected decompressed length
  */
-#if CONFIG_ZLIB_DECODER
 static int zlib_decomp(AVCodecContext *avctx, const uint8_t *src, int src_len, int offset, int expected)
 {
     LclDecContext *c = avctx->priv_data;