Re: [vdr] [ANNOUNCE] rpihddevice plugin 1.0.0

2015-10-18 Thread Torgeir Veimo
Do you know any rpi distro this one will be included in? Don't think
it's included in raspian yet?

On 19 October 2015 at 03:51, Thomas Reufer  wrote:
> Am 18.10.2015 um 11:12 schrieb Tobi :
>
>> One minor wish: Please be more specific about the license by including the
>> GPL notice in each source file or at least the README.
>>
>> See the "How to Apply These Terms to Your New Programs" section of the GPL:
>>
>> http://projects.vdr-developer.org/git/vdr-plugin-rpihddevice.git/tree/COPYING#n282
>>
>> and:
>>
>> http://www.gnu.org/licenses/gpl-faq.html#NoticeInSourceFile
>
> Thanks for the hint. I'll add the correct headers for the next release.
>
> Regards,
> Thomas
>
>
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr



-- 
-Tor

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


[vdr] Unable to compile media_build_experimental drivers on Debian stable

2015-10-18 Thread Matthias Lötzke
Hello All,

I has been using http://linuxtv.org/hg/~endriss/media_build_experimental
for quite some time now. Until recently I never encountered a problem.
Now I can't build any more:

> make -C /home/matthias/tmp/media_build_experimental/v4l 
> make[1]: Entering directory '/home/matthias/tmp/media_build_experimental/v4l'
> scripts/make_makefile.pl
> ./scripts/make_myconfig.pl
> perl scripts/make_config_compat.pl /lib/modules/3.16.0-4-amd64/source 
> ./.myconfig ./config-compat.h
> creating symbolic links...
> xargs: ln: Too many levels of symbolic links
^^
> Makefile:264: recipe for target 'links' failed
> make[1]: *** [links] Error 126
> make[1]: Leaving directory '/home/matthias/tmp/media_build_experimental/v4l'
> Makefile:28: recipe for target 'all' failed
> make: *** [all] Error 2
> build failed at ./build line 491.

I am using Debian stable with Kernel 3.16.0-4-amd64. Some hundreds maybe
thousands of symlinks are being created where the build fails.

Any solution or hint would be highly appreciated.


Best regards

Matthias

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


Re: [vdr] Unable to compile media_build_experimental drivers on Debian stable

2015-10-18 Thread Helmut Auer

Am 18.10.2015 um 23:36 schrieb Matthias Lötzke:

Hello All,

I has been using http://linuxtv.org/hg/~endriss/media_build_experimental
for quite some time now. Until recently I never encountered a problem.
Now I can't build any more:


make -C /home/matthias/tmp/media_build_experimental/v4l
make[1]: Entering directory '/home/matthias/tmp/media_build_experimental/v4l'
scripts/make_makefile.pl
./scripts/make_myconfig.pl
perl scripts/make_config_compat.pl /lib/modules/3.16.0-4-amd64/source 
./.myconfig ./config-compat.h
creating symbolic links...
xargs: ln: Too many levels of symbolic links

^^

Makefile:264: recipe for target 'links' failed
make[1]: *** [links] Error 126
make[1]: Leaving directory '/home/matthias/tmp/media_build_experimental/v4l'
Makefile:28: recipe for target 'all' failed
make: *** [all] Error 2
build failed at ./build line 491.


I am using Debian stable with Kernel 3.16.0-4-amd64. Some hundreds maybe
thousands of symlinks are being created where the build fails.

Any solution or hint would be highly appreciated.


To track this down go to the v4l directory and execute:

make -n links

which will show:
echo creating symbolic links...
find ../linux/drivers/media -name '*.[ch]' -type f -print0 | xargs -0n 255 ln 
-sf --target-directory=.
find ../linux/sound -name '*.[ch]' -type f -print0 | xargs -0n 255 ln -sf 
--target-directory=.
find ../linux/drivers/staging -name '*.[ch]' -type f -print0 | xargs -0n 255 ln 
-sf --target-directory=.
find ../linux/drivers/misc -name '*.[ch]' -type f -print0 | xargs -0n 255 ln 
-sf --target-directory=.

execute the find commands to see which one fails for further information use:
ln -sfv
instead of
ln -sf

Regards
Helmut

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


Re: [vdr] [ANNOUNCE] rpihddevice plugin 1.0.0

2015-10-18 Thread Tobi
On 18.10.2015 10:16, Thomas Reufer wrote:

> rpihddevice-1.0.0 is now available!

Great! Thanks!

One minor wish: Please be more specific about the license by including the
GPL notice in each source file or at least the README.

See the "How to Apply These Terms to Your New Programs" section of the GPL:

http://projects.vdr-developer.org/git/vdr-plugin-rpihddevice.git/tree/COPYING#n282

and:

http://www.gnu.org/licenses/gpl-faq.html#NoticeInSourceFile

Thanks,

Tobias

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


[vdr] [ANNOUNCE] rpihddevice plugin 1.0.0

2015-10-18 Thread Thomas Reufer
Hi all

rpihddevice-1.0.0 is now available!

Description:
VDR HD output device for Raspberry Pi. The plugin makes use of the Raspberry
Pi's VideoCore GPU and provides a lightweight implementation for a VDR output
device.

Features:
- MPEG-2 and H264 high-profile video codec up to 1080p30
- MPEG-1 Layer II, (E)AC-3, AAC and DTS audio codec at 32kHz, 44.1kHz or 48kHz 
  with 2.0 (Stereo) or 5.1 channels
- HDMI multi channel LPCM audio output
- HDMI digital audio pass-through
- Analog stereo audio output
- Box (letter-box/pillar-box), Crop and Stretch video display modes
- True color OSD with GPU support
- Video scaling and grabbing support

Download:
http://projects.vdr-developer.org/attachments/download/1966/vdr-rpihddevice-1.0.0.tgz

Homepage:
http://projects.vdr-developer.org/projects/plg-rpihddevice

Recent changes:
2015-10-18: Version 1.0.0
-
- new:
  - updated Hungarian translations (thanks to Füley István)
  - updated Finnish translations (thanks to Rolf Ahrenberg)
  - added Italian translations (thanks to Gerlando Falauto)
  - added French translations (thanks to Cyril Jaquier)
  - added plugin options to specify video and OSD layers
- fixed:
  - don't crop OSD images to pixmap size to allow scaled drawing
  - treat zero as valid PTS value
  - perform save / restore region direct on pixmaps for accelerated OSDs
  - wait for the OVG thread to be ready when creating an accelerated OSD
  - set field sync when output interlaced material at interlaced display mode

Have fun,
Thomas


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


Re: [vdr] [ANNOUNCE] rpihddevice plugin 1.0.0

2015-10-18 Thread Thomas Reufer
Am 18.10.2015 um 11:12 schrieb Tobi :

> One minor wish: Please be more specific about the license by including the
> GPL notice in each source file or at least the README.
> 
> See the "How to Apply These Terms to Your New Programs" section of the GPL:
> 
> http://projects.vdr-developer.org/git/vdr-plugin-rpihddevice.git/tree/COPYING#n282
> 
> and:
> 
> http://www.gnu.org/licenses/gpl-faq.html#NoticeInSourceFile

Thanks for the hint. I'll add the correct headers for the next release.

Regards,
Thomas


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