summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream.h')
-rw-r--r--stream/stream.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/stream/stream.h b/stream/stream.h
index c34da4b61a..df1f15c0b0 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -99,7 +99,18 @@
#define STREAM_CTRL_GET_ANGLE 10
#define STREAM_CTRL_SET_ANGLE 11
#define STREAM_CTRL_GET_NUM_TITLES 12
-
+#define STREAM_CTRL_GET_LANG 13
+
+enum stream_ctrl_type {
+ stream_ctrl_audio,
+ stream_ctrl_sub,
+};
+
+struct stream_lang_req {
+ enum stream_ctrl_type type;
+ int id;
+ char *name;
+};
typedef enum {
streaming_stopped_e,