blob: 14cf921f5dba8f23ff824169edd61b13c9d98d91 (
plain)
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
|
#ifndef __YAF_CONTROL_H
#define __YAF_CONTROL_H
#include "inputInterface.h"
#include "outputInterface.h"
#include "inputDecoder.h"
#include <sys/time.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <tdemacros.h>
// prototypes
//extern "C" void control_xplayer();
TDE_EXPORT void yaf_control(InputInterface* input,
OutputInterface* output,
InputDecoder* decoder);
#endif
|