Merge branch 'cairocanvas' of git.ardour.org:ardour/ardour into cairocanvas
[ardour.git] / gtk2_ardour / video_image_frame.h
1 /*
2     Copyright (C) 2010 Paul Davis
3     Author: Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #ifndef __ardour_video_image_frame_h__
21 #define __ardour_video_image_frame_h__
22
23 #define ARDOUR_USER_AGENT (PROGRAM_NAME VERSIONSTRING)
24 #define ARDOUR_CURL_TIMEOUT (60)
25
26 #include <string>
27 #include <glib.h>
28
29 #include <sigc++/signal.h>
30 #include <pthread.h>
31
32 #include "ardour/ardour.h"
33 #include "pbd/signals.h"
34
35 #include "canvas/group.h"
36 #include "canvas/pixbuf.h"
37 #include "canvas/image.h"
38
39 namespace ARDOUR {
40         class TempoSection;
41         class MeterSection;
42 }
43
44 class PublicEditor;
45
46 /** @class VideoImageFrame
47  *  @brief a single video-frame to be displayed in the video timeline
48  */
49 class VideoImageFrame : public sigc::trackable
50 {
51         public:
52         VideoImageFrame (PublicEditor&, ArdourCanvas::Group&, int, int, std::string, std::string);
53         virtual ~VideoImageFrame ();
54
55         void set_position (framepos_t);
56         void set_videoframe (framepos_t, int rightend = -1);
57         framepos_t get_video_frame_number() {return video_frame_number;}
58
59         int get_height () {return clip_height;}
60         int get_width ()  {return clip_width;}
61         int get_rightend() { return rightend;}
62         framepos_t get_req_frame () {return req_video_frame_number;}
63         std::string get_video_server_url () {return video_server_url;}
64         std::string get_video_filename ()   {return video_filename;}
65
66         void http_download_done (char *);
67         PBD::Signal0<void> ImgChanged;
68
69         protected:
70
71         PublicEditor& editor;
72         ArdourCanvas::Group *_parent;
73         ArdourCanvas::Image *image;
74         boost::shared_ptr<ArdourCanvas::Image::Data> img;
75
76         int clip_width;
77         int clip_height;
78         int rightend;
79
80         std::string video_server_url;
81         std::string video_filename;
82
83         double        unit_position;
84         framepos_t   sample_position;
85         framepos_t   video_frame_number;
86
87         void reposition ();
88         void exposeimg ();
89
90         void fill_frame (const uint8_t r, const uint8_t g, const uint8_t b);
91         void draw_line ();
92         void draw_x ();
93         void cut_rightend ();
94
95
96         void http_get(framepos_t fn);
97         void http_maybe_get_again();
98
99         framepos_t req_video_frame_number;
100         framepos_t want_video_frame_number;
101         bool        queued_request;
102
103         pthread_mutex_t request_lock;
104         pthread_mutex_t queue_lock;
105
106         pthread_t      thread_id_tt;
107         bool           thread_active;
108
109 };
110
111 extern "C" {
112         char *curl_http_get (const char *u, int *status);
113 }
114
115 #endif /* __ardour_video_image_frame_h__ */