[SCM] libav/experimental: fix warning: assignment makes pointer from integer without a cast

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:35:01 UTC 2013


The following commit has been merged in the experimental branch:
commit 973c68cba0fd31199d4fb5cdb760107b3f83393b
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Sat Jan 10 23:49:50 2009 +0000

    fix warning: assignment makes pointer from integer without a cast
    
    Originally committed as revision 16523 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffplay.c b/ffplay.c
index ebe31d1..218ea6d 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2071,7 +2071,7 @@ static int decode_thread(void *arg)
         }
         if(url_feof(ic->pb)) {
             av_init_packet(pkt);
-            pkt->data=
+            pkt->data=NULL;
             pkt->size=0;
             pkt->stream_index= is->video_stream;
             packet_queue_put(&is->videoq, pkt);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list