[vdr] cdfs patches for mp3 plugin

2007-07-10 Thread Stone

Hi,

 Today I tried to build the new 2.6.22 kernel but my external cdfs module
(which is used by the mp3 plugin) failed to compile with the following:

--snip--

/usr/src/modules/cdfs/2.6/root.c: In function 'cdfs_init':
/usr/src/modules/cdfs/2.6/root.c:598: error: 'CLONE_FS' undeclared (first
use in this function)
/usr/src/modules/cdfs/2.6/root.c:598: error: (Each undeclared identifier is
reported only once
/usr/src/modules/cdfs/2.6/root.c:598: error: for each function it appears
in.)
/usr/src/modules/cdfs/2.6/root.c:598: error: 'CLONE_FILES' undeclared (first
use in this function)
/usr/src/modules/cdfs/2.6/root.c:598: error: 'CLONE_SIGHAND' undeclared
(first use in this function)
make[5]: *** [/usr/src/modules/cdfs/2.6/root.o] Error 1
make[4]: *** [_module_/usr/src/modules/cdfs/2.6] Error 2
make[4]: Leaving directory `/var/local/kernel-src/linux-2.6.22.0'
make[3]: *** [all] Error 2

--snip

Would anyone happen to know how to fix this?  Is the cdfs project
currently maintained? I had found patches on vdrportal to fix cdfs for
linux-2.6.21, but I cant seem to find anything for this new problem.

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


[vdr] vdr versionnumbers and plugins

2007-07-10 Thread alex bustamante
Hi,

When i compile my plugins under vdr 1.4.7 most of them get the 
versionnumber 1.4.5. For example: libvdr-ttxtsubs.so.1.4.5. The result 
of this is that i get the following errormessage when i try to launch:
vdr: ./PLUGINS/lib/libvdr-ttxtsubs.so.1.4.5: cannot open shared object 
file: No such file or directory

My solution to this problem is 'ln -s ibvdr-ttxtsubs.so.1.4.7 
ibvdr-ttxtsubs.so.1.4.5'.

However, that seems more like a workaround. Is there a clean solution to 
this? Thanks!
-Alex



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


[vdr] [PATCH] softdevice segfaulting on stream errors

2007-07-10 Thread Artur Skawina
Some time ago the softdevice plugin started crashing when playing video streams
containing errors, both while live viewing and watching recordings.
Today I found a transponder where it reliably occurred within seconds and 
decided
to investigate. The picture buffers used for video were 8-byte aligned, which
happened to work for normal mpeg decoding, but wasn't enough. ffmpeg was
executing SSE instructions when doing error concealment and those were 
segfaulting.
Fix below.

artur


diff -uwp softdevice.noalign/PicBuffer.c softdevice/PicBuffer.c
--- softdevice.noalign/PicBuffer.c  2007-03-13 02:57:19.0 +0100
+++ softdevice/PicBuffer.c  2007-07-10 15:25:38.0 +0200
@@ -316,9 +316,8 @@ bool AllocatePicBuffer(sPicBuffer *buf,P

 if ( !isPlanar(pix_fmt) ) {
 buf-stride[0]=ALIGN(pixel_size*w,16);
-buf-pixel[0]=(uint8_t*)malloc((buf-stride[0]*h)+16);

-if (buf-pixel[0]==NULL) {
+if (posix_memalign(buf-pixel[0], 16, buf-stride[0]*h+16)) {
 printf(could not allocate memory for picture buffer!\n) ;
 exit(-1);
 return false;
@@ -337,9 +336,7 @@ bool AllocatePicBuffer(sPicBuffer *buf,P
 buf-stride[i]= ALIGN(pixel_size*wh_shift,
 STRIDE_ALIGN(h_chroma_shift-h_shift));

-buf-pixel[i]= (uint8_t*)malloc((buf-stride[i]*hv_shift)+16); 
//FIXME 16
-
-if(buf-pixel[i]==NULL) {
+if(posix_memalign(buf-pixel[i], 16, 
(buf-stride[i]*hv_shift)+16)) { //FIXME 16
 printf(could not allocate memory for picture buffer!\n) ;
 exit(-1);
 return false;



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


[vdr] syslogd-ng - /var/log/vdr.log ?

2007-07-10 Thread Gregoire Favre
Hello,

does someone redirect vdr log messages to /var/log/vdr.log using
syslogd-ng ?

If yes, I would like to know how :-)
-- 
Grégoire FAVRE  http://gregoire.favre.googlepages.com  http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] dvbtextsubs 0.2

2007-07-10 Thread Anssi Hannula
bob321 wrote:
 On 7/7/07, listnisse [EMAIL PROTECTED] wrote:
 I have searched the internet (including archive.org) for
 dvbtextsubs-0.2.tar.gz but haven't found it. I would really appreciate if
 some friendly soul on this list would like to send me the file or point me
 to a location.
 
 You are lucky or i have lot of old thing in my hd and a problem with
 del button, or maybe both.
 
 http://membres.lycos.fr/kjhii/tmp/
 
 Its not the original package and i don't remember if i modify the
 code, i just remember i have a problem with french special character,
 so if i change something its related to charmap (if you have a charmap
 problem maybe look the file *.OLD)

I seem to have the original tarball, so I put it here:
http://stuff.onse.fi/dvbtextsubs-0.2.tar.gz

-- 
Anssi Hannula

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


Re: [vdr] syslogd-ng - /var/log/vdr.log ?

2007-07-10 Thread Jan Willies
Gregoire Favre schrieb:
 does someone redirect vdr log messages to /var/log/vdr.log using
 syslogd-ng ?

yep:

destination vdr { file(/var/log/vdr.log); };

filter f_vdr  { program(vdr) or program(noad); };
filter f_syslog { not facility(auth, authpriv, cron)
   and not program(vdr)
   and not program(noad);
   };
filter f_user { facility(user) and not program(vdr) and not \
program(noad); };
filter f_debug { level(debug) and not facility(auth, authpriv, news, \
mail) and not program(vdr); };
filter f_messages {
 level(info,notice,warn)
 and not facility(auth,authpriv,cron,daemon,mail,news)
 and not program(vdr);
};

log { source(s_all); filter(f_vdr); destination(vdr); };


HTH

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


Re: [vdr] mplayer mode for nonstop play

2007-07-10 Thread Igor
  I have on my vdr-harddisc several video-files with video-clips.
  Is it possible to command to MPlayer-plugin to play these files without
  stop - one behind another (By
  turns) ?
 
 
 
 You might be able to make a playlist for mplayer, although I have never
 tried.

find /data/mplayer -type f playlist 

Yes. I created playlist , but if I will choose the file N7 (for example) in the 
list of my clips, really
will start to play clip N1, not N7. It's really non comfortable :(

Igor

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


Re: [vdr] syslogd-ng - /var/log/vdr.log ?

2007-07-10 Thread Gregoire Favre
On Tue, Jul 10, 2007 at 08:50:59PM +0200, Jan Willies wrote:

  does someone redirect vdr log messages to /var/log/vdr.log using
  syslogd-ng ?
 
 yep:

Thank for your answer and those I received privately :-)
-- 
Grégoire FAVRE  http://gregoire.favre.googlepages.com  http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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