diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-01 07:47:11 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-01 07:47:11 +0200 |
commit | 95ef9ae3663c7578a7ee127713830bb284a54838 (patch) | |
tree | b7398ace7a0d34bf080775412b9c54b56bcee159 /dxr3demuxdevice.h | |
parent | e44398be1970c48479bef9a0296b479cd71ab5eb (diff) | |
download | vdr-plugin-dxr3-95ef9ae3663c7578a7ee127713830bb284a54838.tar.gz vdr-plugin-dxr3-95ef9ae3663c7578a7ee127713830bb284a54838.tar.bz2 |
simplify cDxr3DemuxDevice::setAudio
Diffstat (limited to 'dxr3demuxdevice.h')
-rw-r--r-- | dxr3demuxdevice.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dxr3demuxdevice.h b/dxr3demuxdevice.h index d544359..6fc768d 100644 --- a/dxr3demuxdevice.h +++ b/dxr3demuxdevice.h @@ -34,8 +34,6 @@ const int AUIDO_MAX_FRAME_SIZE = 5000; const int VIDEO_MAX_FRAME_SIZE = 3000; const uint32_t PRE_BUFFER_LENGTH = 0; -class iAudio; - // ================================== // extract video and audio class cDxr3DemuxDevice : private Uncopyable { @@ -43,7 +41,7 @@ public: cDxr3DemuxDevice(cDxr3Interface& dxr3Device); ~cDxr3DemuxDevice(); - void setAudio(iAudio *a); + void setAudio(iAudio *audio); void Stop(); void Resync(); @@ -74,9 +72,6 @@ protected: cDxr3VideoOutThread* m_pVideoThread; uint32_t m_stopScr; int m_ReUseFrame; // how often a frame should be used - -private: - iAudio *audioOut; }; #endif // __DXR3_DEMUX_DEVICE_H |