diff options
Diffstat (limited to 'layer_video.cpp')
-rw-r--r-- | layer_video.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layer_video.cpp b/layer_video.cpp index bcedda0..15108bf 100644 --- a/layer_video.cpp +++ b/layer_video.cpp @@ -43,12 +43,12 @@ LayerVideo::LayerVideo(const char *name, SDL_Rect geo, float opacity, "--no-xlib" /* tell VLC to not use Xlib */ }; - url_osc_id = register_method("url", "s", (OscServer::MethodHandlerCb)url_osc); - rate_osc_id = register_method("rate", "f", (OscServer::MethodHandlerCb)rate_osc); + url_osc_id = register_method("url", "s", (OSCServer::MethodHandlerCb)url_osc); + rate_osc_id = register_method("rate", "f", (OSCServer::MethodHandlerCb)rate_osc); position_osc_id = register_method("position", "f", - (OscServer::MethodHandlerCb)position_osc); + (OSCServer::MethodHandlerCb)position_osc); paused_osc_id = register_method("paused", "i", - (OscServer::MethodHandlerCb)paused_osc); + (OSCServer::MethodHandlerCb)paused_osc); LayerVideo::geo(geo); LayerVideo::alpha(opacity); |