mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: c1f3cb446c
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-11-07 (Sun, 07 Nov 2021)
Origin message was:
------------------
- remove DUCKBOX_HARDWARE
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
19 lines
426 B
C
19 lines
426 B
C
#include <config.h>
|
|
#if HAVE_ARM_HARDWARE
|
|
#include "../libarmbox/playback_libeplayer3.h"
|
|
#elif HAVE_MIPS_HARDWARE
|
|
#include "../libmipsbox/playback_libeplayer3.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../libraspi/playback_lib.h"
|
|
#else
|
|
#if ENABLE_GSTREAMER
|
|
#include "../libgeneric-pc/playback_gst.h"
|
|
#else
|
|
#include "../libgeneric-pc/playback_lib.h"
|
|
#endif
|
|
#endif
|
|
#else
|
|
#error no valid hardware defined
|
|
#endif
|