Unresolved symbol problem after installing latest bttv driver

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



Can anybody tell me why I got the 'Unresolved symbol' after installing 
the latest bttv driver? Currently I've installed Red Hat 7.3 on my PC.
But I got no problem at all when running Mandrake 8.2.
Why?
Today's Topics:

   1. RE: multiple inputs - does it work? (Charlie Liu)
   2. RE: multiple inputs - does it work? (Charlie Liu)
   3. RE: multiple inputs - does it work? (Marius Andreiana)
   4. RE: multiple inputs - does it work? (Charlie Liu)
   5. Re: Which API for new application? (Andrey P. Vasilyev)
   6. Re: strange black lines when capturing - success! (Robert Schelander)
   7. Potential fix for field-swap saa7134 problem. (Billy Biggs)
   8. Re: Potential fix for field-swap saa7134 problem. (Stian Jordet)
   9. Question regarding saa7134 and carr_pal (Stian Jordet)
  10. Re: voodootv 200 great picture, static sound (Andrew Chen)
  11. Re: WinTV Go and btaudio (Yurij Sysoev)
  12. Re: nvidia driver, geforce4, winfast tv2000 (Tony Nugent)
  13. Re: FIELD_ALTERNATE (Gabor Kerenyi)
  14. Is a graphics board needed with WinTV? (Michel Bardiaux)
Content-type: multipart/digest; boundary="__--__--"


--__--__--

Message: 1
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
From: "Charlie Liu" <charlie@xxxxxxxxxxxx>
To: <video4linux-list@xxxxxxxxxx>
Subject: RE: multiple inputs - does it work?
Date: Thu, 20 Mar 2003 09:48:52 -0800
Message-ID: <OMEBIANONJKPPNMIBDLHEEFECGAA.charlie@xxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="utf-8"
In-Reply-To: <1048167271.3139.58.camel@aurora>
Importance: Normal
Content-Transfer-Encoding: 8bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

What's the message you got there with "lspci -v"?

-----Original Message-----
From: video4linux-list-admin@xxxxxxxxxx
[mailto:video4linux-list-admin@xxxxxxxxxx]On Behalf Of Marius Andreiana
Sent: Thursday, March 20, 2003 5:35 AM
To: video4linux-list@xxxxxxxxxx
Subject: Re: multiple inputs - does it work?


On Jo, 2003-03-20 at 15:19, Michel Bardiaux wrote:

> I'm interested in such cards. Can you give some brand&model names?
I have a ProVideo card. lspci shows it as
PV-140V PCI 4-CVBS-In Video Capture Card

Searching google for pv-140v gives results with sites which sell it.

> -- 
> Soluţii informatice bazate pe Linux / Linux-based IT solutions
> www.galuna.ro
> 







--__--__--

Message: 2
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
From: "Charlie Liu" <charlie@xxxxxxxxxxxx>
To: <video4linux-list@xxxxxxxxxx>
Subject: RE: multiple inputs - does it work?
Date: Thu, 20 Mar 2003 09:43:47 -0800
Message-ID: <OMEBIANONJKPPNMIBDLHOEFDCGAA.charlie@xxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="utf-8"
In-Reply-To: <1048158746.3449.37.camel@aurora>
Importance: Normal
Content-Transfer-Encoding: 8bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

1) This link would help:
http://www.glue.umd.edu/~ankurm/video4linux/introduction.html

2) Also, you could switch channel like this:
		.
	  struct video_channel vc[10];
		.
	  int chan = 1;	// channel = 1
		.
	  vc[chan].channel = chan;
	  vc[chan].norm = VIDEO_MODE_NTSC; /* 0:PAL 1:NTSC 2:SECAM */
	  if(ioctl(fd, VIDIOCSCHAN, &vc[chan])<0) {
	    perror("ioctl(VIDIOCSCHAN)");
	    return -1;
	  }

-- Charlie 


-----Original Message-----
From: video4linux-list-admin@xxxxxxxxxx
[mailto:video4linux-list-admin@xxxxxxxxxx]On Behalf Of Marius Andreiana
Sent: Thursday, March 20, 2003 3:12 AM
To: video4linux-list@xxxxxxxxxx
Subject: multiple inputs - does it work?


Hi

I looked on list archives and found that capture cards with multiple
inputs don't work ( getting continuous video from all 4 ). I saw the
solutions are to get pictures by switching between inputs with a delay
or use another hardware piece which combines them in one video.

