diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-01-25 13:05:45 +0100 |
---|---|---|
committer | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-01-25 13:05:45 +0100 |
commit | e3320f303c4eb8f7fe0fac69bfa9ce36d9916930 (patch) | |
tree | dec909da8024c41879385410a2ff745d51af78e8 /plugins/media/media-rygel.h | |
parent | ce4624801ed46ecf912205cd984f3488e3e07bac (diff) |
Fix Media Plugin refresh, add seek API
We no longer fail if init() is called multiple times
(typical refresh case).
We now support a "seek?value=<seconds>" API.
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
Diffstat (limited to 'plugins/media/media-rygel.h')
-rw-r--r-- | plugins/media/media-rygel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/media/media-rygel.h b/plugins/media/media-rygel.h index c70ff5c3..278881c0 100644 --- a/plugins/media/media-rygel.h +++ b/plugins/media/media-rygel.h @@ -32,7 +32,7 @@ #define URN_CONTENT_DIR "urn:schemas-upnp-org:service:ContentDirectory" #define URN_AV_TRANSPORT "urn:schemas-upnp-org:service:AVTransport" -typedef enum { PLAY, PAUSE, STOP } State; +typedef enum { PLAY, PAUSE, STOP, SEEK } State; typedef struct dev_ctx dev_ctx_T; struct dev_ctx { @@ -45,6 +45,7 @@ struct dev_ctx { int content_num; State state; State target_state; + char *action_args; char *transfer_path; unsigned char transfer_started; }; @@ -55,7 +56,7 @@ STATIC char* _rygel_find_id_for_index (dev_ctx_T *, char *, unsigned int); STATIC char* _rygel_find_metadata_for_id (dev_ctx_T *, char *); STATIC char* _rygel_find_uri_for_metadata (dev_ctx_T *, char *); STATIC unsigned char _rygel_start_uploading (dev_ctx_T *, char *, char *); -STATIC unsigned char _rygel_start_doing (dev_ctx_T *, char *, char *, State); +STATIC unsigned char _rygel_start_doing (dev_ctx_T *, char *, char *, State, char *); STATIC unsigned char _rygel_find_av_transport (dev_ctx_T *); STATIC void _rygel_device_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer); STATIC void _rygel_av_transport_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer); |