[FFmpeg-cvslog] r16523 - trunk/ffplay.c

aurel subversion
Sun Jan 11 00:49:50 CET 2009


Author: aurel
Date: Sun Jan 11 00:49:50 2009
New Revision: 16523

Log:
fix warning: assignment makes pointer from integer without a cast

Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	Sun Jan 11 00:17:07 2009	(r16522)
+++ trunk/ffplay.c	Sun Jan 11 00:49:50 2009	(r16523)
@@ -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);




More information about the ffmpeg-cvslog mailing list