[vdr] 1.5.x ShutDown rewrite

2007-03-31 Thread ShorTie
I understand the need for a rewrite of the shutdown sequence for vdr when
using timers and stuff.

But I was wondering if the good old crtl/c was going to make it’s way back
in?

 


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.23/740 - Release Date: 3/30/2007
1:15 PM
 
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


[vdr] Full Screen button for vdr-sxfe

2007-03-31 Thread Rob Davis
Any way of getting a full screen / windows toggle button for vdr-sxfe
(xineliboutput)?

I am assuming this is a question for more than just xineliboutput..

What I'd like is a lirc/keyboard command (full screen) which will toggle
the behaviour.  I am happy to retro edit it into remote.conf.

Maybe:

LIRC.FScreenLIRCCOMMAND
XkeySym.FScreen f

for instance..

-- 
Latest news on http://www.streetcredo.org.uk/rob

Rob Davis

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


Re: [vdr] Xine and ac3 Passthru for dolby digital

2007-03-31 Thread Stephan Loescher
Dave <[EMAIL PROTECTED]> writes:

Hi Dave!

> Im having some problems getting ac3 passthru to work.   Im using fbxine
> with directfb, which works well, for both video and audio in PCM mode,
> but frequent crashes occur with trying to use Dolby Digital. I have set
> the xine plugin to "Dolby On"
> 
> audio.output.speaker_arrangement:Pass Through

I use xine-plugin and bitstreamout-0.85 for the AC3-output.
This works fine!

Stephan.

-- 
[EMAIL PROTECTED]
http://www.loescher-online.de/
Try LEO: http://www.leo.org/

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


Re: [vdr] Full Screen button for vdr-sxfe

2007-03-31 Thread Petri Hintukainen
On Sat, 2007-03-31 at 17:39 +0200, Rob Davis wrote:
> Any way of getting a full screen / windows toggle button for vdr-sxfe
> (xineliboutput)?
> 

Add line
DEFINES += -DXINELIBOUTPUT_FE_TOGGLE_FULLSCREEN
to VDR Make.config file and re-compile xineliboutput.

It will bind keys f/F to fullscreen toggle and d/D to de-interlace
toggle.


- Petri



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


Re: [vdr] Full Screen button for vdr-sxfe

2007-03-31 Thread Petri Hintukainen
On Sat, 2007-03-31 at 17:39 +0200, Rob Davis wrote:
> Any way of getting a full screen / windows toggle button for vdr-sxfe
> (xineliboutput)?
> 

Add line
DEFINES += -DXINELIBOUTPUT_FE_TOGGLE_FULLSCREEN
to VDR Make.config file and re-compile xineliboutput.

It will bind keys f/F to fullscreen toggle and d/D to de-interlace
toggle.


- Petri



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


[vdr] vdr-xineliboutput a small patch

2007-03-31 Thread Matti Horila

Hi all.

I had a small problem with xineliboutput, i didn't find a way to start 
playing a file with mediaplayer from the beginning if the file had been 
earlier watched till the end. Media player always started from end of file.


So i made a small patch, which saves resume position to 0 seconds if 
there was less than 10 seconds till the end of file.


Regards
Matti


--- vdr-1.4.6-vanilla/PLUGINS/src/xineliboutput-1.0.0rc1/media_player.c 
2007-03-17 14:41:20.0 +0200
+++ vdr-1.4.6/PLUGINS/src/xineliboutput-1.0.0rc1/media_player.c 
2007-03-31 21:50:42.0 +0300

@@ -228,7 +228,7 @@

 void cXinelibPlayer::Activate(bool On)
 {
-  int pos = 0, fd = -1;
+  int pos = 0, fd = -1, len = 0;
   if(On) {
 if(m_UseResume && !*m_ResumeFile)
   m_ResumeFile = cString::sprintf("%s.resume", *m_File);
@@ -267,6 +267,12 @@
   pos = cXinelibDevice::Instance().PlayFileCtrl("GETPOS");
   if(pos>=0) {
pos /= 1000;
+   len = cXinelibDevice::Instance().PlayFileCtrl("GETLENGTH");
+   len /= 1000;
+   len -= 10;
+   if( pos > len )
+pos = 0;
+
if(0 <= (fd = open(m_ResumeFile, O_WRONLY | O_CREAT,
   S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH))) {
  if(write(fd, &pos, sizeof(int)) != sizeof(int)) {



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


Re: [vdr] Full Screen button for vdr-sxfe

2007-03-31 Thread Rob Davis
Petri Hintukainen wrote:
> On Sat, 2007-03-31 at 17:39 +0200, Rob Davis wrote:
>> Any way of getting a full screen / windows toggle button for vdr-sxfe
>> (xineliboutput)?
>>
> 
> Add line
> DEFINES += -DXINELIBOUTPUT_FE_TOGGLE_FULLSCREEN
> to VDR Make.config file and re-compile xineliboutput.
> 
> It will bind keys f/F to fullscreen toggle and d/D to de-interlace
> toggle.
> 

Thanks Petri,

But to be fair, I really would like it on the remote..

Can you hijack something else off the remote?


-- 
Latest news on http://www.streetcredo.org.uk/rob

Rob Davis

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