* Also include time.h for nanosleep()

by:  Philipp Matthias Hahn <pmhahn@titan.lahn.de>

Originally committed as revision 309 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Zdenek Kabelac 23 years ago
parent d6a4c0b111
commit 608d0dee6f
  1. 5
      ffserver.c
  2. 2
      libav/grab.c

@ -880,8 +880,9 @@ static int http_prepare_data(HTTPContext *c)
} }
} }
} else { } else {
send_it: send_it:
av_write_packet(&c->fmt_ctx, &pkt); if (av_write_packet(&c->fmt_ctx, &pkt))
c->state = HTTPSTATE_SEND_DATA_TRAILER;
} }
av_free_packet(&pkt); av_free_packet(&pkt);

@ -23,7 +23,7 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/time.h> #include <sys/time.h>
#include <time.h>
typedef struct { typedef struct {
int fd; int fd;

Loading…
Cancel
Save