diff options
author | austriancoder <austriancoder> | 2004-09-13 16:23:16 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-09-13 16:23:16 +0000 |
commit | 05bc5bd2466f42a18fe467ee611f0a2e42bade39 (patch) | |
tree | c330021f2c5bc1b9d15c8d8dd8b13a6fa7ed29a5 /dxr3syncbuffer.c | |
parent | 433938312aba894f3487064387a59336f0e76acc (diff) | |
download | vdr-plugin-dxr3-05bc5bd2466f42a18fe467ee611f0a2e42bade39.tar.gz vdr-plugin-dxr3-05bc5bd2466f42a18fe467ee611f0a2e42bade39.tar.bz2 |
added and converted comments into a doxygen friendly format
Diffstat (limited to 'dxr3syncbuffer.c')
-rw-r--r-- | dxr3syncbuffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dxr3syncbuffer.c b/dxr3syncbuffer.c index 8ea8ccd..e7128ef 100644 --- a/dxr3syncbuffer.c +++ b/dxr3syncbuffer.c @@ -32,6 +32,7 @@ const int DXR3_MAX_VIDEO_FRAME_LENGTH = 4096; const int DXR3_MAX_AUDIO_FRAME_LENGTH = 4096; // ================================== +//! constructor cFixedLengthFrame::cFixedLengthFrame(uint32_t length) : m_count(0), m_length(length), m_pts(0), m_type(ftUnknown) { @@ -103,6 +104,7 @@ uint32_t cFixedLengthFrame::m_staticAudioDataRate = 0; // ================================== +//! constructor cDxr3SyncBuffer::cDxr3SyncBuffer(int frameCount, int frameLength, cDxr3Interface& dxr3Device) : cRingBuffer(frameCount, true), m_dxr3Device(dxr3Device) { m_pBuffer = new cFixedLengthFrame[frameCount](frameLength); |