summaryrefslogtreecommitdiff
path: root/src/liana/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/liana/client.h')
-rw-r--r--src/liana/client.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/liana/client.h b/src/liana/client.h
index 452150d..b1b4e61 100644
--- a/src/liana/client.h
+++ b/src/liana/client.h
@@ -29,6 +29,16 @@ struct lia_reconnect_info {
struct lia_prefs {
u8 enabled;
+ u32 node_id;
+ struct {
+ s32 audio;
+ s32 audio_min;
+ s32 audio_max;
+ s32 video;
+ s32 subtitles;
+ s32 subtitles_min;
+ s32 subtitles_max;
+ } index;
struct {
u8 audio;
u8 subtitles;
@@ -39,6 +49,8 @@ struct lia_client {
struct nn_event_loop *loop;
u32 node_id;
struct lia_prefs prefs;
+ u64 duration;
+ struct lia_vcr vcr;
array(struct camu_codec_stream) streams;
u64 mask;
u64 pos;
@@ -49,8 +61,6 @@ struct lia_client {
u16 port;
u32 connection_id;
struct nn_packet_stream data;
- u64 duration;
- struct lia_vcr vcr;
struct camu_renderer *renderer;
void (*callback)(void *, u8, struct camu_codec_stream *stream, void *);
void *userdata;