From e0d911b93c0f3fc4e838546df26528c22757e82e Mon Sep 17 00:00:00 2001
From: dsmudhar <ds.mudhar@gmail.com>
Date: Sun, 22 May 2016 07:18:53 +0530
Subject: [PATCH 7/7] libavcodec/tscc: fixed assignment discards qualifier
 warning

---
 libavcodec/tscc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c
index bd5fe03..4641545 100644
--- a/libavcodec/tscc.c
+++ b/libavcodec/tscc.c
@@ -78,7 +78,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
         av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", ret);
         return AVERROR_UNKNOWN;
     }
-    c->zstream.next_in   = buf;
+    c->zstream.next_in   = (Bytef *) buf;
     c->zstream.avail_in  = buf_size;
     c->zstream.next_out = c->decomp_buf;
     c->zstream.avail_out = c->decomp_size;
-- 
2.7.4 (Apple Git-66)

