mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
This is mostly a dummy implementation except for the dmx class which should be working. It is intended for testing on PCs with budget DVB cards which don't have a decoder anyway.
13 lines
351 B
C
13 lines
351 B
C
#include <config.h>
|
|
#if HAVE_TRIPLEDRAGON
|
|
#include "../libtriple/playback_td.h"
|
|
#elif HAVE_SPARK_HARDWARE
|
|
#include "../libspark/playback_libeplayer3.h"
|
|
#elif HAVE_AZBOX_HARDWARE
|
|
#include "../azbox/playback.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#include "../generic-pc/playback.h"
|
|
#else
|
|
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
#endif
|