changeset 3122:d57bf6a15b04 libavcodec

add another set of zlib guards
author melanson
date Sun, 12 Feb 2006 17:47:30 +0000
parents 99cbff5f8038
children fc43390719fc
files zmbv.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/zmbv.c	Sun Feb 12 16:56:06 2006 +0000
+++ b/zmbv.c	Sun Feb 12 17:47:30 2006 +0000
@@ -298,11 +298,16 @@
             av_log(avctx, AV_LOG_ERROR, "Unsupported (for now) format %i\n", c->fmt);
             return -1;
         }
+#ifdef CONFIG_ZLIB
         zret = inflateReset(&c->zstream);
         if (zret != Z_OK) {
             av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
             return -1;
         }
+#else
+        av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n");
+        return -1;
+#endif  /* CONFIG_ZLIB */
         if(c->fmt == ZMBV_FMT_8BPP) {
             c->bpp = 8;
             c->decode_intra = zmbv_decode_intra;