Re: [vdr] VDR consumes about 60% CPU load

2012-07-09 Thread Dave

On 09/07/12 00:14, Martin Neuditschko wrote:

Hello,

I actually recognized that my VDR consumes much CPU load.


Has the machine been rebooted since the leap-second on July 1? My VDR 
machine began to use much more CPU on that date (load average > 6 when 
recording!) but a reboot fixed it.


Dave

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] VDR consumes about 60% CPU load

2012-07-09 Thread MA

Am 09.07.2012 09:55, schrieb Dave:

On 09/07/12 00:14, Martin Neuditschko wrote:

Hello,

I actually recognized that my VDR consumes much CPU load.


Has the machine been rebooted since the leap-second on July 1? My VDR 
machine began to use much more CPU on that date (load average > 6 when 
recording!) but a reboot fixed it.


Dave

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Hmmm:

http://www.heise.de/open/meldung/Schaltsekunde-Linux-kann-einfrieren-1629683.html


--

-


- Ahoi MA -

vdr-...@online.de


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


[vdr] streamdev: protocol violation

2012-07-09 Thread Marx

From some time I have such messages in user.log:

Jul  9 14:45:50 wuwek vdr: [5723] ERROR: streamdev: protocol violation 
(VTP) from 127.0.0.1:49931


What does it mean?

I use VDR version 1.7.28 and vdr-plugin-streamdev-server 0.6.0-2

Marx


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ANNOUNCE] VDR developer version 1.7.28

2012-07-09 Thread Joerg Bornkessel

> VDR developer version 1.7.28 is now available at
.
>"LCARS" is the new default skin of VDR. It requires at least a 4bpp (16 
> color) full
>screen OSD, but you can still operate it if your OSD can handle only fewer 
> colors
>(in which case you may want to switch to the "ST:TNG" or "Classic VDR" 
> skin).

* QA Notice: Package triggers severe warnings which indicate that it
*may exhibit random runtime failures.
* skinlcars.c:518:39: warning: passing NULL to non-pointer argument 2 of 
‘cString ChannelString(const cChannel*, int)’ [-Wconversion-null]

on compile with gcc-4.7.1

-- 
Regards
Gentoo Developer
Joerg Bornkessel 


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ANNOUNCE] VDR developer version 1.7.28

2012-07-09 Thread Carsten Koch

On 07/09/12 18:57, Joerg Bornkessel wrote:

"LCARS" is the new default skin of VDR. It requires at least a 4bpp (16 
color) full
screen OSD, but you can still operate it if your OSD can handle only fewer 
colors
(in which case you may want to switch to the "ST:TNG" or "Classic VDR" 
skin).

* QA Notice: Package triggers severe warnings which indicate that it
*may exhibit random runtime failures.
* skinlcars.c:518:39: warning: passing NULL to non-pointer argument 2 of 
‘cString ChannelString(const cChannel*, int)’ [-Wconversion-null]


I do not know if that is related,
but I noticed that the LCARS skin
sometimes fails to show the recording
name in the progress display (the one
thet shows up when you press OK
during playback).

Carsten.


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ANNOUNCE] VDR developer version 1.7.28

2012-07-09 Thread Klaus Schmidinger

On 09.07.2012 18:57, Joerg Bornkessel wrote:



VDR developer version 1.7.28 is now available at

.

"LCARS" is the new default skin of VDR. It requires at least a 4bpp (16 
color) full
screen OSD, but you can still operate it if your OSD can handle only fewer 
colors
(in which case you may want to switch to the "ST:TNG" or "Classic VDR" 
skin).


* QA Notice: Package triggers severe warnings which indicate that it
*may exhibit random runtime failures.
* skinlcars.c:518:39: warning: passing NULL to non-pointer argument 2 of 
‘cString ChannelString(const cChannel*, int)’ [-Wconversion-null]

on compile with gcc-4.7.1


This has already been reported (I assume by someone on vdr-portal.de, because I 
don't
have a name associated with this fix ;-).

--- skinlcars.c 2012/06/04 08:53:57 2.5
+++ skinlcars.c 2012/06/04 09:35:43 2.6
@@ -515,7 +515,7 @@
   else if (Number)
  ChNumber = cString::sprintf("%d-", Number);
   else
- ChName = ChannelString(NULL, NULL);
+ ChName = ChannelString(NULL, 0);
   osd->DrawText(xc00, yc00, ChNumber, Theme.Color(clrChannelFrameFg), 
frameColor, tallFont, xc02 - xc00, yc02 - yc00, taTop | taRight | taBorder);
   osd->DrawText(xc03, yc00, ChName, Theme.Color(clrChannelName), 
Theme.Color(clrBackground), tallFont, xi - xc03 - lineHeight, 0, taTop | taLeft);
   lastSignalDisplay = 0;


Klaus

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ANNOUNCE] VDR developer version 1.7.28

2012-07-09 Thread Klaus Schmidinger

On 09.07.2012 19:06, Carsten Koch wrote:

On 07/09/12 18:57, Joerg Bornkessel wrote:

"LCARS" is the new default skin of VDR. It requires at least a 4bpp (16 color) 
full
screen OSD, but you can still operate it if your OSD can handle only fewer 
colors
(in which case you may want to switch to the "ST:TNG" or "Classic VDR" skin).

* QA Notice: Package triggers severe warnings which indicate that it
* may exhibit random runtime failures.
* skinlcars.c:518:39: warning: passing NULL to non-pointer argument 2 of 
‘cString ChannelString(const cChannel*, int)’ [-Wconversion-null]


I do not know if that is related,
but I noticed that the LCARS skin
sometimes fails to show the recording
name in the progress display (the one
thet shows up when you press OK
during playback).


I don't think this is related, because these are totally different code areas.
Is this problem reproducible?

Klaus

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] VDR consumes about 60% CPU load

2012-07-09 Thread Martin Neuditschko
On Mon, Jul 09, 2012 at 08:55:06AM +0100, Dave wrote:
> On 09/07/12 00:14, Martin Neuditschko wrote:
> >Hello,
> >
> >I actually recognized that my VDR consumes much CPU load.
> 
> Has the machine been rebooted since the leap-second on July 1? My
> VDR machine began to use much more CPU on that date (load average >
> 6 when recording!) but a reboot fixed it.

Thank you very much. After I rebooted my server, VDR consumes at
maximum 2.0% CPU during recording, so it looks like this was really
the problem.

As I had no real crash on 1. July I thought there is no problem (I
thought, either crash or no problem at all... x_x)

best regards
Martin Neuditschko

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr