mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Another fix to the still picture workaround
This commit is contained in:
parent
3581c20976
commit
c5fac4ed21
@ -276,3 +276,7 @@ Dirk Wiebel <dirk@wiebel.de>
|
|||||||
for reporting a bug in the editing process in case a previously edited file
|
for reporting a bug in the editing process in case a previously edited file
|
||||||
with the same name was manually deleted on a system with more than one video
|
with the same name was manually deleted on a system with more than one video
|
||||||
directory
|
directory
|
||||||
|
|
||||||
|
Gerald Raaf <graaf@attglobal.net>
|
||||||
|
for helping to fix the still picture workaround in case the progress display
|
||||||
|
is active
|
||||||
|
3
HISTORY
3
HISTORY
@ -1179,7 +1179,8 @@ Video Disk Recorder Revision History
|
|||||||
- Added Spanish language texts (thanks to Ruben Nunez Francisco).
|
- Added Spanish language texts (thanks to Ruben Nunez Francisco).
|
||||||
- Fixed resetting the "First day" timer parameter once the timer actually starts
|
- Fixed resetting the "First day" timer parameter once the timer actually starts
|
||||||
recording.
|
recording.
|
||||||
- Fixed the still picture workaround in case the progress display is active.
|
- Fixed the still picture workaround in case the progress display is active
|
||||||
|
(thanks to Gerald Raaf).
|
||||||
- Fixed a problem with accessing the epg.data file before it is fully written
|
- Fixed a problem with accessing the epg.data file before it is fully written
|
||||||
(thanks to Thilo Wunderlich for reporting this one).
|
(thanks to Thilo Wunderlich for reporting this one).
|
||||||
- Now the EPG scan skips channels that have their 'Ca' parameter explicitly set
|
- Now the EPG scan skips channels that have their 'Ca' parameter explicitly set
|
||||||
|
7
dvbapi.c
7
dvbapi.c
@ -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: dvbapi.c 1.169 2002/04/06 15:21:29 kls Exp $
|
* $Id: dvbapi.c 1.170 2002/04/07 09:35:51 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbapi.h"
|
#include "dvbapi.h"
|
||||||
@ -1194,9 +1194,10 @@ void cReplayBuffer::DisplayFrame(uchar *b, int Length)
|
|||||||
CHECK(ioctl(videoDev, VIDEO_STILLPICTURE, &sp));
|
CHECK(ioctl(videoDev, VIDEO_STILLPICTURE, &sp));
|
||||||
#else
|
#else
|
||||||
#define MIN_IFRAME 400000
|
#define MIN_IFRAME 400000
|
||||||
for (int i = MIN_IFRAME / Length + 1; i > 0; i--)
|
for (int i = MIN_IFRAME / Length + 1; i > 0; i--) {
|
||||||
safe_write(videoDev, b, Length);
|
safe_write(videoDev, b, Length);
|
||||||
usleep(10000); // allows the buffer to be displayed in case the progress display is active
|
usleep(1); // allows the buffer to be displayed in case the progress display is active
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user