mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 07:22:57 +02:00
libcoolstream-mt.so version 3.2.0 required
Functions:
- updateOsdScreenInfo()
- GetVideoSystem()
- GetVideoSystemFormatName()
- fbCopy()
- fbFill()
- cs_set_extra_debug()
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9bc2d9b95e
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2017-03-22 (Wed, 22 Mar 2017)
Origin message was:
------------------
hd[1|2]/libcoolstream: Update headers for new libcoolstream functions
libcoolstream-mt.so version 3.2.0 required
Functions:
- updateOsdScreenInfo()
- GetVideoSystem()
- GetVideoSystemFormatName()
- fbCopy()
- fbFill()
- cs_set_extra_debug()
------------------
This commit was generated by Migit
17 lines
508 B
C
17 lines
508 B
C
#ifndef __HELPERS_CS_H__
|
|
#define __HELPERS_CS_H__
|
|
|
|
enum {
|
|
CS_EXTRA_DEBUG_OFF = 0x00000000,
|
|
CS_EXTRA_DEBUG_VIDEO1 = 0x00000001,
|
|
CS_EXTRA_DEBUG_ALL = 0xFFFFFFFF
|
|
};
|
|
|
|
void cs_set_extra_debug(uint32_t mode);
|
|
|
|
const char* __func_ext__f(const char* _func_, int _line_, const char* _file_, bool havePathFile);
|
|
#define __func_ext__ __func_ext__f(__PRETTY_FUNCTION__, __LINE__, NULL, true)
|
|
#define __func_ext_file__ __func_ext__f(__PRETTY_FUNCTION__, __LINE__, __path_file__, true)
|
|
|
|
#endif // __HELPERS_CS_H__
|