Hans Meine wrote:

On Thursday 05 January 2006 14:03, Rob Shortt wrote:
John Molohan wrote:
I'm running freevo 1.5.3 patched for python2.4, with a pvr-150. This
setup had been running nicely until I upgraded from ivtv-0.3.3k to
ivtv-0.4.0 drivers (I wanted to check out Duncans vbi2srt).
[...]
Strange, the ivtv guys are working towards v4l2 compatability but it
looks like a driver change broke something.  I don't have 0.4.1 running
here yet though, but maybe I'll have a chance to update soon.
Note that John wrote he updated to 0.4.0 only, which many of us use successfully.

John, what's stopping you from updating to the latest stable Freevo version?

I now remember that I send a message back in November about a problem with v4l2.py and the AMD64 maybe this problem is not limited to the AMD64.

Here's a patch that I've done for this problem:
http://www.linuxowl.com/patches/freevo-1.5.4-v4l2.py.patch
Python was using 'L' for 64bit ints and the interface wanted 32bit ints.

Regards,
Duncan

--- freevo-1.5.4/src/tv/v4l2.py.orig    2005-10-16 11:18:50.000000000 +0200
+++ freevo-1.5.4/src/tv/v4l2.py 2005-11-13 15:13:15.000000000 +0100
@@ -100,6 +100,7 @@
SETFREQ_NO_V4L = _IOW('v', 15, "L")

QUERYCAP_ST  = "16s32s32sLL16x"
+QUERYCAP_ST  = "16s32s32sII16x" #NEW
QUERYCAP_NO  = _IOR('V',  0, QUERYCAP_ST)

ENUMSTD_ST   = "LQ24s2LL16x"
@@ -112,11 +113,13 @@
ENUMINPUT_ST = "L32sLLLQL16x"
ENUMINPUT_NO = _IOWR('V', 26, ENUMINPUT_ST)

-INPUT_ST  = "L";
+INPUT_ST  = "L"
+INPUT_ST  = "I"; #NEW
GETINPUT_NO  = _IOR('V', 38, INPUT_ST)
SETINPUT_NO  = _IOWR('V', 39, INPUT_ST)

FMT_ST = "L7L4x168x"
+FMT_ST = "L7I4x168x" #NEW
GET_FMT_NO = _IOWR ('V',  4, FMT_ST)
SET_FMT_NO = _IOWR ('V',  5, FMT_ST)




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Freevo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to