mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed setting audio track descriptions after a replay has been stopped
This commit is contained in:
parent
a47b2bfc75
commit
9a6e81fc3a
@ -1382,6 +1382,8 @@ Marco Schl
|
|||||||
files than VDR itself
|
files than VDR itself
|
||||||
for adding a missing initialization of 'mutex' in cCiMenu::cCiMenu() and removing
|
for adding a missing initialization of 'mutex' in cCiMenu::cCiMenu() and removing
|
||||||
some superfluous semicolons in ci.c
|
some superfluous semicolons in ci.c
|
||||||
|
for pointing out what caused the problem with audio track descriptions after a
|
||||||
|
replay has been stopped
|
||||||
|
|
||||||
Jürgen Schmitz <j.schmitz@web.de>
|
Jürgen Schmitz <j.schmitz@web.de>
|
||||||
for reporting a bug in displaying the current channel when switching via the SVDRP
|
for reporting a bug in displaying the current channel when switching via the SVDRP
|
||||||
@ -2024,3 +2026,7 @@ Boguslaw Juza <bogdan@uci.agh.edu.pl>
|
|||||||
again
|
again
|
||||||
for reporting a problem with language codes of recorded audio tracks on channels with
|
for reporting a problem with language codes of recorded audio tracks on channels with
|
||||||
multiple tracks
|
multiple tracks
|
||||||
|
|
||||||
|
Ulf Kiener <webmaster@ulf-kiener.de>
|
||||||
|
for reporting a problem with audio track descriptions in the DVD plugin after a
|
||||||
|
replay has been stopped
|
||||||
|
5
HISTORY
5
HISTORY
@ -4969,3 +4969,8 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed handling plugins from cRemote::PutMacro() and cRemote::CallPlugin()
|
- Fixed handling plugins from cRemote::PutMacro() and cRemote::CallPlugin()
|
||||||
(based on a patch from Petri Hintukainen).
|
(based on a patch from Petri Hintukainen).
|
||||||
- Increased the size of the key queue to avoid problems with long key macros.
|
- Increased the size of the key queue to avoid problems with long key macros.
|
||||||
|
|
||||||
|
2006-10-20: Version 1.4.3-3
|
||||||
|
|
||||||
|
- Fixed setting audio track descriptions after a replay has been stopped (reported
|
||||||
|
by Ulf Kiener, thanks to Marco Schlüßler for pointing out what caused the problem).
|
||||||
|
4
config.h
4
config.h
@ -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: config.h 1.274 2006/10/14 10:28:38 kls Exp $
|
* $Id: config.h 1.275 2006/10/20 13:37:37 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.4.3-2"
|
#define VDRVERSION "1.4.3-3"
|
||||||
#define VDRVERSNUM 10403 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10403 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
15
menu.c
15
menu.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: menu.c 1.443 2006/07/23 09:23:11 kls Exp $
|
* $Id: menu.c 1.444 2006/10/20 13:18:38 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -3018,9 +3018,9 @@ static void SetTrackDescriptions(int LiveChannel)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (cReplayControl::LastReplayed()) {
|
else if (cReplayControl::NowReplaying()) {
|
||||||
cThreadLock RecordingsLock(&Recordings);
|
cThreadLock RecordingsLock(&Recordings);
|
||||||
cRecording *Recording = Recordings.GetByName(cReplayControl::LastReplayed());
|
cRecording *Recording = Recordings.GetByName(cReplayControl::NowReplaying());
|
||||||
if (Recording)
|
if (Recording)
|
||||||
Components = Recording->Info()->Components();
|
Components = Recording->Info()->Components();
|
||||||
}
|
}
|
||||||
@ -3806,12 +3806,14 @@ bool cRecordControls::StateChanged(int &State)
|
|||||||
|
|
||||||
// --- cReplayControl --------------------------------------------------------
|
// --- cReplayControl --------------------------------------------------------
|
||||||
|
|
||||||
|
cReplayControl *cReplayControl::currentReplayControl = NULL;
|
||||||
char *cReplayControl::fileName = NULL;
|
char *cReplayControl::fileName = NULL;
|
||||||
char *cReplayControl::title = NULL;
|
char *cReplayControl::title = NULL;
|
||||||
|
|
||||||
cReplayControl::cReplayControl(void)
|
cReplayControl::cReplayControl(void)
|
||||||
:cDvbPlayerControl(fileName)
|
:cDvbPlayerControl(fileName)
|
||||||
{
|
{
|
||||||
|
currentReplayControl = this;
|
||||||
displayReplay = NULL;
|
displayReplay = NULL;
|
||||||
visible = modeOnly = shown = displayFrames = false;
|
visible = modeOnly = shown = displayFrames = false;
|
||||||
lastCurrent = lastTotal = -1;
|
lastCurrent = lastTotal = -1;
|
||||||
@ -3830,6 +3832,8 @@ cReplayControl::~cReplayControl()
|
|||||||
Hide();
|
Hide();
|
||||||
cStatus::MsgReplaying(this, NULL, fileName, false);
|
cStatus::MsgReplaying(this, NULL, fileName, false);
|
||||||
Stop();
|
Stop();
|
||||||
|
if (currentReplayControl == this)
|
||||||
|
currentReplayControl = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cReplayControl::SetRecording(const char *FileName, const char *Title)
|
void cReplayControl::SetRecording(const char *FileName, const char *Title)
|
||||||
@ -3840,6 +3844,11 @@ void cReplayControl::SetRecording(const char *FileName, const char *Title)
|
|||||||
title = Title ? strdup(Title) : NULL;
|
title = Title ? strdup(Title) : NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *cReplayControl::NowReplaying(void)
|
||||||
|
{
|
||||||
|
return currentReplayControl ? fileName : NULL;
|
||||||
|
}
|
||||||
|
|
||||||
const char *cReplayControl::LastReplayed(void)
|
const char *cReplayControl::LastReplayed(void)
|
||||||
{
|
{
|
||||||
return fileName;
|
return fileName;
|
||||||
|
4
menu.h
4
menu.h
@ -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: menu.h 1.85 2006/03/25 12:15:19 kls Exp $
|
* $Id: menu.h 1.86 2006/10/20 13:09:57 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __MENU_H
|
#ifndef __MENU_H
|
||||||
@ -233,6 +233,7 @@ private:
|
|||||||
void TimeSearchProcess(eKeys Key);
|
void TimeSearchProcess(eKeys Key);
|
||||||
void TimeSearch(void);
|
void TimeSearch(void);
|
||||||
void ShowTimed(int Seconds = 0);
|
void ShowTimed(int Seconds = 0);
|
||||||
|
static cReplayControl *currentReplayControl;
|
||||||
static char *fileName;
|
static char *fileName;
|
||||||
static char *title;
|
static char *title;
|
||||||
void ShowMode(void);
|
void ShowMode(void);
|
||||||
@ -251,6 +252,7 @@ public:
|
|||||||
virtual void Hide(void);
|
virtual void Hide(void);
|
||||||
bool Visible(void) { return visible; }
|
bool Visible(void) { return visible; }
|
||||||
static void SetRecording(const char *FileName, const char *Title);
|
static void SetRecording(const char *FileName, const char *Title);
|
||||||
|
static const char *NowReplaying(void);
|
||||||
static const char *LastReplayed(void);
|
static const char *LastReplayed(void);
|
||||||
static void ClearLastReplayed(const char *FileName);
|
static void ClearLastReplayed(const char *FileName);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user