[FFmpeg-cvslog] r23988 - trunk/libavcodec/lcldec.c
diego
subversion
Fri Jul 2 14:41:07 CEST 2010
Author: diego
Date: Fri Jul 2 14:41:07 2010
New Revision: 23988
Log:
Move #ifdef before zlib_decomp() up so it covers the Doxygen comments.
Otherwise Doxygen gets confused and cannot map comments to functions.
Modified:
trunk/libavcodec/lcldec.c
Modified: trunk/libavcodec/lcldec.c
==============================================================================
--- trunk/libavcodec/lcldec.c Fri Jul 2 14:35:51 2010 (r23987)
+++ trunk/libavcodec/lcldec.c Fri Jul 2 14:41:07 2010 (r23988)
@@ -117,6 +117,7 @@ static unsigned int mszh_decomp(const un
}
+#if CONFIG_ZLIB_DECODER
/**
* \brief decompress a zlib-compressed data block into decomp_buf
* \param src compressed input buffer
@@ -124,7 +125,6 @@ static unsigned int mszh_decomp(const un
* \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;
More information about the ffmpeg-cvslog
mailing list