Is this still the current situation?
veejay.sourceforge.net says will support multiple inputs starting with
the tomorrow release, but can it record from all inputs at once?

We are interested in using PV-140V PCI 4-CVBS-In Video Capture Card
( bt878 chip ) for continuous video surveillance. A company which sells
surveillance systems with this card would like to use Linux instead of
the current Windows 2000 solution to lower the prices.

I looked in kernel-doc, it doesn't mention multiple inputs. Initially I
thought we'll have /dev/video0, /dev/video1... (as if there were 4
cards), but that's not the case. Where could I find more documentation
about this?

Thank you,
Marius
-- 
Soluţii informatice bazate pe Linux / Linux-based IT solutions
www.galuna.ro








--__--__--

Message: 3
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Subject: RE: multiple inputs - does it work?
From: Marius Andreiana <marius_list@xxxxxxxxx>
To: video4linux-list@xxxxxxxxxx
In-Reply-To: <OMEBIANONJKPPNMIBDLHEEFECGAA.charlie@xxxxxxxxxxxx>
References: <OMEBIANONJKPPNMIBDLHEEFECGAA.charlie@xxxxxxxxxxxx>
Content-Type: text/plain
Organization: 
Message-Id: <1048183034.3139.136.camel@aurora>
Mime-Version: 1.0
Date: 20 Mar 2003 19:57:14 +0200
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

On Jo, 2003-03-20 at 19:48, Charlie Liu wrote:
> What's the message you got there with "lspci -v"?

00:09.0 Multimedia video controller: Brooktree Corporation Bt878 Video
Capture (rev 11)
        Subsystem: Unknown device 8192:55aa
        Flags: bus master, medium devsel, latency 32, IRQ 11
        Memory at e9001000 (32-bit, prefetchable) [size=4K]
        Capabilities: [44] Vital Product Data
        Capabilities: [4c] Power Management version 2
 
00:09.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture
(rev 11)
        Subsystem: Unknown device 8192:55aa
        Flags: bus master, medium devsel, latency 32, IRQ 11
        Memory at e9000000 (32-bit, prefetchable) [size=4K]
        Capabilities: [44] Vital Product Data
        Capabilities: [4c] Power Management version 2
 





--__--__--

Message: 4
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
From: "Charlie Liu" <charlie@xxxxxxxxxxxx>
To: <kraxel@xxxxxxxxxxx>
Cc: <video4linux-list@xxxxxxxxxx>
Subject: RE: multiple inputs - does it work?
Date: Thu, 20 Mar 2003 10:14:04 -0800
Message-ID: <OMEBIANONJKPPNMIBDLHEEFFCGAA.charlie@xxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="US-ASCII"
Content-Transfer-Encoding: 7bit
In-Reply-To: <878yvaryhn.fsf@xxxxxxxxxxx>
Importance: Normal
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

Hi Gerd,

Is that possible to use any v4l function call to directly access
(read/write) bt878 GPIO? Which function? Any documentation or which source
code I should look at through to know the API interface?

Thanks,

-- Charlie

-----Original Message-----
From: video4linux-list-admin@xxxxxxxxxx
[mailto:video4linux-list-admin@xxxxxxxxxx]On Behalf Of Gerd Knorr
Sent: Thursday, March 20, 2003 4:53 AM
To: video4linux-list@xxxxxxxxxx
Subject: Re: multiple inputs - does it work?


Marius Andreiana <marius_list@xxxxxxxxx> writes:

> I looked in kernel-doc, it doesn't mention multiple inputs. Initially I
> thought we'll have /dev/video0, /dev/video1... (as if there were 4
> cards), but that's not the case.

That is true for all the very cheap cards with just one bt8x8 chip.
But there are also some grabber cards with a PCI-PCI bridge and 4
bt8x8 chips behind it.  These cards will show up with 4 v4l(2) devices
which can be used in parallel (at least as long there is enough PCI
bandwidth ...).

  Gerd

--
/join #zonenkinder







--__--__--

