mark the step entry dialog as a dialog even though it is an ArdourWindow, to help...
[ardour.git] / gtk2_ardour / video_image_frame.cc
index 30fe487f5165bdd9598eb3881995fecfd009cf54..cc964c7e43e0cc8231c517ed671757a8900418f6 100644 (file)
@@ -195,13 +195,17 @@ http_get_thread (void *arg) {
          vif->get_video_filename().c_str()
        );
        int status = 0;
-       int timeout = 400; // * 5ms -> 2sec
+       int timeout = 1000; // * 5ms -> 5sec
        char *res = NULL;
        do {
                res=curl_http_get(url, &status);
                if (status == 503) usleep(5000); // try-again
        } while (status == 503 && --timeout > 0);
 
+       if (status != 200 || !res) {
+               printf("no-video frame: video-server returned http-status: %d\n", status);
+       }
+
        pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
        vif->http_download_done(res);
        pthread_exit(0);