├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── NEWS ├── README ├── README.md ├── config.h.in ├── configure.ac └── src ├── Makefile.am ├── acceptsocket.cpp ├── acceptsocket.h ├── clientsocket.cpp ├── clientsocket.h ├── configmap.cpp ├── configmap.h ├── demuxer.cpp ├── demuxer.h ├── encoder-broadcom.cpp ├── encoder-broadcom.h ├── enigma_settings.cpp ├── enigma_settings.h ├── filestreaming.cpp ├── filestreaming.h ├── filetranscoding-broadcom.cpp ├── filetranscoding-broadcom.h ├── livestreaming.cpp ├── livestreaming.h ├── livetranscoding-broadcom.cpp ├── livetranscoding-broadcom.h ├── mpegts.cpp ├── mpegts.h ├── queue.cpp ├── queue.h ├── service.cpp ├── service.h ├── stbtraits.cpp ├── stbtraits.h ├── streamproxy.conf ├── streamproxy.cpp ├── streamproxy.sh ├── time_offset.cpp ├── time_offset.h ├── transcoding-enigma.cpp ├── transcoding-enigma.h ├── trap.cpp ├── trap.h ├── types.h ├── url.cpp ├── url.h ├── util.cpp ├── util.h ├── webifrequest.cpp ├── webifrequest.h ├── webrequest.cpp └── webrequest.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | LICENSE -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This software (all of it) is licensed under GPLv2 or later. 2 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/README.md -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/config.h.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/acceptsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/acceptsocket.cpp -------------------------------------------------------------------------------- /src/acceptsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/acceptsocket.h -------------------------------------------------------------------------------- /src/clientsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/clientsocket.cpp -------------------------------------------------------------------------------- /src/clientsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/clientsocket.h -------------------------------------------------------------------------------- /src/configmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/configmap.cpp -------------------------------------------------------------------------------- /src/configmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/configmap.h -------------------------------------------------------------------------------- /src/demuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/demuxer.cpp -------------------------------------------------------------------------------- /src/demuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/demuxer.h -------------------------------------------------------------------------------- /src/encoder-broadcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/encoder-broadcom.cpp -------------------------------------------------------------------------------- /src/encoder-broadcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/encoder-broadcom.h -------------------------------------------------------------------------------- /src/enigma_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/enigma_settings.cpp -------------------------------------------------------------------------------- /src/enigma_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/enigma_settings.h -------------------------------------------------------------------------------- /src/filestreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/filestreaming.cpp -------------------------------------------------------------------------------- /src/filestreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/filestreaming.h -------------------------------------------------------------------------------- /src/filetranscoding-broadcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/filetranscoding-broadcom.cpp -------------------------------------------------------------------------------- /src/filetranscoding-broadcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/filetranscoding-broadcom.h -------------------------------------------------------------------------------- /src/livestreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/livestreaming.cpp -------------------------------------------------------------------------------- /src/livestreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/livestreaming.h -------------------------------------------------------------------------------- /src/livetranscoding-broadcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/livetranscoding-broadcom.cpp -------------------------------------------------------------------------------- /src/livetranscoding-broadcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/livetranscoding-broadcom.h -------------------------------------------------------------------------------- /src/mpegts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/mpegts.cpp -------------------------------------------------------------------------------- /src/mpegts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/mpegts.h -------------------------------------------------------------------------------- /src/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/queue.cpp -------------------------------------------------------------------------------- /src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/queue.h -------------------------------------------------------------------------------- /src/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/service.cpp -------------------------------------------------------------------------------- /src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/service.h -------------------------------------------------------------------------------- /src/stbtraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/stbtraits.cpp -------------------------------------------------------------------------------- /src/stbtraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/stbtraits.h -------------------------------------------------------------------------------- /src/streamproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/streamproxy.conf -------------------------------------------------------------------------------- /src/streamproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/streamproxy.cpp -------------------------------------------------------------------------------- /src/streamproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/streamproxy.sh -------------------------------------------------------------------------------- /src/time_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/time_offset.cpp -------------------------------------------------------------------------------- /src/time_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/time_offset.h -------------------------------------------------------------------------------- /src/transcoding-enigma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/transcoding-enigma.cpp -------------------------------------------------------------------------------- /src/transcoding-enigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/transcoding-enigma.h -------------------------------------------------------------------------------- /src/trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/trap.cpp -------------------------------------------------------------------------------- /src/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/trap.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/types.h -------------------------------------------------------------------------------- /src/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/url.cpp -------------------------------------------------------------------------------- /src/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/url.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/util.h -------------------------------------------------------------------------------- /src/webifrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/webifrequest.cpp -------------------------------------------------------------------------------- /src/webifrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/webifrequest.h -------------------------------------------------------------------------------- /src/webrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/webrequest.cpp -------------------------------------------------------------------------------- /src/webrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksl/streamproxy/HEAD/src/webrequest.h --------------------------------------------------------------------------------