mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: 5a0abfafde
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-11-03 (Fri, 03 Nov 2017)
Origin message was:
------------------
- tuxtxt: align to mp
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
20 lines
601 B
C
20 lines
601 B
C
#ifndef __teletext_h__
|
|
#define __teletext_h__
|
|
#include <config.h>
|
|
|
|
int tuxtxt_init();
|
|
void tuxtxt_close();
|
|
void tuxtxt_start(int tpid, int source = 0); // Start caching
|
|
int tuxtxt_stop(); // Stop caching
|
|
#if HAVE_SPARK_HARDWARE || HAVE_DUCKBOX_HARDWARE
|
|
int tuxtx_main(int pid, int page = 0, int source = 0, bool _isEplayer = false);
|
|
#else
|
|
int tuxtx_main(int pid, int page = 0, int source = 0);
|
|
#endif
|
|
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
|