1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

fix warning: assignment makes pointer from integer without a cast

Originally committed as revision 16523 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2009-01-10 23:49:50 +00:00
parent 10652dd54f
commit 973c68cba0

View File

@ -2071,7 +2071,7 @@ static int decode_thread(void *arg)
} }
if(url_feof(ic->pb)) { if(url_feof(ic->pb)) {
av_init_packet(pkt); av_init_packet(pkt);
pkt->data= pkt->data=NULL;
pkt->size=0; pkt->size=0;
pkt->stream_index= is->video_stream; pkt->stream_index= is->video_stream;
packet_queue_put(&is->videoq, pkt); packet_queue_put(&is->videoq, pkt);