Message: 5
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Date: Thu, 20 Mar 2003 12:14:02 +0300
From: "Andrey P. Vasilyev" <andrey_vasilyev@xxxxxxx>
To: video4linux-list@xxxxxxxxxx
Subject: Re: Which API for new application?
Message-ID: <20030320121402.A31558@xxxxxxxxxxx>
References: <3E789A77.7000103@xxxxxxxx> <3E796255.5010702@xxxxxxxxx> <3E797A08.5040002@xxxxxxxx> <1048148942.8151.9.camel@xxxxxxxxxxxxxxxxxxx> <3E79803C.5040505@xxxxxxxx>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <3E79803C.5040505@xxxxxxxx>; from gcypher@xxxxxxxx on Thu, Mar 20, 2003 at 09:47:56AM +0100
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

On Thu, Mar 20, 2003 at 09:47:56AM +0100, I?aki wrote:
>     Jejeje, you're right. Sorry.  Has someone obtained 20ms capturing 
> fields with a bttv?

May be, you need bttv-0.9.7?
Look at ChangeLog at http://bytesex.org/bttv/changelog9.html

-- 
Andrey Vasilyev




--__--__--

Message: 6
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Message-ID: <0d0601c2ef24$d2977e80$0101a8c0@robert>
From: "Robert Schelander" <rschelander@xxxxxx>
To: <video4linux-list@xxxxxxxxxx>
Cc: "Jukka Tastula" <jukka.tastula@xxxxxxxxxxx>
References: <019f01c2e9b6$cdd39370$0101a8c0@robert> <20030314104834.A11069@xxxxxxxxxxxxxxxxxxxx> <096501c2ecd1$9dd8b420$0101a8c0@robert> <200303181623.57842.jukka.tastula@xxxxxxxxxxx>
Subject: Re: strange black lines when capturing - success!
Date: Thu, 20 Mar 2003 22:07:58 +0100
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

> enabling "Delay transaction" options in my bios.
Thanks, that helped!





--__--__--

Message: 7
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Date: Thu, 20 Mar 2003 20:49:49 -0600
From: Billy Biggs <vektor@xxxxxxxxxxxx>
To: Gerd Knorr <kraxel@xxxxxxxxxxx>
Cc: video4linux-list@xxxxxxxxxx
Subject: Potential fix for field-swap saa7134 problem.
Message-ID: <20030321024949.GD20315@xxxxxxxxxxxx>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

  Below is the current log on the tvtime bug report about swapped fields
from the saa7134 card.  See the note from Tom Zoerner.  Sounds like his
fix will help us out as well.

  Hope this helps,
  -Billy

----- Forwarded message from "SourceForge.net" <noreply@xxxxxxxxxxxxxxx> -----

To: noreply@xxxxxxxxxxxxxxx
From: "SourceForge.net" <noreply@xxxxxxxxxxxxxxx>
Subject: [Tvtime-devel] [ tvtime-Bugs-694863 ] fields swapped with saa7134-based card
Date: Wed, 19 Mar 2003 18:30:24 -0800

Bugs item #694863, was opened at 2003-02-28 16:39
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=506987&aid=694863&group_id=64301

Category: Capture and tuner related
Group: None
Status: Open
Resolution: None
Priority: 7
Submitted By: David Atkinson (psykax)
Assigned to: Billy Biggs (vektor)
Summary: fields swapped with saa7134-based card

Initial Comment:
I have a flyvideo 3000 pal-bg card, using the saa7134
driver 20030218 with card=2. I am using tvtime 0.9.7.

The picture appears jittery in any bob-based mode, it
looks like the odd/even fields are swapped. Is this a
driver issue?

----------------------------------------------------------------------

>Comment By: David Atkinson (psykax)
Date: 2003-03-20 13:30

Message:
Logged In: YES 
user_id=722807

I can confirm that tomzo's hack/work-around fixes the
artifacts. Video in tvtime looks a lot better now (like it
should) with this change applied.

----------------------------------------------------------------------

Comment By: Tom Zoerner (tomzo)
Date: 2003-03-20 05:22

Message:
Logged In: YES 
user_id=396970

I've had the very same problem with VBI since at least
driver version 0.2.2 (the first version I worked with). 
With a teletext stream swapped field output is very obvious,
since you get the bottom half of the text pages before the
upper half (and even before the page header, which renders
the data stream broken and useless.)

I've sent Gerd a work-around last week which solves the
problem for VBI (it's already in the snapshot).  You could
apply the same work-around for video; maybe you could try
this hack just to see if swapped fields are causing the
artefacts: in saa7134-video.c::saa7134_irq_video_done()
change "if ((status & 0x10) == 0x10)" into "if ((status &
0x10) != 0x10)" Note this inversion will only apply to
interlaced capturing, not to single fields.

