From 1555524a673b4225ad5fd08657b1a48bb6d2bfb1 Mon Sep 17 00:00:00 2001
From: Martin Vignali <martin.vignali@gmail.com>
Date: Fri, 20 Mar 2015 21:38:30 +0100
Subject: [PATCH 3/4] avoid warning, for avframe in dvenc

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

diff --git a/libavcodec/dvenc.c b/libavcodec/dvenc.c
index 2442f2b..31b79ed 100644
--- a/libavcodec/dvenc.c
+++ b/libavcodec/dvenc.c
@@ -725,7 +725,7 @@ static int dvvideo_encode_frame(AVCodecContext *c, AVPacket *pkt,
         return ret;
 
     c->pix_fmt                = s->sys->pix_fmt;
-    s->frame                  = frame;
+    s->frame                  = (AVFrame*)frame;
     c->coded_frame->key_frame = 1;
     c->coded_frame->pict_type = AV_PICTURE_TYPE_I;
 
-- 
1.9.3 (Apple Git-50)

