summaryrefslogtreecommitdiff
path: root/recorder.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-08-12 14:14:57 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-08-12 14:14:57 +0200
commitd2e0898d64e620886cc0621cc5cb0200767af701 (patch)
treeb39e46aabd1b57970f150d8805c68247c79c0370 /recorder.c
parentce14873e8987c8a0628812cb5dfb1d9814842fd4 (diff)
downloadvdr-d2e0898d64e620886cc0621cc5cb0200767af701.tar.gz
vdr-d2e0898d64e620886cc0621cc5cb0200767af701.tar.bz2
Reduced frame type buffer to 1KB
Diffstat (limited to 'recorder.c')
-rw-r--r--recorder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/recorder.c b/recorder.c
index b5c0b60a..04fc6586 100644
--- a/recorder.c
+++ b/recorder.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recorder.c 2.12 2011/08/07 13:36:05 kls Exp $
+ * $Id: recorder.c 2.13 2011/08/12 14:14:57 kls Exp $
*/
#include "recorder.h"
@@ -119,7 +119,7 @@ void cRecorder::Action(void)
time_t t = time(NULL);
bool InfoWritten = false;
bool FirstIframeSeen = false;
-#define BUFFERSIZE MEGABYTE(1)
+#define BUFFERSIZE KILOBYTE(1)
bool Buffering = false;
int BufferIndex = 0;
int MaxBufferIndex = 0;