#include "mcast.h"
#define CHUNKSIZE 1500
+#define GTOD_INTERVAL 100
void record(int(*open_fn)(char *), char *url, char *outfile, int duration)
{
struct timeval start, curr;
- int bytes, written;
+ int bytes, written, count = 0;
char buffer[CHUNKSIZE];
int i;
int in, out;
printf("Recording from %s for %d seconds...\n", url, duration);
gettimeofday(&start, NULL);
+ curr = start;
do {
if ((bytes = recv(in, buffer, CHUNKSIZE, 0)) < 1) {
written += i;
} while(written < bytes);
- gettimeofday(&curr, NULL);
+ count++;
+
+ if (!(count % GTOD_INTERVAL))
+ gettimeofday(&curr, NULL);
} while (curr.tv_sec < start.tv_sec+duration);
close(out);