This is only a work-around because it does not comply with
the definition of the status bits in the data sheet.  Of
course the spec may be wrong, but this has to be
investigated.  BTW it would help if someone could name a
specific driver version which did not have the swapping.

----------------------------------------------------------------------

Comment By: Billy Biggs (vektor)
Date: 2003-03-19 11:14

Message:
Logged In: YES 
user_id=153320

Stian Jordet claims to see this also, but also notes it did
not use to be like this.

zytta on #livid also claims this behavior, and I believe
this person is using the march 13th snapshot.

Time to post to video4linux-list..

----------------------------------------------------------------------

Comment By: David Atkinson (psykax)
Date: 2003-03-01 01:48

Message:
Logged In: YES 
user_id=722807

For output of tvtime -v see bug 694870, file tvtime-err1.
It's the same machine.

----------------------------------------------------------------------

Comment By: Billy Biggs (vektor)
Date: 2003-02-28 23:05

Message:
Logged In: YES 
user_id=153320

It could be a driver issue.  I'll ask about it on the
video4linux-list but I'd like to see the output of 'tvtime
-v' on your machine.  Also, while tvtime is running, hit
'd', it will print out some debug stats.  Include those in
your reply.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=506987&aid=694863&group_id=64301


-------------------------------------------------------
This SF.net email is sponsored by: Does your code think in ink? 
You could win a Tablet PC. Get a free Tablet PC hat just for playing. 
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
_______________________________________________
Tvtime-devel mailing list
Tvtime-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/tvtime-devel

----- End forwarded message -----




--__--__--

Message: 8
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Subject: Re: Potential fix for field-swap saa7134 problem.
From: Stian Jordet <liste@xxxxxxxxx>
To: video4linux-list@xxxxxxxxxx
In-Reply-To: <20030321024949.GD20315@xxxxxxxxxxxx>
References: <20030321024949.GD20315@xxxxxxxxxxxx>
Content-Type: text/plain
Organization: 
Message-Id: <1048215642.2390.2.camel@xxxxxxxxxxxxxxx>
Mime-Version: 1.0
Date: 21 Mar 2003 04:00:42 +0100
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

fre, 2003-03-21 kl. 03:49 skrev Billy Biggs:
>   Below is the current log on the tvtime bug report about swapped fields
> from the saa7134 card.  See the note from Tom Zoerner.  Sounds like his
> fix will help us out as well.

I can, as well, confirm that this seems to help. I'm not sure if it is
"perfect" (scrolling text still seems a little bit jumpy), but somehow I
think that's just me. I guess it is as good as it gets now :) Tvtime is
indeed the best tv-app out there, and the only one that actually is
usable with xinerama :)

*happyhappy*




--__--__--

Message: 9
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Subject: Question regarding saa7134 and carr_pal
From: Stian Jordet <liste@xxxxxxxxx>
To: video4linux-list@xxxxxxxxxx
Content-Type: text/plain
Organization: 
Message-Id: <1048215884.2390.8.camel@xxxxxxxxxxxxxxx>
Mime-Version: 1.0
Date: 21 Mar 2003 04:04:44 +0100
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

in saa7134-tvaudio.c you have this line:

static const int carr_pal[MAX_SCAN]     = { 5500, 6000, 6500 };

why are there three values for pal, and just one each for ntsc and
secam? What is it? I have to change that line to only read 5500, else I
just get noise (like an untuned radio channel) 1 of 4 times I switch
channels. No pattern at all. This is absolutely not an issue for me, I'm
very much capable of changing this myself. I'm just curios about what it
does.

Best regards,
Stian




--__--__--

Message: 10
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Message-ID: <1048226510.50812.P1diJjB5qtBxOfm8HiPchoTWPXVDksyZPjI@xxxxxxxxxxxxxx>
Date: Thu, 20 Mar 2003 22:01:12 -0800
To: video4linux-list@xxxxxxxxxx
From: Andrew Chen <achen-v4l-list@xxxxxxxxxxxxxx>
Subject: Re: voodootv 200 great picture, static sound
In-Reply-To: <Pine.LNX.4.50.0302211735320.3720-100000@xxxxxxxxxxxxxxxxxx
 hian.home>
