Re: [vdr] About language choices in subtitle and audio selectors

2007-11-25 Thread Klaus Schmidinger
On 11/17/07 00:22, Petri Helin wrote:
> Klaus Schmidinger wrote:
>> On 11/16/07 19:46, Petri Helin wrote:
>>> Klaus Schmidinger wrote:
 On 11/13/07 00:12, Petri Helin wrote:
> Klaus Schmidinger wrote:
>> So VDR just displays what the provider broadcasts - unless, of course,
>> there is a bug in VDR's code, in which case you're welcome to send a
>> fix.
>>
> Well, it seems to work with live TV, but for replay it does not. At 
> least I am unable to see any evidence of VDR looking up the language 
> codes. Is there an alternative method VDR uses when replaying compared 
> to the one used with live TV?
 Please check whether the info.vdr file in your recording contains lines
 like

 X 3 03 ger deutsch

>>> The info.vdr contains the following:
>>>
>>> X 3 11 fin
>>> X 1 01 fin
>>> X 2 03 esl
>>>
>>> The subtitles menu contains options "No subtitles", "fin" and "50".
>> And does the "50" track actually contain subtitles?
>> If so, in what language?
>>
>> Klaus
>>
> 
> Track "50" does contain Spanish subtitles and replaying them works 
> perfectly. It is just the subtitle menu option which has a wrong label.
> 
> -Petri

Does it work if you add the line

X 3 11 esl

to the 'info.vdr' file of that recording?


As to why that line isn't in there to begin with, I don't know.
Maybe you can make some recordings and explicitly verify whether
the subtitle tracks are correctly listed in the info.vdr files.
And if they are not, try to find out why.
A good starting point for some debug output would be SetTrackDescriptions()
in vdr.c.

Klaus

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


Re: [vdr] [ANNOUNCE] DVB-S2 + H.264 support for VDR-1.5.12

2007-11-25 Thread ShorTie
Trying to get this h.264 stuff going and
vdr-1.5.12-h264-syncearly-framespersec-audioindexer-fielddetection.diff and
vdr-1.5.10-genpix-usb.diff aren't playing nice during compile .. :(~

dvbdevice.c: In member function 'bool cDvbTuner::SetFrontend()':
dvbdevice.c:253: error: jump to case label
dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
dvbdevice.c:267: error: jump to case label
dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
dvbdevice.c:285: error: jump to case label
dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
make: *** [dvbdevice.o] Error 1

me lost, lol.
Thankz


No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.503 / Virus Database: 269.16.6/1150 - Release Date: 11/24/2007
5:58 PM
 
  


vdr-1.5.10-genpix-usb.diff
Description: Binary data
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


[vdr] xxv-1.0.1 - Maintenance release

2007-11-25 Thread Andreas Brachold
Hello,

The xxv project team announce this maintenance release of xxv-1.0. 
xxv-1.0.1 is a maintenance release for XXV the "Xtreme eXtension for
VDR", contain only bug fixes and small improvements.

Read the full announcement :  http://xxv.berlios.de/content/view/38/1/


Please note :
Maybe your must check your installed perl modules, because any outdated 
external perl modules are removed from package. 

See also our section with installation hints and tips : 
http://xxv.berlios.de/content/blogcategory/17/33/

Enjoy, 
Andreas


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


Re: [vdr] [ANNOUNCE] DVB-S2 + H.264 support for VDR-1.5.12

2007-11-25 Thread Reinhard Nissl
Hi,

ShorTie schrieb:

> Trying to get this h.264 stuff going and
> vdr-1.5.12-h264-syncearly-framespersec-audioindexer-fielddetection.diff and
> vdr-1.5.10-genpix-usb.diff aren't playing nice during compile .. :(~
> 
> dvbdevice.c: In member function 'bool cDvbTuner::SetFrontend()':
> dvbdevice.c:253: error: jump to case label
> dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
> dvbdevice.c:267: error: jump to case label
> dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
> dvbdevice.c:285: error: jump to case label
> dvbdevice.c:184: error:   crosses initialization of 'unsigned int frequency'
> make: *** [dvbdevice.o] Error 1

This is not a matter of applying both patches -- only
vdr-1.5.10-genpix-usb.diff is wrong. The error is the result of changes
like that:

@@ -173,13 +173,14 @@

 bool cDvbTuner::SetFrontend(void)
 {
-  dvb_frontend_parameters Frontend;
+  dvb_frontend_parameters_new Frontend;

   memset(&Frontend, 0, sizeof(Frontend));

   switch (frontendType) {
-case FE_QPSK: { // DVB-S
-
+case FE_QPSK:  // DVB-S
+case FE_DVB_S:  // DVB-S
+case FE_DVB_S2: // DVB-S
  unsigned int frequency = channel.Frequency();

  if (Setup.DiSEqC) {

See that the variable frequency a few lines above is declared within a
switch statement which requires to use a separate block (= a pair of
curly braces) for this declaration or you will get the above error. The
original code correctly opened a curly brace after "case FE_QPSK:" while
the new one doesn't after "case FE_DVB_S2:".

BTW: this is the matching curly brace that was removed from the orignal
code:

  tuneTimeout = DVBS_TUNE_TIMEOUT;
  lockTimeout = DVBS_LOCK_TIMEOUT;
- }
  break;
 case FE_QAM: { // DVB-C

@@ -280,10 +286,17 @@

Try to add those removed curly braces and give it a try. Don't know
whether it will work correctly afterwards, but it should compile (though
not tested).

Bye.
-- 
Dipl.-Inform. (FH) Reinhard Nissl
mailto:[EMAIL PROTECTED]

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