summaryrefslogtreecommitdiff
path: root/libavcodec/lcldec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 12:41:07 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 12:41:07 +0000
commitb34aaed2cf31b188fe1778f9fdac14ce53369eca (patch)
tree17d5be3f08fe24c58477b30e0a917fe86dfd672a /libavcodec/lcldec.c
parentbbd6684f394b451c537169d57a239fe2fb2be5c1 (diff)
Move #ifdef before zlib_decomp() up so it covers the Doxygen comments.
Otherwise Doxygen gets confused and cannot map comments to functions. Originally committed as revision 23988 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lcldec.c')
-rw-r--r--libavcodec/lcldec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c
index 2bf448a775..23af511455 100644
--- a/libavcodec/lcldec.c
+++ b/libavcodec/lcldec.c
@@ -117,6 +117,7 @@ static unsigned int mszh_decomp(const unsigned char * srcptr, int srclen, unsign
}
+#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 unsigned char * srcptr, int srclen, unsign
* \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;