r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git] / cinelerra / audiodvb.h
blobc7abdacafc29e2b3214f679d3c207e87c6344ae1
1 #ifndef AUDIODVB_H
2 #define AUDIODVB_H
5 #include "audiodevice.h"
6 #include "devicedvbinput.inc"
7 #include "vdevicedvb.inc"
11 // This reads audio from the DVB input and output uncompressed audio only.
12 // Used for the LiveAudio plugin and previewing.
17 class AudioDVB : public AudioLowLevel
19 public:
20 AudioDVB(AudioDevice *device);
21 ~AudioDVB();
24 friend class VDeviceDVB;
26 int open_input();
27 int close_all();
28 void reset();
31 DeviceDVBInput *input_thread;
40 #endif