File: xvdr_plugin.h

package info (click to toggle)
vdr-plugin-xineliboutput 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,476 kB
  • sloc: ansic: 38,688; sh: 438; makefile: 351; cpp: 11
file content (28 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * xvdr_plugin.h:
 *
 * See the main source file 'xineliboutput.c' for copyright information and
 * how to reach the author.
 *
 * $Id$
 *
 */

#ifndef _XVDR_PLUGIN_H_
#define _XVDR_PLUGIN_H_

#include <xine.h>

#define INPUT_OPTIONAL_DATA_XVDR_FRAMES  9001

#if XINE_VERSION_CODE > 10209 || defined(PLUGIN_XINE_MODULE)
void *input_xvdr_init_class (xine_t *xine, const void *data);
void *demux_xvdr_init_class (xine_t *xine, const void *data);
#else
void *input_xvdr_init_class (xine_t *xine, void *data);
void *demux_xvdr_init_class (xine_t *xine, void *data);
#endif


#endif /* _XVDR_PLUGIN_H_ */