]> git.zerfleddert.de Git - record-dvb/blobdiff - record-dvb.c
interpret server response
[record-dvb] / record-dvb.c
index a289874d160ee0c835e9d2aa420b4e8343e44ccc..bc47ecfe3b60d7f3ee0293658826ad91dcfdca7a 100644 (file)
 #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;
@@ -36,6 +37,7 @@ void record(int(*open_fn)(char *), char *url, char *outfile, int duration)
        printf("Recording from %s for %d seconds...\n", url, duration);
 
        gettimeofday(&start, NULL);
+       curr = start;
 
        do {
                if ((bytes = recv(in, buffer, CHUNKSIZE, 0)) < 1) {
@@ -54,7 +56,10 @@ void record(int(*open_fn)(char *), char *url, char *outfile, int duration)
                        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);
@@ -71,7 +76,7 @@ int main(int argc, char **argv)
 
        if (argc == 4) {
                url = argv[1];
-               duration = atol(argv[2])*60;
+               duration = atoi(argv[2])*60;
                outfile = argv[3];
        } else {
                fprintf(stderr,"Syntax: %s URL duration_in_minutes outfile\n", argv[0]);
Impressum, Datenschutz