mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Version 1.7.14
- Fixed handling empty strings in cSource::FromString(). - Assigned the source character 'I' to "IPTV" (suggested by Rolf Ahrenberg). - Assigned the source character 'V' to "Analog Video" (suggested by Lars Hanisch). This obsoletes the ANALOGTV patch. - Added support for ATSC devices (thanks to Alex Lasnier). This obsoletes the ATSC patch. - The "Source" item in the "Edit channel" menu now wraps around the list of sources (suggested by Halim Sahin). - Fixed editing channel parameters. - The new setup option "Recording/Delete timeshift recording" controls whether a timeshift recording is automatically deleted after viewing it. This obsoletes the DELTIMESHIFTREC patch. Note that the meaning of the values for this option is different from the DELTIMESHIFTREC patch: 0 means timeshift recordings are not automatically deleted (the default behavior as in previous versions), while 1 means to ask the user whether the recording shall be deleted. - Added cChannel::IsSourceType() to test if a channel's source is of a given type. - Changed the polarization characters in cDvbSourceParam::GetOsdItem() to uppercase. - The full timer file name is now displayed if it ends with "TITLE" or "EPISODE" (pointed out by Udo Richter). - Fixed "attempt to drop wrong frame from ring buffer" when skipping +/- one minute during replay. - The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path.
This commit is contained in:
16
dvbplayer.c
16
dvbplayer.c
@@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbplayer.c 2.20 2010/02/06 12:34:28 kls Exp $
|
||||
* $Id: dvbplayer.c 2.21 2010/03/07 14:24:26 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbplayer.h"
|
||||
@@ -218,6 +218,7 @@ private:
|
||||
bool readIndependent;
|
||||
cFrame *readFrame;
|
||||
cFrame *playFrame;
|
||||
cFrame *dropFrame;
|
||||
void TrickSpeed(int Increment);
|
||||
void Empty(void);
|
||||
bool NextFile(uint16_t FileNumber = 0, off_t FileOffset = -1);
|
||||
@@ -266,6 +267,7 @@ cDvbPlayer::cDvbPlayer(const char *FileName)
|
||||
readIndependent = false;
|
||||
readFrame = NULL;
|
||||
playFrame = NULL;
|
||||
dropFrame = NULL;
|
||||
isyslog("replay %s", FileName);
|
||||
fileName = new cFileName(FileName, false, false, isPesRecording);
|
||||
replayFile = fileName->Open();
|
||||
@@ -322,6 +324,7 @@ void cDvbPlayer::Empty(void)
|
||||
delete readFrame; // might not have been stored in the buffer in Action()
|
||||
readFrame = NULL;
|
||||
playFrame = NULL;
|
||||
dropFrame = NULL;
|
||||
ringBuffer->Clear();
|
||||
ptsIndex.Clear();
|
||||
DeviceClear();
|
||||
@@ -396,7 +399,6 @@ void cDvbPlayer::Action(void)
|
||||
uint32_t LastStc = 0;
|
||||
int LastReadIFrame = -1;
|
||||
int SwitchToPlayFrame = 0;
|
||||
cFrame *DropFrame = NULL;
|
||||
|
||||
while (Running()) {
|
||||
if (WaitingForData)
|
||||
@@ -503,10 +505,10 @@ void cDvbPlayer::Action(void)
|
||||
else
|
||||
Sleep = true;
|
||||
|
||||
if (DropFrame) {
|
||||
if (!eof || (playDir != pdForward && DropFrame->Index() > 0) || (playDir == pdForward && DropFrame->Index() < readIndex)) {
|
||||
ringBuffer->Drop(DropFrame); // the very first and last frame are continously repeated to flush data through the device
|
||||
DropFrame = NULL;
|
||||
if (dropFrame) {
|
||||
if (!eof || (playDir != pdForward && dropFrame->Index() > 0) || (playDir == pdForward && dropFrame->Index() < readIndex)) {
|
||||
ringBuffer->Drop(dropFrame); // the very first and last frame are continously repeated to flush data through the device
|
||||
dropFrame = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,7 +556,7 @@ void cDvbPlayer::Action(void)
|
||||
Sleep = true;
|
||||
}
|
||||
if (pc <= 0) {
|
||||
DropFrame = playFrame;
|
||||
dropFrame = playFrame;
|
||||
playFrame = NULL;
|
||||
p = NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user