References: < <Pine.LNX.4.50.0302211029130.2569-100000@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
 <Pine.LNX.4.50.0302211029130.2569-100000@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

Was there ever a solution to this?  I just bought a VoodooTV 200 and I'm 
wondering if I'm going to run into the same problems or not.  :|

At 05:38 PM 2/21/2003 -0500, you wrote:
>OK, I have an update.  I figured out that I can have good sound or good
>picture, but not both.  I found decent audio at fine tune offset of +7.
>But the picture is on the verge of unacceptable.
>
>I updated to bttv 0.7.105.  Any other ideas on how to get good video _and_
>audio?
>
>On Fri, 21 Feb 2003, jklaas wrote:
>
> > I had problems getting sound out of my voodootv 200 and after getting help
> > with that I now just get static on the audio.  The video looks fine.  I
> > noticed that whenever I remove ~/.xawtv and it goes through "searching"
> > for channels I get this:
> >
> > scanning channel list us-cable...
> > 1    ( 73.25 MHz): no station
> > 2    ( 55.25 MHz): no station
> > 3    ( 61.25 MHz): no station
> > 4    ( 67.25 MHz): no station
> > ...
> >
> > I tried fine tuning on a channel (as xawtv assumes you are just using the
> > frequencies listed even if it can't find a station) but didn't get any
> > improvements.
> >
> > I'm running this on the Mandrake 9.1 beta1 using the stock kernel which is
> > 2.4.21 with the Mandrake customizations.  I'm using a KYRO II based video
> > card with fbdev driver.  I can't tell what version of bttv it's using but
> > I think it's 0.7 something.
> >
> > I'm using xawtv 3.85 from Mandrake Cooker.  Should I try downloading the
> > latest version of the bttv driver?  Is the audio tuning offset somehow and
> > is that something I can experiment with using v4lctl?
> >
> > Would having bttv compiled into the kernel help versus having it as a
> > module?  Should I be concentrating on the msp3400 driver instead?
> >
> >
>
>--
>There's lies, damn lies, and then there's Microsoft's marketing.
>
>                                 James Klaas
>
>
>
>--
>video4linux-list mailing list
>Unsubscribe mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe
>https://listman.redhat.com/mailman/listinfo/video4linux-list




--__--__--

Message: 11
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Message-ID: <3E7AA76C.4010902@xxxxxxxxx>
Date: Fri, 21 Mar 2003 11:17:24 +0530
From: Yurij Sysoev <winix@xxxxxxxxx>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030309
MIME-Version: 1.0
To: video4linux-list@xxxxxxxxxx
Subject: Re: WinTV Go and btaudio
References: <006201c2eeec$4a676da0$6d460a0a@chopin>
In-Reply-To: <006201c2eeec$4a676da0$6d460a0a@chopin>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

Hi,

Neil Radisch wrote:

>sox -w -r 32000 -t ossdsp /dev/dsp2 -t ossdsp /dev/dsp
>
>works but the audio crackles badly. Also my dmesg log
>fills up with this:
>
>btaudio: irq loop=1 risc=1, bits: OFLOW RISCI*
>
>Any ideas what the problem might be?
>
You may try to look to the /procs/interrupts - possible, you have  too 
many interrupts sources (like from your sound card, ide, network card, 
..etc) shared with btaudio.

If it so - well, you have welcome to BIOS setup, disable autosetup for 
PCI interrupts and set up its manually. Don't ask me how, because it's 
some kind of voodoo :-(

Regards,
Yurij





--__--__--

Message: 12
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Message-Id: <200303210730.h2L7Uh5h018570@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
To: Video4Linux Mailing list <video4linux-list@xxxxxxxxxx>
From: Tony Nugent <tony@xxxxxxxxxxxxxxxxx>
Organization: Linux Works
In-Reply-To: message-id <87he9ys2j5.fsf@xxxxxxxxxxx> 
	 of Thu, Mar 20 12:25:34 2003
Subject: Re: nvidia driver, geforce4, winfast tv2000 
Date: Fri, 21 Mar 2003 17:30:43 +1000
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

On Thu Mar 20 2003 at 12:25, Gerd Knorr wrote:

> Tony Nugent <tony@xxxxxxxxxxxxxxxxx> writes:
> 
> > can't open /dev/video0: Cannot allocate memory
> > Mar 20 19:31:03 linuxbox kernel: bttv: vmalloc_32(4259840) failed
> > Why can't the memory be allocated by the driver?
> 
> Probably because the nvidia binary-only driver eats insane amounts
> of vmalloc memory.

Hmm.  Thanks.  I've had a look at the nvidia docs, and there doesn't
seem to be a way to "unallocate" any memory.

Since it wants 4Mb of the 64Mb video ram (I assume that's what it
wants), I tried limiting the driver's use to 60Mb in XF86Config
(VideoRam 61440) but that didn't make any difference.

Are there any workarounds possible?

>   Gerd

Thanks.

(With the nvidia driver being binary-only and all, I suspect that
I'm not going to get very far with this problem).

Cheers
Tony




--__--__--

Message: 13
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Content-Type: text/plain;
  charset="iso-8859-1"
From: Gabor Kerenyi <wom@xxxxxxxxxxx>
Organization: Tateyama Ltd
To: video4linux-list@xxxxxxxxxx
Subject: Re: FIELD_ALTERNATE
Date: Fri, 21 Mar 2003 09:53:11 +0100
User-Agent: KMail/1.4.3
References: <200303180828.18942.wom@xxxxxxxxxxx> <874r5yrtkq.fsf@xxxxxxxxxxx>
In-Reply-To: <874r5yrtkq.fsf@xxxxxxxxxxx>
MIME-Version: 1.0
Message-Id: <200303210953.11990.wom@xxxxxxxxxxx>
Content-Transfer-Encoding: 8bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

On Thursday 20 March 2003 15:39, Gerd Knorr wrote:
> Gabor Kerenyi <wom@xxxxxxxxxxx> writes:
> > Any ideas? Maybe I do something wrong...
>
> fetch latest bits from http://bytesex.org/snapshot/

Thanks, it works. Though it doesn't solve my problem
as I thought.
I have to decide the next field (top or bottom) in the IRQ
handler depending whether the bt chip previously
captured a wrong field or not. Now it is decided in qbuf.

Can you give some hint what I have to change in the
driver?

Thanks,

Gabor




--__--__--

Message: 14
Return-Path: <mail@xxxxxxxxxx>
Delivered-To: video4linux-list@xxxxxxxxxxxxxxxxxx
Message-ID: <3E7ADA7A.4030000@xxxxxxxxxxx>
Date: Fri, 21 Mar 2003 10:25:14 +0100
From: Michel Bardiaux <mbardiaux@xxxxxxxxxxx>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0
MIME-Version: 1.0
To: video4linux-list <video4linux-list@xxxxxxxxxx>
Subject: Is a graphics board needed with WinTV?
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Sender: video4linux-list-admin@xxxxxxxxxx
Precedence: bulk
Reply-To: video4linux-list@xxxxxxxxxx
List-Help: <mailto:video4linux-list-request@xxxxxxxxxx?subject=help>
List-Post: <mailto:video4linux-list@xxxxxxxxxx>
List-Subscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=subscribe>
List-Id: Linux and Kernel Video <video4linux-list.redhat.com>
List-Unsubscribe: <https://listman.redhat.com/mailman/listinfo/video4linux-list>,
	<mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe>
List-Archive: <https://listman.redhat.com/mailman/private/video4linux-list/>

To be more precise: we have purchased a Hauppauge WinTV-GO, and on the 
box it says that an advanced graphics board compatible with DirectDraw 
is necessary.

The TV board is now installed and working in a PC with an NVidia Riva 
Ultra 64. But we would like to do video captures with an unattended, 
minimal PC without keyboard, screen, or graphics board.

What is the role of the graphics board with the WinTV-GO? If we remove 
the Nvidia, I realize xawtv and other playback software will no longer 
work, but would video captures with, say, FFMPEG, still work?

-- 
Michel Bardiaux
Peaktime Belgium S.A.  Bd. du Souverain, 191  B-1160 Bruxelles
Tel : +32 2 790.29.41






--__--__----
--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@xxxxxxxxxx?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/video4linux-list


[Index of Archives]     [Linux DVB]     [Video Disk Recorder]     [Asterisk]     [Photo]     [DCCP]     [Netdev]     [Xorg]     [Util Linux NG]     [Xfree86]     [Free Photo Albums]     [Fedora Users]     [Fedora Women]     [ALSA Users]     [ALSA Devel]     [Linux USB]

Powered by Linux