diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-08-16 10:45:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-08-16 10:45:58 +0200 |
commit | fbc3a77d60a61d9c3533cd001b874c635e2a154c (patch) | |
tree | dc25e1895e8758f13f41a57b1546314ecccb726a /recording.h | |
parent | a397b8a512843bade38e5eb1c254ac59ad1c9d92 (diff) | |
download | vdr-fbc3a77d60a61d9c3533cd001b874c635e2a154c.tar.gz vdr-fbc3a77d60a61d9c3533cd001b874c635e2a154c.tar.bz2 |
Increased the value of MAXFRAMESIZE to better suit HD recordings
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.h b/recording.h index 81c72fd4..a895a2d3 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 2.8 2009/05/23 12:14:42 kls Exp $ + * $Id: recording.h 2.9 2009/08/16 10:45:00 kls Exp $ */ #ifndef __RECORDING_H @@ -207,7 +207,7 @@ public: }; // The maximum size of a single frame (up to HDTV 1920x1080): -#define MAXFRAMESIZE (KILOBYTE(512) / TS_SIZE * TS_SIZE) // multiple of TS_SIZE to avoid breaking up TS packets +#define MAXFRAMESIZE (KILOBYTE(1024) / TS_SIZE * TS_SIZE) // multiple of TS_SIZE to avoid breaking up TS packets // The maximum file size is limited by the range that can be covered // with a 40 bit 'unsigned int', which is 1TB. The actual maximum value |