summaryrefslogtreecommitdiff
path: root/ringbuffer.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-06-19 10:34:27 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-06-19 10:34:27 +0200
commitc4e0e6a54a9d55236264634b2e234eefcd618ccd (patch)
treea9b77a6edf9aa16b4e44040b9eeaf1a907c5f961 /ringbuffer.h
parente610c1a01b6796faeaa949e25410bbfa65f26002 (diff)
downloadvdr-c4e0e6a54a9d55236264634b2e234eefcd618ccd.tar.gz
vdr-c4e0e6a54a9d55236264634b2e234eefcd618ccd.tar.bz2
Fixed the description of cRingBufferLinear
Diffstat (limited to 'ringbuffer.h')
-rw-r--r--ringbuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ringbuffer.h b/ringbuffer.h
index 349096fe..f4074886 100644
--- a/ringbuffer.h
+++ b/ringbuffer.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ringbuffer.h 1.14 2004/03/07 13:40:45 kls Exp $
+ * $Id: ringbuffer.h 1.15 2004/06/19 10:32:15 kls Exp $
*/
#ifndef __RINGBUFFER_H
@@ -54,7 +54,7 @@ private:
public:
cRingBufferLinear(int Size, int Margin = 0, bool Statistics = false);
///< Creates a linear ring buffer.
- ///< The buffer will be able to hold at most Size bytes of data, and will
+ ///< The buffer will be able to hold at most Size-Margin-1 bytes of data, and will
///< be guaranteed to return at least Margin bytes in one consecutive block.
virtual ~cRingBufferLinear();
virtual int Available(void);