mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 02:11:04 +02:00
- libtuxtxt: Add extra directory libtuxtxt_mp for neutrino-mp
- Workaround, tuxtxt neutrino-hd incompatible to
framebuffer_ng from neutrino-mp
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9d18316676
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2016-01-15 (Fri, 15 Jan 2016)
Origin message was:
------------------
Adapt neutrino-mp for CST hardware part #2
- libtuxtxt: Add extra directory libtuxtxt_mp for neutrino-mp
- Workaround, tuxtxt neutrino-hd incompatible to
framebuffer_ng from neutrino-mp
------------------
This commit was generated by Migit
25 lines
571 B
C
25 lines
571 B
C
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#if !HAVE_COOL_HARDWARE
|
|
#include <libtuxtxt_mp/teletext.h>
|
|
#else
|
|
|
|
#ifndef __teletext_h__
|
|
#define __teletext_h__
|
|
|
|
int tuxtxt_init();
|
|
void tuxtxt_close();
|
|
void tuxtxt_start(int tpid, int source = 0); // Start caching
|
|
int tuxtxt_stop(); // Stop caching
|
|
int tuxtx_main(int _rc, int pid, int page = 0, int source = 0);
|
|
void tuxtx_stop_subtitle();
|
|
int tuxtx_subtitle_running(int *pid, int *page, int *running);
|
|
void tuxtx_pause_subtitle(bool pause = 1);
|
|
void tuxtx_set_pid(int pid, int page, const char * cc);
|
|
|
|
#endif
|
|
#endif
|