X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fvideo_image_frame.cc;h=ebcb9e6f96c8b9aabc52806b18b20075b404cdfe;hb=2c79f74e49cb4ab96724d6183435e8f47b15c7d1;hp=e5cd197782e38bb5c1d92514de57a53923e96dd7;hpb=fd23ebd0886cd61f8ee68d52d6576d00a16c9032;p=ardour.git diff --git a/gtk2_ardour/video_image_frame.cc b/gtk2_ardour/video_image_frame.cc index e5cd197782..ebcb9e6f96 100644 --- a/gtk2_ardour/video_image_frame.cc +++ b/gtk2_ardour/video_image_frame.cc @@ -211,7 +211,7 @@ http_get_thread (void *arg) { char *res = NULL; do { res=a3_curl_http_get(url, &status); - if (status == 503) usleep(5000); // try-again + if (status == 503) Glib::usleep(5000); // try-again } while (status == 503 && --timeout > 0); if (status != 200 || !res) { @@ -250,8 +250,8 @@ VideoImageFrame::http_download_done (char *data){ } exposeimg(); - /* don't request frames rapidly, wait after user has zoomed */ - usleep(20000); + /* don't request frames too quickly, wait after user has zoomed */ + Glib::usleep(40000); if (queued_request) { http_get_again(want_video_frame_number);