mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the frame buffer size to 192KB
This commit is contained in:
parent
43732ece31
commit
06236395e7
5
HISTORY
5
HISTORY
@ -529,12 +529,12 @@ Video Disk Recorder Revision History
|
||||
2001-06-26: Version 0.83
|
||||
|
||||
- Avoiding "Device or resource busy" error message when setting PIDs.
|
||||
- Added Portugese language texts (Paulo Manuel Martins Lopes).
|
||||
- Added Portugese language texts (thanks to Paulo Manuel Martins Lopes).
|
||||
- Recording and replaying Dolby Digital (AC3) sound.
|
||||
- No longer getting stuck when a channel doesn't sync while switching
|
||||
with the 'Up' and 'Down' keys.
|
||||
|
||||
2001-07-14: Version 0.84
|
||||
2001-07-21: Version 0.84
|
||||
|
||||
- Fixed video packet scanning to make it recognize the whole range of
|
||||
allowed video packet ids.
|
||||
@ -552,3 +552,4 @@ Video Disk Recorder Revision History
|
||||
have a second audio PID.
|
||||
- Fixed high system load when displaying a still picture in replay.
|
||||
- Fixed a hanging SVDRP connection if the client dies without issuing QUIT.
|
||||
- Increased the frame buffer size to 192KB.
|
||||
|
4
dvbapi.c
4
dvbapi.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbapi.c 1.84 2001/07/14 09:23:50 kls Exp $
|
||||
* $Id: dvbapi.c 1.85 2001/07/22 09:33:01 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbapi.h"
|
||||
@ -43,7 +43,7 @@ extern "C" {
|
||||
#define VIDEOBUFSIZE (1024*1024)
|
||||
|
||||
// The maximum size of a single frame:
|
||||
#define MAXFRAMESIZE (128*1024)
|
||||
#define MAXFRAMESIZE (192*1024)
|
||||
|
||||
#define FRAMESPERSEC 25
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user