├── .gitignore ├── License.txt ├── README.rst ├── component.mk ├── proto ├── cast_channel.pb.c ├── cast_channel.pb.h └── cast_channel.proto ├── samples ├── .cs └── basic │ ├── .gitignore │ ├── .project │ ├── Makefile │ ├── README.rst │ ├── app │ └── application.cpp │ └── component.mk └── src ├── .cs ├── Channel.cpp ├── Client.cpp ├── ClientInfo.cpp ├── Media.cpp ├── Network └── GoogleCast │ ├── Channel.h │ ├── Client.h │ ├── ClientInfo.h │ ├── Connection.h │ ├── Heartbeat.h │ ├── Media.h │ └── Receiver.h └── Receiver.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /.submodule 2 | out/ 3 | -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/License.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/README.rst -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/component.mk -------------------------------------------------------------------------------- /proto/cast_channel.pb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/proto/cast_channel.pb.c -------------------------------------------------------------------------------- /proto/cast_channel.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/proto/cast_channel.pb.h -------------------------------------------------------------------------------- /proto/cast_channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/proto/cast_channel.proto -------------------------------------------------------------------------------- /samples/.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/basic/.gitignore: -------------------------------------------------------------------------------- 1 | cert/ 2 | include/ssl/ 3 | 4 | -------------------------------------------------------------------------------- /samples/basic/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/samples/basic/.project -------------------------------------------------------------------------------- /samples/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/samples/basic/Makefile -------------------------------------------------------------------------------- /samples/basic/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/samples/basic/README.rst -------------------------------------------------------------------------------- /samples/basic/app/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/samples/basic/app/application.cpp -------------------------------------------------------------------------------- /samples/basic/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_DEPENDS := GoogleCast 2 | 3 | ENABLE_SSL := Bearssl 4 | 5 | -------------------------------------------------------------------------------- /src/.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Channel.cpp -------------------------------------------------------------------------------- /src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Client.cpp -------------------------------------------------------------------------------- /src/ClientInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/ClientInfo.cpp -------------------------------------------------------------------------------- /src/Media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Media.cpp -------------------------------------------------------------------------------- /src/Network/GoogleCast/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Channel.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Client.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/ClientInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/ClientInfo.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Connection.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/Heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Heartbeat.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Media.h -------------------------------------------------------------------------------- /src/Network/GoogleCast/Receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Network/GoogleCast/Receiver.h -------------------------------------------------------------------------------- /src/Receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaff/Sming-GoogleCast/HEAD/src/Receiver.cpp --------------------------------------------------------------------------------