Commit 4b4de92b authored by aurel's avatar aurel

fix warning: assignment makes pointer from integer without a cast

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16523 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0f82df7a
......@@ -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);
......
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