mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
no audio / video decoding, yet :-(
Origin commit data
------------------
Branch: master
Commit: 92edef3e48
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-10-05 (Sat, 05 Oct 2013)
------------------
This commit was generated by Migit
17 lines
403 B
C
17 lines
403 B
C
#include <config.h>
|
|
#if HAVE_TRIPLEDRAGON
|
|
#include "../libtriple/audio_td.h"
|
|
#elif HAVE_SPARK_HARDWARE
|
|
#include "../libspark/audio_lib.h"
|
|
#elif HAVE_AZBOX_HARDWARE
|
|
#include "../azbox/audio_lib.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../raspi/audio_lib.h"
|
|
#else
|
|
#include "../generic-pc/audio_lib.h"
|
|
#endif
|
|
#else
|
|
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
#endif
|