[vdr] Fix for recordings greater than 2 GB

2009-03-28 Thread Jose Alberto Reguero
The attached patch fix some problems when playing recordings greater than 2 GB.

Jose Alberto
--- vdr-1.7.4/dvbplayer.c	2009-01-25 12:11:39.0 +0100
+++ vdr-1.7.4.new/dvbplayer.c	2009-03-28 00:33:23.0 +0100
@@ -209,7 +209,7 @@
   cFrame *playFrame;
   void TrickSpeed(int Increment);
   void Empty(void);
-  bool NextFile(uchar FileNumber = 0, int FileOffset = -1);
+  bool NextFile(uint16_t FileNumber = 0, off_t FileOffset = -1);
   int Resume(void);
   bool Save(void);
 protected:
@@ -319,7 +319,7 @@
   firstPacket = true;
 }
 
-bool cDvbPlayer::NextFile(uchar FileNumber, int FileOffset)
+bool cDvbPlayer::NextFile(uint16_t FileNumber, off_t FileOffset)
 {
   if (FileNumber  0)
  replayFile = fileName-SetOffset(FileNumber, FileOffset);
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Where do you live and what kind of broadcast do you receive?

2009-03-28 Thread Diego Pierotto
Country: Italy
Transmission: DVB-T and DVB-S
Encoding: MPEG-2 for SD (a lot of them using an Stab H-H rotor), (40 for
DVB-T mostly already present in satellites).

Hardware: 1 Nexus for TV-OUT and Terratec 1400 for DVB-T

-- 
Member of the Italian VDR Wiki
http://vdr.spaghettilinux.org/


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


Re: [vdr] Where do you live and what kind of broadcast do you receive?

2009-03-28 Thread Andrew Herron
Country: UK
Transmission: DVB-T, DVB-S/S2
Encoding: MPEG-2 for SD (150+) and H.264 for HD (about 10-15)

On Wed, Mar 18, 2009 at 8:21 PM, Petri Helin phe...@googlemail.com wrote:

 Hi,

 I have wondered for some time how broad has VDR spread and how is it
 really used. So, if people could post their location and the type of
 broadcast they are receiving, we could get some kind of understanding
 about the state of DVB (or ATSC) as it is now. Just a brief description,
 using myself as an example:

 Country: Finland
 Transmission: DVB-C
 Encoding: MPEG-2 for SD (tens of channels) and h.264 for HD (less than
 10 channels)

 The main point is to get an idea of the standards used across the globe.
 I know that wiki etc give some idea, but you can never beat the first
 hand information.

 -Petri

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




-- 
Convergent Home Technologies Ltd
www.dianemo.co.uk
Tel: +44 (0)1245 330101
Fax: +44 (0)1245 263916

Unit 205 Waterhouse Business Centre
Cromar Way
Chelmsford
Essex CM1 2QE
UK

Watch Dianemo Videos here;
http://www.dianemo.co.uk/index.php/your-home/overview-videos/8-your-home/31-dianemo-overview-videos
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ADMIN] linuxtv.org is moving

2009-03-28 Thread Darren Salt
I demand that Antti Palosaari may or may not have written...

[snip]
 [cr...@localhost v4l-dvb]$ hg push 
 ssh://ant...@linuxtv.org/hg/~anttip/af9015
 pushing to ssh://ant...@linuxtv.org/hg/~anttip/af9015
 searching for changes
 remote: abort: No space left on device
 [cr...@localhost v4l-dvb]$ host linuxtv.org
 linuxtv.org has address 217.160.6.122

 I removed 5-6 my old devel trees, still no space :o

$ rm .hg/dirstate
$ hg purge --all

That gets rid of the working tree but retains all of the data necessary for
use in a repository in which no actual development work takes place. (The
working tree can be recreated, if needed, with hg update.)

-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + Buy local produce. Try to walk or cycle. TRANSPORT CAUSES GLOBAL WARMING.

It is now pitch dark. If you proceed, you will likely fall into a pit.

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


Re: [vdr] [ADMIN] linuxtv.org is moving

2009-03-28 Thread Johannes Stezenbach
On Sat, Mar 28, 2009 at 04:05:55PM +, Darren Salt wrote:
 I demand that Antti Palosaari may or may not have written...
 
 [snip]
  [cr...@localhost v4l-dvb]$ hg push 
  ssh://ant...@linuxtv.org/hg/~anttip/af9015
  pushing to ssh://ant...@linuxtv.org/hg/~anttip/af9015
  searching for changes
  remote: abort: No space left on device
  [cr...@localhost v4l-dvb]$ host linuxtv.org
  linuxtv.org has address 217.160.6.122
 
  I removed 5-6 my old devel trees, still no space :o

Most likely off-topic on this list, but this was solved, see:
http://www.mail-archive.com/linux-me...@vger.kernel.org/msg03569.html

 $ rm .hg/dirstate
 $ hg purge --all

Or better hg update -C null.

 That gets rid of the working tree but retains all of the data necessary for
 use in a repository in which no actual development work takes place. (The
 working tree can be recreated, if needed, with hg update.)

hg push doesn't create a working tree at the destination, thus
there's nothing to get rid of.


Johannes

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


Re: [vdr] [ADMIN] linuxtv.org is moving

2009-03-28 Thread Darren Salt
I demand that Johannes Stezenbach may or may not have written...

 On Sat, Mar 28, 2009 at 04:05:55PM +, Darren Salt wrote:
[snip]
 $ rm .hg/dirstate
 $ hg purge --all

 Or better hg update -C null.

Useful :-)

 That gets rid of the working tree but retains all of the data necessary
 for use in a repository in which no actual development work takes place.
 (The working tree can be recreated, if needed, with hg update.)

 hg push doesn't create a working tree at the destination, thus there's
 nothing to get rid of.

True, but hg clone does. Although I see that it has an option -U...

[M-F-T set, as usual.]

-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + Buy local produce. Try to walk or cycle. TRANSPORT CAUSES GLOBAL WARMING.

Nothing is as useless as a general maxim.

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


[vdr] [FRC] Why are patches for framebuffer not needed anymore in release 0.1.0?

2009-03-28 Thread Paul Menzel
Dear Thomas,


you released version 0.1.0 [1]. Could you please explain to me, why the
framebuffer patches (intelfb, radeonfb) are not needed anymore?


Thanks a lot,

Paul


[1] http://lowbyte.de/vga-sync-fields/vga-sync-fields/


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr