Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / devicedvbinput.inc
blob63e0ab470b61ec38657cbdab9aec522238559f08
1 #ifndef DEVICEDVBINPUT_INC
2 #define DEVICEDVBINPUT_INC
5 class DeviceDVBInput;
8 #define NETTUNE_TIMEOUT 5000000
9 #define BUFFER_FRAGMENTS 24
12 /**
13  * Commands sent to the tuner over the network.
14  * The tuner server always sends the is_busy value when it is opened.
15  **/
17 /**
18  * Flush the socket if we lose sync.
19  **/
20 #define NETTUNE_NONE 0
21 /**
22  * Return signal strength
23  **/
24 #define NETTUNE_SIGNAL 1
25 /**
26  * Read buffer
27  **/
28 #define NETTUNE_READ 2
29 /**
30  * Open the tuner device and set the channel
31  **/
32 #define NETTUNE_OPEN 3
34 /**
35  * Cause the tuner to send a message indicating it is ready for another connection.
36  **/
37 #define NETTUNE_CLOSE 4
40 /**
41  * Set the physical channel to use
42  **/
43 #define NETTUNE_SET_CHANNEL 5
44 /**
45  * Set the pids to use
46  **/
47 #define NETTUNE_SET_AUDIO_PID 6
48 #define NETTUNE_SET_VIDEO_PID 7
50 // Set channel table to use
51 #define NETTUNE_SET_TABLE 8
53 // Channel tables
54 #define NETTUNE_AIR 0
55 #define NETTUNE_CABLE 1
57 #endif
59 //      Local Variables:
60 //      mode: C++
61 //      c-file-style: "linux"
62 //      End: