summaryrefslogtreecommitdiff
path: root/ccast/ccmdns.h
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-12-01 10:32:14 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-12-01 10:32:14 +0100
commit4097e27114d227692d53c5d28487e12a3833cd24 (patch)
treed5c2a62c4db97de94f92150340612c64d3997669 /ccast/ccmdns.h
parentf8a0a4e1c775a90c313cb83201eec4cea4e9a7da (diff)
parent5514d94483c98e3320b202b1bb882023a7d12027 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'ccast/ccmdns.h')
-rwxr-xr-x[-rw-r--r--]ccast/ccmdns.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/ccast/ccmdns.h b/ccast/ccmdns.h
index 5144448..7a57808 100644..100755
--- a/ccast/ccmdns.h
+++ b/ccast/ccmdns.h
@@ -20,13 +20,26 @@
* for the purposes of generating Video Test patches.
*/
+/* Chrome cast type */
+typedef enum {
+ cctyp_unkn = 0, /* Unknown */
+ cctyp_1, /* Chromecast 1 or General Video */
+ cctyp_2, /* Chromecast 2 */
+ cctyp_Audio, /* Chromecast Audio or General Audio */
+ cctyp_Ultra, /* Chromecast Ultra */
+ cctyp_Other /* Non Video/Audio output device */
+} cctype;
+
+/* Use cctype2str() to dump type */
+
/* A record of a Chromecast that may be accessed */
struct _ccast_id {
- char *name; /* Chromecast name */
+ char *name; /* Chromecast friendly name */
char *ip; /* IP address as string (ie. "10.0.0.128") */
+ cctype typ; /* Chromecast type (If known) */
}; typedef struct _ccast_id ccast_id;
-/* Get a list of Chromecasts. Return NULL on error */
+/* Get a list of Video out capable Chromecasts. Return NULL on error */
/* Last pointer in array is NULL */
/* Takes 0.5 second to return */
ccast_id **get_ccids(void);