# HG changeset patch # User diego # Date 1278074467 0 # Node ID 8d969e96d08029ed093fc1e8a8cf08d94c756590 # Parent 9aaff29c1e78441b506c20780575b38b3be0aef3 Move #ifdef before zlib_decomp() up so it covers the Doxygen comments. Otherwise Doxygen gets confused and cannot map comments to functions. diff -r 9aaff29c1e78 -r 8d969e96d080 lcldec.c --- 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;