From 5735552f1f17ea01dcbc99b08f54b5bf52176a8f Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Tue, 29 Jul 2014 08:43:40 -0700
Subject: [PATCH] pngenc: Drop pointless pointer cast in png_write_row()

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

diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c
index a349ee80857..3d11f370cbd 100644
--- a/libavcodec/pngenc.c
+++ b/libavcodec/pngenc.c
@@ -213,7 +213,7 @@ static int png_write_row(PNGEncContext *s, const uint8_t *data, int size)
     int ret;
 
     s->zstream.avail_in = size;
-    s->zstream.next_in  = (uint8_t *)data;
+    s->zstream.next_in  = data;
     while (s->zstream.avail_in > 0) {
         ret = deflate(&s->zstream, Z_NO_FLUSH);
         if (ret != Z_OK)
-- 
GitLab