aboutsummaryrefslogtreecommitdiff
path: root/layer_video.h
diff options
context:
space:
mode:
Diffstat (limited to 'layer_video.h')
-rw-r--r--layer_video.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/layer_video.h b/layer_video.h
new file mode 100644
index 0000000..f16d334
--- /dev/null
+++ b/layer_video.h
@@ -0,0 +1,57 @@
+#ifndef __HAVE_LAYER_VIDEO_H
+#define __HAVE_LAYER_VIDEO_H
+
+#include <SDL.h>
+#include <SDL_thread.h>
+
+#include <vlc/vlc.h>
+
+#include "osc_graphics.h"
+#include "layer.h"
+
+class LayerVideo : public Layer {
+ libvlc_instance_t *vlcinst;
+ libvlc_media_player_t *mp;
+
+ SDL_Surface *surf;
+ SDL_mutex *mutex;
+
+ SDL_Rect geov;
+ float alphav;
+
+ float ratev;
+ bool pausedv;
+
+public:
+ LayerVideo(const char *name,
+ SDL_Rect geo = (SDL_Rect){0, 0, 0, 0},
+ float opacity = 1.,
+ const char *url = NULL);
+ ~LayerVideo();
+
+ inline void *
+ lock_surf()
+ {
+ SDL_LockMutex(mutex);
+ SDL_MAYBE_LOCK(surf);
+ return surf->pixels;
+ }
+ inline void
+ unlock_surf()
+ {
+ SDL_MAYBE_UNLOCK(surf);
+ SDL_UnlockMutex(mutex);
+ }
+
+ void geo(SDL_Rect geo);
+ void alpha(float opacity);
+
+ void url(const char *url = NULL);
+ void rate(float rate);
+ void position(float position);
+ void paused(bool paused);
+
+ void frame(SDL_Surface *target);
+};
+
+#endif