summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2009-01-25 11:39:43 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2009-01-25 11:39:43 +0100
commitf9c1974f2de4b749ffc698f72331530c3adc65ea (patch)
tree93e3291a0979bcb7dc32703d153b0c183a29837f /HISTORY
parent73be47a4b1dc1b5f2628ea9b9aeb5d161363d981 (diff)
downloadvdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.gz
vdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.bz2
Improved fast-forward/-rewind for audio recordings
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY14
1 files changed, 13 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 8e768db0..88600b75 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5912,7 +5912,7 @@ Video Disk Recorder Revision History
can handle DVB-S2. The #define is still there to allow people with older drivers
who don't need DVB-S2 to use this version without pathcing.
-2009-01-24: Version 1.7.4
+2009-01-25: Version 1.7.4
- Removed the '#define FE_CAN_2ND_GEN_MODULATION', since it was wrong and the
flag is now in the driver, anyway.
@@ -5966,3 +5966,15 @@ Video Disk Recorder Revision History
- The PAT/PMT is now only processed if its version changes (reported by Reinhard
Nissl).
- Fixed handling the maximum video file size (reported by Udo Richter).
+- Improved fast-forward/-rewind for audio recordings. The actual data is now sent
+ to the output device, so that it can be replayed and thus cause the proper delay.
+ For pure audio recordings the audio is no longer muted in fast-forward/-rewind
+ mode, so that some orientation regarding the position within the recording is
+ possible. There may still be some offset in the replay position displayed by the
+ progress indicator when switching from fast-forward/-rewind to play mode, as well
+ as in the current position during normal play mode. This is due to the various
+ buffers between the player and the output device and will be addressed later.
+ Note the new function cDevice::IsPlayingVideo(), which is used to inform the
+ player whether there is video data in the currently replayed stream. If a derived
+ cDevice class reimplements PlayTs() or PlayPes(), it also needs to make sure this
+ new function works as expected.