mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling language codes in case there is no audio or Dolby PID
This commit is contained in:
parent
926e83529d
commit
76866e7019
4
HISTORY
4
HISTORY
@ -2626,3 +2626,7 @@ Video Disk Recorder Revision History
|
|||||||
code (see man vdr(5)). Currently this is only stored and not yet used otherwise.
|
code (see man vdr(5)). Currently this is only stored and not yet used otherwise.
|
||||||
- Added a call to cStatus::MsgOsdCurrentItem() to cMenuEditItem::SetValue()
|
- Added a call to cStatus::MsgOsdCurrentItem() to cMenuEditItem::SetValue()
|
||||||
(thanks to Martin Hammerschmid).
|
(thanks to Martin Hammerschmid).
|
||||||
|
|
||||||
|
2004-01-25: Version 1.3.4
|
||||||
|
|
||||||
|
- Fixed handling language codes in case there is no audio or Dolby PID.
|
||||||
|
@ -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: channels.c 1.20 2004/01/25 15:32:08 kls Exp $
|
* $Id: channels.c 1.21 2004/01/25 16:02:13 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "channels.h"
|
#include "channels.h"
|
||||||
@ -320,7 +320,7 @@ static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[]
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
while (a[i] || i == 0) {
|
while (a[i] || i == 0) {
|
||||||
q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]);
|
q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]);
|
||||||
if (n && *n[i])
|
if (a[i] && n && *n[i])
|
||||||
q += sprintf(q, "=%s", n[i]);
|
q += sprintf(q, "=%s", n[i]);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
6
config.h
6
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.184 2004/01/24 10:03:55 kls Exp $
|
* $Id: config.h 1.185 2004/01/25 16:08:23 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -20,8 +20,8 @@
|
|||||||
#include "i18n.h"
|
#include "i18n.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
|
||||||
#define VDRVERSION "1.3.3"
|
#define VDRVERSION "1.3.4"
|
||||||
#define VDRVERSNUM 10303 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10304 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
#define MAXPRIORITY 99
|
#define MAXPRIORITY 99
|
||||||
#define MAXLIFETIME 99
|
#define MAXLIFETIME 99
|
||||||
|
Loading…
x
Reference in New Issue
Block a user