Commit 973c68cb authored by Aurelien Jacobs's avatar Aurelien Jacobs

fix warning: assignment makes pointer from integer without a cast

Originally committed as revision 16523 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 10652dd5
...@@ -2071,7 +2071,7 @@ static int decode_thread(void *arg) ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment