mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
dedicated namespace for video-utils
conflicting symbol prophylaxis
This commit is contained in:
parent
520b09e82a
commit
b5845ea458
9 changed files with 35 additions and 24 deletions
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
using namespace std;
|
||||
using namespace ARDOUR;
|
||||
using namespace VideoUtils;
|
||||
|
||||
static void freedata_cb (uint8_t *d, void* /*arg*/) {
|
||||
/* later this can be used with libharvid
|
||||
|
|
@ -209,7 +210,7 @@ http_get_thread (void *arg) {
|
|||
int timeout = 1000; // * 5ms -> 5sec
|
||||
char *res = NULL;
|
||||
do {
|
||||
res=curl_http_get(url, &status);
|
||||
res=a3_curl_http_get(url, &status);
|
||||
if (status == 503) usleep(5000); // try-again
|
||||
} while (status == 503 && --timeout > 0);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue