Use usleep instead of sleep, some MinGW versions lack sleep.

Originally committed as revision 9044 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Alex Beregszaszi 18 years ago
parent 0bda781739
commit c8df9c6358
  1. 2
      libavformat/http.c

@ -245,7 +245,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
s->off = 0; s->off = 0;
s->filesize = -1; s->filesize = -1;
if (post) { if (post) {
sleep(1); usleep(1000*1000);
return 0; return 0;
} }

Loading…
Cancel
Save