summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_image_frame.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-08-03 16:54:57 +0200
committerPaul Davis <paul@linuxaudiosystems.com>2013-08-08 15:26:19 -0400
commitb5845ea45859dd3a823f2aa59fac2aaefcb6e087 (patch)
tree906ed5da9166acfc7b78c065e555b070e6bd1a69 /gtk2_ardour/video_image_frame.cc
parent520b09e82a1fe3affa49fab6f194b369cfdbc034 (diff)
dedicated namespace for video-utils
conflicting symbol prophylaxis
Diffstat (limited to 'gtk2_ardour/video_image_frame.cc')
-rw-r--r--gtk2_ardour/video_image_frame.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/video_image_frame.cc b/gtk2_ardour/video_image_frame.cc
index dffab96ab5..e5cd197782 100644
--- a/gtk2_ardour/video_image_frame.cc
+++ b/gtk2_ardour/video_image_frame.cc
@@ -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);