mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the value of MAXFRAMESIZE to better suit HD recordings
This commit is contained in:
parent
a397b8a512
commit
fbc3a77d60
@ -1233,6 +1233,7 @@ Reinhard Nissl <rnissl@gmx.de>
|
|||||||
size other than the default size
|
size other than the default size
|
||||||
for reporting a bug in storing the current OSD size in case the
|
for reporting a bug in storing the current OSD size in case the
|
||||||
device has changed it in its setup menu
|
device has changed it in its setup menu
|
||||||
|
for increasing the value of MAXFRAMESIZE to better suit HD recordings
|
||||||
|
|
||||||
Richard Robson <richard_robson@beeb.net>
|
Richard Robson <richard_robson@beeb.net>
|
||||||
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
||||||
|
2
HISTORY
2
HISTORY
@ -6153,3 +6153,5 @@ Video Disk Recorder Revision History
|
|||||||
- Updated vdr.1 to use the new file names in recording directories.
|
- Updated vdr.1 to use the new file names in recording directories.
|
||||||
- Fixed cRecordings::DelByName() to avoid compilation errors with gcc 4.4
|
- Fixed cRecordings::DelByName() to avoid compilation errors with gcc 4.4
|
||||||
(thanks to Matthias Schwarzott).
|
(thanks to Matthias Schwarzott).
|
||||||
|
- Increased the value of MAXFRAMESIZE to better suit HD recordings (thanks to
|
||||||
|
Reinhard Nissl).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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
|
#ifndef __RECORDING_H
|
||||||
@ -207,7 +207,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// The maximum size of a single frame (up to HDTV 1920x1080):
|
// 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
|
// 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
|
// with a 40 bit 'unsigned int', which is 1TB. The actual maximum value
|
||||||
|
Loading…
Reference in New Issue
Block a user