From mpeg2-bounce@linuxtv.org Fri Feb 01 12:10:46 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 15548 invoked by uid 0); 1 Feb 2002 12:10:45 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 12:10:45 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WcMJ-0006FQ-00; Fri, 01 Feb 2002 12:59:59 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 12:56:50 +0100 (CET) Received: from amsfep13-int.chello.nl ([213.46.243.23]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WcJG-0006Ey-00 for ; Fri, 01 Feb 2002 12:56:50 +0100 Received: from wiske ([213.93.58.245]) by amsfep13-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020201115619.YMED2949.amsfep13-int.chello.nl@wiske> for ; Fri, 1 Feb 2002 12:56:19 +0100 Date: Fri, 1 Feb 2002 12:55:05 +0100 From: Bram Stolk To: mpeg2@linuxtv.org Subject: [mpeg2] select patch for kfir.c Message-Id: <20020201125505.36b76537.b.stolk@chello.nl> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 Hello, The kfir device currently does not support select() calls, so I fixed this. Here is an improved implementation of the poll func in kfir.c, which will provide a working select() mechanism. Bram static unsigned int kfir_poll ( struct video_device *dev, struct file *file, poll_table *wait ) { struct kfir_dev *kfir=(struct kfir_dev *) dev; if (kfir->readp == kfir->writep) { // no data return 0; } else { // data return (POLLIN | POLLRDNORM); } } From mpeg2-bounce@linuxtv.org Fri Feb 01 12:19:26 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 20172 invoked by uid 0); 1 Feb 2002 12:19:26 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 12:19:26 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WcVY-0007oN-00; Fri, 01 Feb 2002 13:09:32 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 13:07:58 +0100 (CET) Received: from amsfep11-int.chello.nl ([213.46.243.19]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WcU1-0007nZ-00 for ; Fri, 01 Feb 2002 13:07:57 +0100 Received: from wiske ([213.93.58.245]) by amsfep11-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020201120727.ZIWK2587.amsfep11-int.chello.nl@wiske> for ; Fri, 1 Feb 2002 13:07:27 +0100 Date: Fri, 1 Feb 2002 13:05:53 +0100 From: Bram Stolk To: mpeg2@linuxtv.org Subject: [mpeg2] Fix for kernel-freezes Message-Id: <20020201130553.1fd5babe.b.stolk@chello.nl> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 hi, When using the kfir module, you will have noticed that the kernel freezes regularly for a few seconds or so. Most noticably during module load, and during device closing. (Try e.g. switching virtual consoles when loading kfir.o: it will not work, as ALL system services are halted during this time) This is because the kernel module issues mdelay operations. These are evil operations, and should always be avoided if possible. What's worse... it turns out that most of these delays are not necessary, at least in my setup. For instance, when redefining 'Sleep' to return without delay, has had *no* impact on the functionality of my BMK mpeg encoder card. To improve the responsiveness of the system, I advice you to redefine Sleep() in kfir.o as: static inline void Sleep(int i) { return; } Next, I propose a carefull examination of all remaining mdelay() ops, and see if the can be removed, or else lowered. This can be a labourous task, so if we divide the workload among the members of this mailinglist, we can probably empirically designate those mdelays that are actually needed. So... who's with me? Bram From mpeg2-bounce@linuxtv.org Fri Feb 01 12:29:48 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 21025 invoked by uid 0); 1 Feb 2002 12:29:47 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 12:29:47 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16Wcff-0008Rs-00; Fri, 01 Feb 2002 13:19:59 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 13:18:26 +0100 (CET) Received: from amsfep13-int.chello.nl ([213.46.243.23]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WceA-0008PL-00 for ; Fri, 01 Feb 2002 13:18:26 +0100 Received: from wiske ([213.93.58.245]) by amsfep13-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020201121752.YTMO2949.amsfep13-int.chello.nl@wiske> for ; Fri, 1 Feb 2002 13:17:52 +0100 Date: Fri, 1 Feb 2002 13:16:30 +0100 From: Bram Stolk To: mpeg2@linuxtv.org Subject: [mpeg2] cvs write access Message-Id: <20020201131630.7c7bc333.b.stolk@chello.nl> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 Hi, Would it be possible for me to obtain CVS write access for the kfir driver code? Thanks, Bram From mpeg2-bounce@linuxtv.org Fri Feb 01 14:45:39 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 9084 invoked by uid 0); 1 Feb 2002 14:45:39 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 14:45:39 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16Wemv-00032x-00; Fri, 01 Feb 2002 15:35:37 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 15:33:10 +0100 (CET) Received: from knuth.hsdev.com ([195.193.208.19] ident=root) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WekX-00032r-00 for ; Fri, 01 Feb 2002 15:33:10 +0100 Received: from hsdev.com (nat32@davinci.hsdev.com [195.193.208.20]) by knuth.hsdev.com (8.11.0/8.11.0) with ESMTP id g11EXCN03890 for ; Fri, 1 Feb 2002 15:33:12 +0100 Message-ID: <3C5AA724.1060808@hsdev.com> Date: Fri, 01 Feb 2002 15:33:08 +0100 From: Marcel van der Boom Organization: HS-Development BV User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Re: Fix for kernel-freezes References: <20020201130553.1fd5babe.b.stolk@chello.nl> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: marcel@hsdev.com Precedence: bulk X-list: mpeg2 I'm with you. Good to see that development is still active in the Dutch corner Marcel Bram Stolk wrote: >hi, > >When using the kfir module, you will have noticed >that the kernel freezes regularly for a few seconds or so. >Most noticably during module load, and during device closing. > >(Try e.g. switching virtual consoles when loading kfir.o: > it will not work, as ALL system services are halted during > this time) > >This is because the kernel module issues mdelay operations. >These are evil operations, and should always be avoided if >possible. > >What's worse... it turns out that most of these delays >are not necessary, at least in my setup. > >For instance, when redefining 'Sleep' to return without >delay, has had *no* impact on the functionality of my BMK >mpeg encoder card. > >To improve the responsiveness of the system, I advice you to >redefine Sleep() in kfir.o as: >static inline void Sleep(int i) >{ > return; >} > >Next, I propose a carefull examination of all remaining >mdelay() ops, and see if the can be removed, or else lowered. >This can be a labourous task, so if we divide the workload >among the members of this mailinglist, we can probably >empirically designate those mdelays that are actually needed. > >So... who's with me? > > Bram > > > > -- Marcel van der Boom HS-Development BV Kwartiersedijk 14B Fijnaart, The Netherlands Tel. : 0168-468822 Fax. : 0168-468823 Email: marcel@hsdev.com From mpeg2-bounce@linuxtv.org Fri Feb 01 17:54:21 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 8635 invoked by uid 0); 1 Feb 2002 17:54:21 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 17:54:21 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16Whjf-0001X9-00; Fri, 01 Feb 2002 18:44:27 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 18:42:12 +0100 (CET) Received: from amsfep15-int.chello.nl ([213.46.243.27]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WhhU-0001Vj-00 for ; Fri, 01 Feb 2002 18:42:12 +0100 Received: from wiske ([213.93.58.245]) by amsfep15-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020201174138.FVTF3138.amsfep15-int.chello.nl@wiske>; Fri, 1 Feb 2002 18:41:38 +0100 Date: Fri, 1 Feb 2002 18:40:22 +0100 From: Bram Stolk To: ktsui@cdlsystems.com Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Fw: Fix for kernel-freezes Message-Id: <20020201184022.132ad5c2.b.stolk@chello.nl> In-Reply-To: References: <002b01c1ab37$565e82f0$160e10ac@hades> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 On Fri, 1 Feb 2002 09:54:29 -0700 Kevin Tsui wrote: > I have tried to look at the "mdelay" operations in kfir.c and found that > most of the delay time is around 1 - 10 ms, which I think they are relatively > small time slices and wouldn't be noticed by normal users. However, I found Yep, 10ms is ofcourse a small amount of time in a user's point of view. Then again, it's a seemingly endless ten million processor cycles from the CPU's point of view :-) > there are 2 major "mdelay" in kfir.c, one is delaying by 100ms, the other is > 1000ms (or 1 second). I changed them to 10ms and 100ms respectively and the Yes, and because ADSP inits fail for me, the large mdelays are used for numerous retries in my case. > driver still seems to work fine. (In fact, I think these 2 mdelay are only > used when loading the micro code) > > Anyway, hope this helps. It does... Be sure to tell us when you find a mdelay that *does* mess up the kfir functionality. thanks, Bram > Kevin. > > > ----- Original Message ----- > > From: "Bram Stolk" > > To: > > Sent: Friday, February 01, 2002 5:05 AM > > Subject: [mpeg2] Fix for kernel-freezes > > > > > hi, > > > > > > When using the kfir module, you will have noticed > > > that the kernel freezes regularly for a few seconds or so. > > > Most noticably during module load, and during device closing. > > > > > > (Try e.g. switching virtual consoles when loading kfir.o: > > > it will not work, as ALL system services are halted during > > > this time) > > > > > > This is because the kernel module issues mdelay operations. > > > These are evil operations, and should always be avoided if > > > possible. > > > > > > What's worse... it turns out that most of these delays > > > are not necessary, at least in my setup. > > > > > > For instance, when redefining 'Sleep' to return without > > > delay, has had *no* impact on the functionality of my BMK > > > mpeg encoder card. > > > > > > To improve the responsiveness of the system, I advice you to > > > redefine Sleep() in kfir.o as: > > > static inline void Sleep(int i) > > > { > > > return; > > > } > > > > > > Next, I propose a carefull examination of all remaining > > > mdelay() ops, and see if the can be removed, or else lowered. > > > This can be a labourous task, so if we divide the workload > > > among the members of this mailinglist, we can probably > > > empirically designate those mdelays that are actually needed. > > > > > > So... who's with me? > > > > > > Bram > From mpeg2-bounce@linuxtv.org Fri Feb 01 20:44:01 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 2396 invoked by uid 0); 1 Feb 2002 20:44:01 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Feb 2002 20:44:01 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16WkNR-0004FZ-00; Fri, 01 Feb 2002 21:33:41 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Feb 2002 21:31:54 +0100 (CET) Received: from mail.cdlsystems.com ([207.228.116.20] helo=cdlsystems.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16Wgxt-0006di-00 for ; Fri, 01 Feb 2002 17:55:06 +0100 Received: from there by cdlsystems.com with SMTP (MDaemon.v3.5.3.R) for ; Fri, 01 Feb 2002 09:54:29 -0700 Content-Type: text/plain; charset="iso-8859-1" From: Kevin Tsui Organization: CDL Systems Ltd. To: mpeg2@linuxtv.org, b.stolk@chello.nl Subject: [mpeg2] Fw: Fix for kernel-freezes Date: Fri, 1 Feb 2002 09:54:29 -0700 X-Mailer: KMail [version 1.3.1] References: <002b01c1ab37$565e82f0$160e10ac@hades> In-Reply-To: <002b01c1ab37$565e82f0$160e10ac@hades> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Return-Path: ktsui@cdlsystems.com X-MDaemon-Deliver-To: mpeg2@linuxtv.org Reply-To: ktsui@cdlsystems.com Message-ID: X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 Bram, Thanks for the suggestion, it seems to work fine with the "Sleep" changes. I have tried to look at the "mdelay" operations in kfir.c and found that most of the delay time is around 1 - 10 ms, which I think they are relatively small time slices and wouldn't be noticed by normal users. However, I found there are 2 major "mdelay" in kfir.c, one is delaying by 100ms, the other is 1000ms (or 1 second). I changed them to 10ms and 100ms respectively and the driver still seems to work fine. (In fact, I think these 2 mdelay are only used when loading the micro code) Anyway, hope this helps. Kevin. > ----- Original Message ----- > From: "Bram Stolk" > To: > Sent: Friday, February 01, 2002 5:05 AM > Subject: [mpeg2] Fix for kernel-freezes > > > hi, > > > > When using the kfir module, you will have noticed > > that the kernel freezes regularly for a few seconds or so. > > Most noticably during module load, and during device closing. > > > > (Try e.g. switching virtual consoles when loading kfir.o: > > it will not work, as ALL system services are halted during > > this time) > > > > This is because the kernel module issues mdelay operations. > > These are evil operations, and should always be avoided if > > possible. > > > > What's worse... it turns out that most of these delays > > are not necessary, at least in my setup. > > > > For instance, when redefining 'Sleep' to return without > > delay, has had *no* impact on the functionality of my BMK > > mpeg encoder card. > > > > To improve the responsiveness of the system, I advice you to > > redefine Sleep() in kfir.o as: > > static inline void Sleep(int i) > > { > > return; > > } > > > > Next, I propose a carefull examination of all remaining > > mdelay() ops, and see if the can be removed, or else lowered. > > This can be a labourous task, so if we divide the workload > > among the members of this mailinglist, we can probably > > empirically designate those mdelays that are actually needed. > > > > So... who's with me? > > > > Bram From mpeg2-bounce@linuxtv.org Mon Feb 04 18:16:41 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 23601 invoked by uid 0); 4 Feb 2002 18:16:41 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 4 Feb 2002 18:16:41 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16XnVM-0008E2-00; Mon, 04 Feb 2002 19:06:12 +0100 Received: with LISTAR (v0.129a; list mpeg2); Mon, 04 Feb 2002 19:02:38 +0100 (CET) Received: from dial-213-168-73-27.netcologne.de ([213.168.73.27] helo=rjkm.de) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16XnRt-0008Do-00 for ; Mon, 04 Feb 2002 19:02:37 +0100 Received: (from rjkm@localhost) by rjkm.de (8.12.0.Beta19/8.12.0.Beta19) id g14I2atb001895; Mon, 4 Feb 2002 19:02:36 +0100 From: Ralph Metzler Message-ID: <15454.52412.468814.881978@gargle.gargle.HOWL> Date: Mon, 4 Feb 2002 19:02:36 +0100 To: ktsui@cdlsystems.com Cc: mpeg2@linuxtv.org, b.stolk@chello.nl Subject: [mpeg2] Fw: Fix for kernel-freezes In-Reply-To: References: <002b01c1ab37$565e82f0$160e10ac@hades> X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: rjkm@convergence.de Precedence: bulk X-list: mpeg2 Kevin Tsui writes: > > Bram, > > Thanks for the suggestion, it seems to work fine with the "Sleep" changes. > > I have tried to look at the "mdelay" operations in kfir.c and found that > most of the delay time is around 1 - 10 ms, which I think they are relatively > small time slices and wouldn't be noticed by normal users. However, I found > there are 2 major "mdelay" in kfir.c, one is delaying by 100ms, the other is > 1000ms (or 1 second). I changed them to 10ms and 100ms respectively and the > driver still seems to work fine. (In fact, I think these 2 mdelay are only > used when loading the micro code) > There are no mdelays larger than 10 ms in the driver. All longer delays are done with a schedule_timeout() and they are in there either because it would otherwise lock up on my board (at the time I tested it and with 2 Kfir cards inserted) or because it was used in the Windoze driver. If you change any delays please make sure that this still works on most boards and at least mention the original value in a comment. Ralph From mpeg2-bounce@linuxtv.org Wed Feb 06 14:17:42 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 6556 invoked by uid 0); 6 Feb 2002 14:17:42 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 6 Feb 2002 14:17:42 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YSrk-0000gy-00; Wed, 06 Feb 2002 15:16:04 +0100 Received: with LISTAR (v0.129a; list mpeg2); Wed, 06 Feb 2002 15:12:11 +0100 (CET) Received: from mta04.btfusion.com ([62.172.195.246] helo=btclick.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YSny-0000bp-00 for ; Wed, 06 Feb 2002 15:12:11 +0100 Received: from komcept.com ([217.36.115.19]) by btclick.com (Netscape Messaging Server 4.15) with ESMTP id GR47EG02.IDM for ; Wed, 6 Feb 2002 14:11:05 +0000 Message-ID: <3C6139C5.2070705@komcept.com> Date: Wed, 06 Feb 2002 14:12:21 +0000 From: MAL Organization: Komcept Solutions Ltd. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.7) Gecko/20011226 X-Accept-Language: en-gb MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] KFir MPEG2 editing Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: mal@komcept.com Precedence: bulk X-list: mpeg2 This is a last call for aid... I am trying to cut sections from an MPEG2 generated by a KFir. By my understanding, the KFir uses bi-directional frame coding (IBP), as opposed to progressive frame coding, which makes cutting the files at clean boundaries very hard. I need to be able to cut a file into sections, (for burning to cd progressively), and those sections need to be sequential without loss. I have written a program to almost completely dissect an MPEG2, (everything bar decoding the actual pictures), and output a section, but regardless of whether I set the group of pictures' header's 'broken_link' flag, I still get corrupt starts to the beginning of my sections. The closed_gop flag within the mpeg2 is set, meaning the fkir doesn't encode cleanly cuttable group_of_pictures. Does anyone know of a way I can "fix" the mpeg2 to have cleanly cuttable boundaries, or will I need to re-encode the whole file? _Any_ help on this subject would be great, I refuse to believe there is no way to do it :) Also, if anyone knows whether you can get the KFir to encode differently, shout me pls. All the best, MAL Komcept Solutions Ltd. United Kingdom From mpeg2-bounce@linuxtv.org Wed Feb 06 15:03:48 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 21367 invoked by uid 0); 6 Feb 2002 15:03:48 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 6 Feb 2002 15:03:48 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YTaQ-0006CX-00; Wed, 06 Feb 2002 16:02:14 +0100 Received: with LISTAR (v0.129a; list mpeg2); Wed, 06 Feb 2002 16:00:45 +0100 (CET) Received: from mail.ycn.com ([212.88.160.3]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YSoZ-0000h1-00 for ; Wed, 06 Feb 2002 15:12:47 +0100 Received: from sunamic.com (wst01.sunamic.com [212.88.170.158]) by mail.ycn.com (8.11.3/8.9.3/Debian 8.9.3-21) with SMTP id g16EDA129063 for ; Wed, 6 Feb 2002 15:13:11 +0100 Received: from mare ([192.168.0.147]) by sunamic.com ( IA Mail Server Version: 3.1.3. Build: 1065 ) ) ; 06 Feb 2002 14:13:39 UT From: "Martin Reisenhofer" To: Subject: [mpeg2] Hardware lockup Date: Wed, 6 Feb 2002 15:13:39 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 Hi, I bought a Kfir Card, i installed the drivers on a debian linux with a 2.2.19 kernel. When i try to start the command "cat /dev/video temp.mpg " the linux hang on. What should i do? regadly Martin From mpeg2-bounce@linuxtv.org Thu Feb 07 09:21:43 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 20947 invoked by uid 0); 7 Feb 2002 09:21:43 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 7 Feb 2002 09:21:43 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YkjX-0007kc-00; Thu, 07 Feb 2002 10:20:47 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 07 Feb 2002 10:18:40 +0100 (CET) Received: from 12-224-82-161.client.attbi.com ([12.224.82.161] helo=stompy.outflux.net ident=no-body) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YWlR-0006sx-00 for ; Wed, 06 Feb 2002 19:25:49 +0100 Received: (from nemesis@localhost) by stompy.outflux.net (8.11.2/8.11.2) id g16IOtB21758; Wed, 6 Feb 2002 10:24:55 -0800 Date: Wed, 6 Feb 2002 10:24:55 -0800 From: Kees Cook To: MAL Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: KFir MPEG2 editing Message-ID: <20020206102455.A21726@cpoint.net> References: <3C6139C5.2070705@komcept.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C6139C5.2070705@komcept.com>; from mal@komcept.com on Wed, Feb 06, 2002 at 02:12:21PM +0000 X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 GOPchop will do this for you. I designed it using kfir streams, so I think most of the bugs are worked out. Check: gopchop.sourceforge.net I haven't found a single decoder that actually pays attention to the "broken_link" flag. I find this _highly_ irritating. Since GOPs are optional headers, I assume that these decoders are just cutting corners and ignoring the GOPs. To solve this problem in GOPchop, I would do two things: the "correct" thing, which is setting the "broken_link" flag, and then I actively remove all the B-frames from the video stream that follow the first I-frame. This appears to totally do the trick. I also set the "closed" bit, since now the GOP is closed. Can you share your code with us? In my most recent CVS, I wrote "mpegcat" which will spit out all kinds of information about an MPEG2-PS file, reporting locations, sizes, and flags of all the headers. On Wed, Feb 06, 2002 at 02:12:21PM +0000, MAL wrote: > This is a last call for aid... > I am trying to cut sections from an MPEG2 generated by a KFir. > By my understanding, the KFir uses bi-directional frame coding (IBP), as > opposed to progressive frame coding, which makes cutting the files at > clean boundaries very hard. > I need to be able to cut a file into sections, (for burning to cd > progressively), and those sections need to be sequential without loss. > > I have written a program to almost completely dissect an MPEG2, > (everything bar decoding the actual pictures), and output a section, but > regardless of whether I set the group of pictures' header's > 'broken_link' flag, I still get corrupt starts to the beginning of my > sections. The closed_gop flag within the mpeg2 is set, meaning the fkir > doesn't encode cleanly cuttable group_of_pictures. > > Does anyone know of a way I can "fix" the mpeg2 to have cleanly cuttable > boundaries, or will I need to re-encode the whole file? > > _Any_ help on this subject would be great, I refuse to believe there is > no way to do it :) > > Also, if anyone knows whether you can get the KFir to encode > differently, shout me pls. > > All the best, > > MAL > Komcept Solutions Ltd. > United Kingdom > -- Kees Cook @outflux.net From mpeg2-bounce@linuxtv.org Thu Feb 07 11:10:48 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 22844 invoked by uid 0); 7 Feb 2002 11:10:48 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 7 Feb 2002 11:10:48 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YmQv-00087m-00; Thu, 07 Feb 2002 12:09:41 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 07 Feb 2002 12:08:45 +0100 (CET) Received: from mta04.btfusion.com ([62.172.195.246] helo=btclick.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16YmQ1-00087G-00 for ; Thu, 07 Feb 2002 12:08:45 +0100 Received: from komcept.com ([217.36.115.19]) by btclick.com (Netscape Messaging Server 4.15) with ESMTP id GR5TLH01.GH7; Thu, 7 Feb 2002 11:08:05 +0000 Message-ID: <3C62605F.3000602@komcept.com> Date: Thu, 07 Feb 2002 11:09:19 +0000 From: MAL Organization: Komcept Solutions Ltd. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.7) Gecko/20011226 X-Accept-Language: en-gb MIME-Version: 1.0 To: mpeg2@linuxtv.org CC: Kees Cook Subject: [mpeg2] Re: KFir MPEG2 editing References: <3C6139C5.2070705@komcept.com> <20020206102455.A21726@cpoint.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: mal@komcept.com Precedence: bulk X-list: mpeg2 So you're basically removing data from the stream to smoothen it out... ? If that's the case, is it noticable? I ask because this is for an interview recorder, and it's pretty important that nothing is missed. I'd think about using GOPchop if it had a command line interface :) Sorry, I can't release the code as it's part of a commercial project. Regards, MAL Kees Cook wrote: >GOPchop will do this for you. I designed it using kfir streams, so I >think most of the bugs are worked out. Check: > >gopchop.sourceforge.net > > >I haven't found a single decoder that actually pays attention to the >"broken_link" flag. I find this _highly_ irritating. Since GOPs are >optional headers, I assume that these decoders are just cutting corners >and ignoring the GOPs. To solve this problem in GOPchop, I would do two >things: the "correct" thing, which is setting the "broken_link" flag, and >then I actively remove all the B-frames from the video stream that follow >the first I-frame. This appears to totally do the trick. I also set the >"closed" bit, since now the GOP is closed. > >Can you share your code with us? In my most recent CVS, I wrote "mpegcat" >which will spit out all kinds of information about an MPEG2-PS file, >reporting locations, sizes, and flags of all the headers. > >On Wed, Feb 06, 2002 at 02:12:21PM +0000, MAL wrote: > >>This is a last call for aid... >>I am trying to cut sections from an MPEG2 generated by a KFir. >>By my understanding, the KFir uses bi-directional frame coding (IBP), as >>opposed to progressive frame coding, which makes cutting the files at >>clean boundaries very hard. >>I need to be able to cut a file into sections, (for burning to cd >>progressively), and those sections need to be sequential without loss. >> >>I have written a program to almost completely dissect an MPEG2, >>(everything bar decoding the actual pictures), and output a section, but >>regardless of whether I set the group of pictures' header's >>'broken_link' flag, I still get corrupt starts to the beginning of my >>sections. The closed_gop flag within the mpeg2 is set, meaning the fkir >>doesn't encode cleanly cuttable group_of_pictures. >> >>Does anyone know of a way I can "fix" the mpeg2 to have cleanly cuttable >>boundaries, or will I need to re-encode the whole file? >> >>_Any_ help on this subject would be great, I refuse to believe there is >>no way to do it :) >> >>Also, if anyone knows whether you can get the KFir to encode >>differently, shout me pls. >> >>All the best, >> >>MAL >>Komcept Solutions Ltd. >>United Kingdom >> > From mpeg2-bounce@linuxtv.org Thu Feb 14 14:55:38 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 6856 invoked by uid 0); 14 Feb 2002 14:55:38 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 14 Feb 2002 14:55:38 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16bNGe-0004oo-00; Thu, 14 Feb 2002 15:53:48 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 14 Feb 2002 15:49:22 +0100 (CET) Received: from uni-sb.de ([134.96.252.33]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16bNCL-0004oi-00 for ; Thu, 14 Feb 2002 15:49:21 +0100 Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.12.2/2002020400) with ESMTP id g1EEnLj10435 for ; Thu, 14 Feb 2002 15:49:21 +0100 (CET) Received: from mail.cs.uni-sb.de (IDENT:ypJAek+do23ExCwYQIfdZUAKURY3TZR1@mail.cs.uni-sb.de [134.96.254.200]) by cs.uni-sb.de (8.12.1/2001121800) with ESMTP id g1EEnKs15849 for ; Thu, 14 Feb 2002 15:49:20 +0100 (CET) Received: from graphics.cs.uni-sb.de (graphics.cs.uni-sb.de [134.96.249.10]) by mail.cs.uni-sb.de (8.12.2/2002011500) with ESMTP id g1EEnIO26833 for ; Thu, 14 Feb 2002 15:49:18 +0100 (CET) Received: from graphics.cs.uni-sb.de (localhost [127.0.0.1]) by localhost (8.12.0.Beta19/8.12.0.Beta19/Debian 8.12.0.Beta19) with ESMTP id g1EEnIiA027166 for ; Thu, 14 Feb 2002 15:49:18 +0100 Received: (from msand@localhost) by graphics.cs.uni-sb.de (8.12.0.Beta19/8.12.0.Beta19/Debian 8.12.0.Beta19) id g1EEnIec027165 for mpeg2@linuxtv.org; Thu, 14 Feb 2002 15:49:18 +0100 From: Markus Sand Date: Thu, 14 Feb 2002 15:49:18 +0100 To: mpeg2@linuxtv.org Subject: [mpeg2] KFir-Driver with Kernel newer than 2.4.5? Message-ID: <20020214154918.A24058@graphics.cs.uni-sb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.20i X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: msand@graphics.cs.uni-sb.de Precedence: bulk X-list: mpeg2 Hi, I wondered if anyone has been able to compile the kfir-driver with the newest linux-kernel (2.4.17)? I use the kernel-sources from kernel.org, and the CVS-Version of the kfir-driver. It compiles wonderful with kernel-2.4.5, but says things like i2c-core.c:1372: parse error before `this_object_must_be_defined_as_export_objs_in_the_Makefile' because in the newer kernel sources, the makro "EXPORT_SYMBOL" is translated to "this_object_must_be_defined_as_export_objs_in_the_Makefile", if "EXPORT_SYMTAB" is not defined. I don't know what this define ("EXPORT_SYMTAB") does mean, but adding the line #define EXPORT_SYMTAB before the include-directive for linux/module.h lead to a compileable and working piece of code. Has anyone a suggestion how to solve this PROPERLY? Thanks, Markus. From mpeg2-bounce@linuxtv.org Thu Feb 14 16:29:46 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 3917 invoked by uid 0); 14 Feb 2002 16:29:46 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 14 Feb 2002 16:29:46 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16bOjz-0002az-00; Thu, 14 Feb 2002 17:28:11 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 14 Feb 2002 17:24:37 +0100 (CET) Received: from bishop.cpoint.net ([66.114.220.77] helo=mailhost.cpoint.net) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16bOgX-0002ap-00 for ; Thu, 14 Feb 2002 17:24:37 +0100 Received: [from abode.cpoint.net (IDENT:root@horsie.cpoint.net [66.114.220.76]) by mailhost.cpoint.net (/) with ESMTP id g1EGOVs25429; Thu, 14 Feb 2002 10:24:31 -0600] Received: [(from pholcomb@localhost) by abode.cpoint.net (/) id g1EGOUJ25857; Thu, 14 Feb 2002 10:24:30 -0600] Date: Thu, 14 Feb 2002 10:24:30 -0600 From: Paul Holcomb To: Markus Sand Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: KFir-Driver with Kernel newer than 2.4.5? Message-ID: <20020214102430.O27038@cpoint.net> References: <20020214154918.A24058@graphics.cs.uni-sb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020214154918.A24058@graphics.cs.uni-sb.de>; from msand@graphics.cs.uni-sb.de on Thu, Feb 14, 2002 at 03:49:18PM +0100 X-PGP: http://www.cpoint.net/paul/public_key.txt X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: mpeg2@blue.cpoint.net Precedence: bulk X-list: mpeg2 On Thu, Feb 14, 2002 at 03:49:18PM +0100, Markus Sand wrote: > Hi, > > I wondered if anyone has been able to compile the kfir-driver with the > newest linux-kernel (2.4.17)? > I use the kernel-sources from kernel.org, > and the CVS-Version of the kfir-driver. It compiles wonderful with > kernel-2.4.5, but says things like > > i2c-core.c:1372: parse error before `this_object_must_be_defined_as_export_objs_in_the_Makefile' > I ended up just using saa7113.o and kfir.o from the kfir CVS and used videodev, i2c-core, and i2c-algo-bit out of the normal tree. Worked great for me. This is with 2.4.17. [I was a little scared of it being more difficult -- I was running 2.4.2 before :P ] -- Paul Holcomb *pholcomb \@ cpoint net* Sr. Network Engineer Counterpoint Networking, Inc. From mpeg2-bounce@linuxtv.org Wed Feb 20 21:31:00 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 28948 invoked by uid 0); 20 Feb 2002 21:31:00 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 20 Feb 2002 21:31:00 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16deJt-0001nm-00; Wed, 20 Feb 2002 22:30:33 +0100 Received: with LISTAR (v0.129a; list mpeg2); Wed, 20 Feb 2002 22:29:42 +0100 (CET) Received: from d3.topnet.ro ([193.230.175.131] helo=d3.d3.ro ident=root) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16deJ2-0000yn-00 for ; Wed, 20 Feb 2002 22:29:41 +0100 Received: from d3.topnet.ro (interfilm.topnet.ro [193.230.175.156]) by d3.d3.ro (8.11.0/8.11.0) with ESMTP id g1KDK6E07500 for ; Wed, 20 Feb 2002 15:20:06 +0200 Message-ID: <3C741935.30100@d3.topnet.ro> Date: Wed, 20 Feb 2002 23:46:29 +0200 From: Tamas Csaba User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.2.1) Gecko/20010901 X-Accept-Language: en-us, hu, ro MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] How can I capture MPEG2 in 720x576 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: tamas@d3.topnet.ro Precedence: bulk X-list: mpeg2 Hi! Know somebody, how I can capture with my KFIR Linux Mpeg2 Encoder board MPEGs in 720x576 Pal format. Beacause now the largest format is 704X576, but the documentation describes that this card can capture with 720X576. Is the problem cause of the driver? Please help me... Regards Tamas From mpeg2-bounce@linuxtv.org Thu Feb 28 06:34:43 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5755 invoked by uid 0); 28 Feb 2002 06:34:43 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 06:34:43 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gK8j-0003Y3-00; Thu, 28 Feb 2002 07:34:06 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 07:31:10 +0100 (CET) Received: from houseofdistraction.com ([206.63.251.121]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gK5u-0003VI-00 for ; Thu, 28 Feb 2002 07:31:10 +0100 Received: from butt (houseofdistraction.com) [192.168.1.3] (jlb) by houseofdistraction.com with esmtp (Exim 3.12 #1 (Debian)) id 16gK5q-0008OR-00; Wed, 27 Feb 2002 22:31:06 -0800 Message-ID: <3C7DCEA9.7030907@houseofdistraction.com> Date: Wed, 27 Feb 2002 22:31:05 -0800 From: Jeff Bowden User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020214 X-Accept-Language: en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] problems compiling kfir.c with 2.4.17 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: jlb@houseofdistraction.com Precedence: bulk X-list: mpeg2 Among other things, there is a call to video_register_device with too few parameters. Is this driver under active development? With which kernels is it known to work? From mpeg2-bounce@linuxtv.org Thu Feb 28 09:29:47 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 27379 invoked by uid 0); 28 Feb 2002 09:29:47 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 09:29:47 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gMrx-0003Pf-00; Thu, 28 Feb 2002 10:28:57 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 10:28:31 +0100 (CET) Received: from mta.sara.nl ([145.100.16.144]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gMZG-0002Vd-00 for ; Thu, 28 Feb 2002 10:09:38 +0100 Received: from gazoo.sara.nl (gazoo.sara.nl [145.100.25.214]) by mta.sara.nl (8.11.3/8.11.3) with SMTP id g1S97r718301; Thu, 28 Feb 2002 10:07:53 +0100 (MET) Date: Thu, 28 Feb 2002 10:09:25 +0100 From: Bram Stolk To: Jeff Bowden Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: problems compiling kfir.c with 2.4.17 Message-Id: <20020228100925.2130d905.bram@sara.nl> In-Reply-To: <3C7DCEA9.7030907@houseofdistraction.com> References: <3C7DCEA9.7030907@houseofdistraction.com> Organization: Stichting Academisch Rekencentrum Amsterdam X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.8; mips-sgi-irix6.5) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 On Wed, 27 Feb 2002 22:31:05 -0800 Jeff Bowden wrote: > Among other things, there is a call to video_register_device with too > few parameters. Is this driver under active development? With which > kernels is it known to work? I have the CVS version working under Linux 2.4.16 Bram > > > > > > -- ------------------------------------------------------------------------------ Bram Stolk, VR Specialist. SARA Academic Computing Services Amsterdam, PO Box 94613, 1090 GP AMSTERDAM email: bram@sara.nl Phone +31-20-5923059 Fax +31-20-6683167 "I heard if you play the NT-4.0-CD backwards, you get a satanic message." "Thats nothing, if you play it forward, it installs NT-4.0" ------------------------------------------------------------------------------ From mpeg2-bounce@linuxtv.org Thu Feb 28 09:53:04 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 4261 invoked by uid 0); 28 Feb 2002 09:53:04 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 09:53:04 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gNEg-0004k5-00; Thu, 28 Feb 2002 10:52:26 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 10:52:15 +0100 (CET) Received: from leviticus.reading.xover.co.uk ([217.169.5.98]) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16gNEV-0004ia-00 for ; Thu, 28 Feb 2002 10:52:15 +0100 Received: from numbers.reading.xover.co.uk([217.169.5.99] HELO:xover.co.uk) by leviticus.reading.xover.co.uk for mpeg2@linuxtv.org; Thu, 28 Feb 2002 09:51:36 +0000 Sender: stuart Message-ID: <3C7DFDA3.49A040F@xover.co.uk> Date: Thu, 28 Feb 2002 09:51:31 +0000 From: "Stuart L. Morris" X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.14-1.3.0bpmac ppc) X-Accept-Language: en MIME-Version: 1.0 To: kfir list Subject: [mpeg2] Re: problems compiling kfir.c with 2.4.17 References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: stuart@xover.co.uk Precedence: bulk X-list: mpeg2 Bram Stolk wrote: > > On Wed, 27 Feb 2002 22:31:05 -0800 > Jeff Bowden wrote: > > > Among other things, there is a call to video_register_device with too > > few parameters. Is this driver under active development? With which > > kernels is it known to work? > > I have the CVS version working under Linux 2.4.16 I also have the latest CVS version running under 2.4.17 Stuart Crossover Communications Ltd. From mpeg2-bounce@linuxtv.org Thu Feb 28 19:07:50 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 25271 invoked by uid 0); 28 Feb 2002 19:07:50 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 19:07:50 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gVtW-00021f-00; Thu, 28 Feb 2002 20:07:10 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 20:06:17 +0100 (CET) Received: from houseofdistraction.com ([206.63.251.121]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gVse-0001zh-00 for ; Thu, 28 Feb 2002 20:06:16 +0100 Received: from (houseofdistraction.com) [216.220.192.132] by houseofdistraction.com with esmtp (Exim 3.12 #1 (Debian)) id 16gVsb-0001Bp-00; Thu, 28 Feb 2002 11:06:13 -0800 Message-ID: <3C7E7F87.1000207@houseofdistraction.com> Date: Thu, 28 Feb 2002 11:05:43 -0800 From: Jeff Bowden User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020214 X-Accept-Language: en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Re: problems compiling kfir.c with 2.4.17 References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: jlb@houseofdistraction.com Precedence: bulk X-list: mpeg2 Stuart L. Morris wrote: >Bram Stolk wrote: > >>On Wed, 27 Feb 2002 22:31:05 -0800 >>Jeff Bowden wrote: >> >>>Among other things, there is a call to video_register_device with too >>>few parameters. Is this driver under active development? With which >>>kernels is it known to work? >>> >>I have the CVS version working under Linux 2.4.16 >> > > >I also have the latest CVS version running under 2.4.17 > OK, cool. I haven't ordered the board yet, I wanted to make sure I could get the driver built first. Thanks for the tips. I had to comment out MX_OBJS and EXTRA_CFLAGS in the Makefile to get it to compile. How well does it work? I am thinking to use it for archiving video from my camcorder. From mpeg2-bounce@linuxtv.org Thu Feb 28 19:28:22 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 30436 invoked by uid 0); 28 Feb 2002 19:28:22 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 19:28:22 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gWDN-0002sx-00; Thu, 28 Feb 2002 20:27:41 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 20:27:35 +0100 (CET) Received: from leviticus.reading.xover.co.uk ([217.169.5.98]) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16gWDH-0002re-00 for ; Thu, 28 Feb 2002 20:27:35 +0100 Received: from numbers.reading.xover.co.uk([217.169.5.99] HELO:xover.co.uk) by leviticus.reading.xover.co.uk for mpeg2@linuxtv.org; Thu, 28 Feb 2002 19:26:57 +0000 Sender: stuart Message-ID: <3C7E847A.84341A57@xover.co.uk> Date: Thu, 28 Feb 2002 19:26:50 +0000 From: "Stuart L. Morris" X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.14-1.3.0bpmac ppc) X-Accept-Language: en MIME-Version: 1.0 To: kfir list Subject: [mpeg2] Re: problems compiling kfir.c with 2.4.17 References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: stuart@xover.co.uk Precedence: bulk X-list: mpeg2 In my experience... When it works it works very well. Low bitrates (below 2Mbits/s) are not fantastic but then MPEG2 isn't really designed to go down there anyway. Analogue sources (VHS tape etc) give poor results because of the noise on the signal (it doesn't compress ;-) The real problems I've had have been conflicts between the board, the driver and the motherboard. On some machines it simply won't work and on others I've had no problems at all and am very happy. I have had good results in creating Super VCD disks from KFIR created MPEG2 files and archiving video material onto CD except when the capture file gets too large (haven't worked out how to split it into two for SVCD writing yet, the first half works great but the second is unusable (help anyone?)). Have fun. Stuart Jeff Bowden wrote: > > Stuart L. Morris wrote: > > >Bram Stolk wrote: > > > >>On Wed, 27 Feb 2002 22:31:05 -0800 > >>Jeff Bowden wrote: > >> > >>>Among other things, there is a call to video_register_device with too > >>>few parameters. Is this driver under active development? With which > >>>kernels is it known to work? > >>> > >>I have the CVS version working under Linux 2.4.16 > >> > > > > > >I also have the latest CVS version running under 2.4.17 > > > > OK, cool. I haven't ordered the board yet, I wanted to make sure I > could get the driver built first. Thanks for the tips. I had to > comment out MX_OBJS and EXTRA_CFLAGS in the Makefile to get it to compile. > > How well does it work? I am thinking to use it for archiving video from > my camcorder. From mpeg2-bounce@linuxtv.org Thu Feb 28 20:28:32 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 18035 invoked by uid 0); 28 Feb 2002 20:28:32 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 20:28:32 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gX9d-0005Wl-00; Thu, 28 Feb 2002 21:27:53 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 21:27:36 +0100 (CET) Received: from houseofdistraction.com ([206.63.251.121]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gX9M-0005VT-00 for ; Thu, 28 Feb 2002 21:27:36 +0100 Received: from (houseofdistraction.com) [216.220.192.132] by houseofdistraction.com with esmtp (Exim 3.12 #1 (Debian)) id 16gX9K-0001UM-00; Thu, 28 Feb 2002 12:27:34 -0800 Message-ID: <3C7E9297.3090009@houseofdistraction.com> Date: Thu, 28 Feb 2002 12:27:03 -0800 From: Jeff Bowden User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020214 X-Accept-Language: en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Re: problems compiling kfir.c with 2.4.17 References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7E847A.84341A57@xover.co.uk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: jlb@houseofdistraction.com Precedence: bulk X-list: mpeg2 Have you looked at this to solve your file size problem? http://outflux.net/unix/software/GOPchop/ Stuart L. Morris wrote: >In my experience... > >When it works it works very well. Low bitrates (below 2Mbits/s) are not >fantastic but then MPEG2 isn't really designed to go down there anyway. >Analogue sources (VHS tape etc) give poor results because of the noise >on the signal (it doesn't compress ;-) > >The real problems I've had have been conflicts between the board, the >driver and the motherboard. On some machines it simply won't work and on >others I've had no problems at all and am very happy. > >I have had good results in creating Super VCD disks from KFIR created >MPEG2 files and archiving video material onto CD except when the capture >file gets too large (haven't worked out how to split it into two for >SVCD writing yet, the first half works great but the second is unusable >(help anyone?)). > >Have fun. > >Stuart > >Jeff Bowden wrote: > >>Stuart L. Morris wrote: >> >>>Bram Stolk wrote: >>> >>>>On Wed, 27 Feb 2002 22:31:05 -0800 >>>>Jeff Bowden wrote: >>>> >>>>>Among other things, there is a call to video_register_device with too >>>>>few parameters. Is this driver under active development? With which >>>>>kernels is it known to work? >>>>> >>>>I have the CVS version working under Linux 2.4.16 >>>> >>> >>>I also have the latest CVS version running under 2.4.17 >>> >>OK, cool. I haven't ordered the board yet, I wanted to make sure I >>could get the driver built first. Thanks for the tips. I had to >>comment out MX_OBJS and EXTRA_CFLAGS in the Makefile to get it to compile. >> >>How well does it work? I am thinking to use it for archiving video from >>my camcorder. >> > > From mpeg2-bounce@linuxtv.org Thu Feb 28 22:56:23 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 1859 invoked by uid 0); 28 Feb 2002 22:56:23 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Feb 2002 22:56:23 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gZSi-0003u5-00; Thu, 28 Feb 2002 23:55:44 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Feb 2002 23:55:11 +0100 (CET) Received: from mail.4cornersguideservice.com ([204.134.75.226] helo=mail.cyberport.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gZSA-0003sl-00 for ; Thu, 28 Feb 2002 23:55:10 +0100 Received: from etr-usa.com [204.134.93.3] by mail.cyberport.com with ESMTP (SMTPD32-6.05) id A75AEB00F8; Thu, 28 Feb 2002 16:03:54 -0700 Message-ID: <3C7EB530.1E1B5E00@etr-usa.com> Date: Thu, 28 Feb 2002 15:54:40 -0700 From: Warren Young Organization: -ENOENT X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: LinuxTV MPEG-2 Mailing List Subject: [mpeg2] Frame dropping? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Note: This E-mail was scanned by Declude JunkMail (www.declude.com) for spam. X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: warren@etr-usa.com Precedence: bulk X-list: mpeg2 Is anyone else seeing A/V synch problems? I'm guessing it's due to frame dropping, but whatever the cause it's undeniable. I didn't see this last year when I first played with this card, but until now I haven't been trying to encode 1-2 hours of video at a time. Now I am, and by the end of the movie the audio synch is off a bit. -- = MPEG articles: http://tangentsoft.net/video/mpeg/ From mpeg2-bounce@linuxtv.org Fri Mar 01 05:24:37 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 32083 invoked by uid 0); 1 Mar 2002 05:24:37 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Mar 2002 05:24:37 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gfWQ-00032r-00; Fri, 01 Mar 2002 06:23:58 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Mar 2002 06:23:38 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gfW1-00031H-00 for ; Fri, 01 Mar 2002 06:23:38 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id KAA29249 for ; Fri, 1 Mar 2002 10:55:25 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id KAA07621 for ; Fri, 1 Mar 2002 10:55:25 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002030110552421972 for ; Fri, 01 Mar 2002 10:55:24 +0530 Received: from patni.com (IDENT:root@[192.168.1.135]) by akash.patni.com (8.9.3/SCO5) with ESMTP id KAA06673 for ; Fri, 1 Mar 2002 10:55:24 +0530 (IST) Sender: root@akash.patni.com Message-ID: <3C7F5DD8.3F6FDC70@patni.com> Date: Fri, 01 Mar 2002 16:24:16 +0530 From: Amit Tank Reply-To: amit.tank@patni.com Organization: PCS X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14-12 i686) X-Accept-Language: en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Kfir API docs References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 hi all, I am new to this list. Just got my Kfir board along with the drivers. anyone knowing about any source from where I could obtain a consolidated list of APIs exposed by Kfir drivers. any Player application developed built to make usage of Kfir hardware? Any help would be appreciated. rgds, Amit Tank From mpeg2-bounce@linuxtv.org Fri Mar 01 08:49:11 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 2777 invoked by uid 0); 1 Mar 2002 08:49:11 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Mar 2002 08:49:11 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16giiO-0003ts-00; Fri, 01 Mar 2002 09:48:32 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Mar 2002 09:47:49 +0100 (CET) Received: from lucien.blight.com ([66.114.221.37]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gfQ6-0002yG-00 for ; Fri, 01 Mar 2002 06:17:26 +0100 Received: [from stompy.outflux.net (IDENT:root@localhost [127.0.0.1]) by lucien.blight.com (/) with ESMTP id g215HAV12151; Thu, 28 Feb 2002 23:17:16 -0600] Date: Thu, 28 Feb 2002 21:17:09 -0800 From: Kees Cook To: Warren Young Cc: LinuxTV MPEG-2 Mailing List Subject: [mpeg2] Re: Frame dropping? Message-ID: <20020301051709.GU30057@cpoint.net> References: <3C7EB530.1E1B5E00@etr-usa.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C7EB530.1E1B5E00@etr-usa.com> User-Agent: Mutt/1.3.27i X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 On Thu, Feb 28, 2002 at 03:54:40PM -0700, Warren Young wrote: > Is anyone else seeing A/V synch problems? I'm guessing it's due to > frame dropping, but whatever the cause it's undeniable. I didn't see > this last year when I first played with this card, but until now I > haven't been trying to encode 1-2 hours of video at a time. Now I am, > and by the end of the movie the audio synch is off a bit. The frame dropping I've seen with kfir captures tends to involve losing the tail end of a frame picture or two. Sometimes it'll take audio with it too, sometimes you'll have audio without the picture. However, a good player should be able to keep sync between video and audio even with stuff missing, I thought. At some point I want to dig into the sync info in both the video and audio streams to see if there is an actual problem or not. -- Kees Cook @outflux.net From mpeg2-bounce@linuxtv.org Fri Mar 01 14:17:50 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 13483 invoked by uid 0); 1 Mar 2002 14:17:49 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 1 Mar 2002 14:17:49 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gnqQ-00047D-00; Fri, 01 Mar 2002 15:17:10 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 01 Mar 2002 15:16:24 +0100 (CET) Received: from cubalibre.convergence.de ([10.1.1.75] helo=convergence.de) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16gnmf-0003sC-00; Fri, 01 Mar 2002 15:13:17 +0100 Message-ID: <3C7F8C89.2000004@convergence.de> Date: Fri, 01 Mar 2002 15:13:29 +0100 From: Frank Rosengart User-Agent: Mozilla/5.0 (X11; U; Linux 2.4.17 i686; en-US; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: de, en MIME-Version: 1.0 To: amit.tank@patni.com CC: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7F5DD8.3F6FDC70@patni.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 Amit Tank wrote: > hi all, > > I am new to this list. > Just got my Kfir board along with the drivers. > > anyone knowing about any source from where I could obtain > a consolidated list of APIs exposed by Kfir drivers. Do you talk about the Linux or Windows drivers? > > any Player application developed built to make usage of Kfir hardware? Eh, the KFir-chip is meant for 'recorders' not for players :-) regards #frank From mpeg2-bounce@linuxtv.org Sat Mar 02 07:42:42 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26029 invoked by uid 0); 2 Mar 2002 07:42:42 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 2 Mar 2002 07:42:42 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16h49Z-0004Ui-00; Sat, 02 Mar 2002 08:42:01 +0100 Received: with LISTAR (v0.129a; list mpeg2); Sat, 02 Mar 2002 08:41:08 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16h48e-0004Rp-00 for ; Sat, 02 Mar 2002 08:41:06 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id NAA08766 for ; Sat, 2 Mar 2002 13:12:42 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id NAA03917 for ; Sat, 2 Mar 2002 13:12:38 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002030213123729874 for ; Sat, 02 Mar 2002 13:12:37 +0530 Received: from patni.com (IDENT:root@[192.168.1.135]) by akash.patni.com (8.9.3/SCO5) with ESMTP id NAA24673 for ; Sat, 2 Mar 2002 13:12:37 +0530 (IST) Sender: root@akash.patni.com Message-ID: <3C80CF8D.4000328D@patni.com> Date: Sat, 02 Mar 2002 18:41:41 +0530 From: Amit Tank Reply-To: amit.tank@patni.com Organization: PCS X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14-12 i686) X-Accept-Language: en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7F5DD8.3F6FDC70@patni.com> <3C7F8C89.2000004@convergence.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 hi frank, me talking about linux drivers. any source to get (kfir linux drivers) APIs documented ? yes i meant to say "encoding application".. :) any such app in knowing ? rgds, Amit Tank Frank Rosengart wrote: > > Amit Tank wrote: > > > hi all, > > > > I am new to this list. > > Just got my Kfir board along with the drivers. > > > > anyone knowing about any source from where I could obtain > > a consolidated list of APIs exposed by Kfir drivers. > > Do you talk about the Linux or Windows drivers? > > > > > any Player application developed built to make usage of Kfir hardware? > > Eh, the KFir-chip is meant for 'recorders' not for players :-) > > regards > #frank From mpeg2-bounce@linuxtv.org Sat Mar 02 09:59:11 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5177 invoked by uid 0); 2 Mar 2002 09:59:11 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 2 Mar 2002 09:59:11 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16h6Hf-0002R8-00; Sat, 02 Mar 2002 10:58:31 +0100 Received: with LISTAR (v0.129a; list mpeg2); Sat, 02 Mar 2002 10:58:00 +0100 (CET) Received: from dial-195-14-251-227.netcologne.de ([195.14.251.227] helo=rjkm.de) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16h6H9-0002Pd-00 for ; Sat, 02 Mar 2002 10:57:59 +0100 Received: (from rjkm@localhost) by rjkm.de (8.12.0.Beta19/8.12.0.Beta19) id g229wC3j000969; Sat, 2 Mar 2002 10:58:12 +0100 From: Ralph Metzler Message-ID: <15488.41524.193517.52598@gargle.gargle.HOWL> Date: Sat, 2 Mar 2002 10:58:12 +0100 To: amit.tank@patni.com Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs In-Reply-To: <3C80CF8D.4000328D@patni.com> References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7F5DD8.3F6FDC70@patni.com> <3C7F8C89.2000004@convergence.de> <3C80CF8D.4000328D@patni.com> X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: rjkm@convergence.de Precedence: bulk X-list: mpeg2 Amit Tank writes: > me talking about linux drivers. > any source to get (kfir linux drivers) APIs documented ? Let's see: read() - read MPEG data ... and Bram Stolk just added poll(). There isn't really any API yet, just some insmod parameters. Feel free to discuss a framework for a Linux MPEG encoder API on this list. Ralph From mpeg2-bounce@linuxtv.org Mon Mar 04 11:10:48 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 21582 invoked by uid 0); 4 Mar 2002 11:10:48 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 4 Mar 2002 11:10:48 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16hq4L-0002pP-00; Mon, 04 Mar 2002 11:51:49 +0100 Received: with LISTAR (v0.129a; list mpeg2); Mon, 04 Mar 2002 11:49:06 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16hq1h-0008DD-00 for ; Mon, 04 Mar 2002 11:49:06 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id QAA21260 for ; Mon, 4 Mar 2002 16:20:30 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id QAA15826 for ; Mon, 4 Mar 2002 16:20:30 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002030416203006845 ; Mon, 04 Mar 2002 16:20:30 +0530 Received: from patni.com (IDENT:root@[192.168.1.135]) by akash.patni.com (8.9.3/SCO5) with ESMTP id QAA08827; Mon, 4 Mar 2002 16:20:19 +0530 (IST) Sender: root@akash.patni.com Message-ID: <3C835148.F6D64AAC@patni.com> Date: Mon, 04 Mar 2002 16:19:44 +0530 From: Amit Tank Reply-To: amit.tank@patni.com Organization: PCS X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14-12 i686) X-Accept-Language: en MIME-Version: 1.0 To: Ralph Metzler CC: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7F5DD8.3F6FDC70@patni.com> <3C7F8C89.2000004@convergence.de> <3C80CF8D.4000328D@patni.com> <15488.41524.193517.52598@gargle.gargle.HOWL> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 Ralph Metzler wrote: > > Amit Tank writes: > > me talking about linux drivers. > > any source to get (kfir linux drivers) APIs documented ? > > Let's see: > > read() - read MPEG data ... > > and Bram Stolk just added poll(). > > There isn't really any API yet, just some insmod parameters. > Feel free to discuss a framework for a Linux MPEG encoder API > on this list. > > Ralph hi Ralph, oky. so I got the idea about the driver status. one more thing to ask you. I am writing a MPEG stream server (that wud reside in a Set-Top Box) for a client. I shall need to finally dump the Kfir driver on the 8MB ROM chip. But I am concerned about the licensing stuff. To the best of my knowledge the Kfir Board maker firm has been acquired by some other company and those guys have dropped the support for this board. So I guess u cud be the right person to clarify the licensing terms. do you plan to put it under GNU/GPL ? rgds, Amit Tank From mpeg2-bounce@linuxtv.org Mon Mar 04 12:05:44 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 8452 invoked by uid 0); 4 Mar 2002 12:05:44 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 4 Mar 2002 12:05:44 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16hr4X-0004B0-00; Mon, 04 Mar 2002 12:56:05 +0100 Received: with LISTAR (v0.129a; list mpeg2); Mon, 04 Mar 2002 12:54:33 +0100 (CET) Received: from dial-195-14-251-6.netcologne.de ([195.14.251.6] helo=rjkm.de) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16hr2d-0003Jq-00 for ; Mon, 04 Mar 2002 12:54:29 +0100 Received: (from rjkm@localhost) by rjkm.de (8.12.0.Beta19/8.12.0.Beta19) id g24Bs265001185; Mon, 4 Mar 2002 12:54:02 +0100 From: Ralph Metzler Message-ID: <15491.24666.24902.190100@gargle.gargle.HOWL> Date: Mon, 4 Mar 2002 12:54:02 +0100 To: amit.tank@patni.com Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs In-Reply-To: <3C835148.F6D64AAC@patni.com> References: <3C7DCEA9.7030907@houseofdistraction.com> <20020228100925.2130d905.bram@sara.nl> <3C7DFDA3.49A040F@xover.co.uk> <3C7E7F87.1000207@houseofdistraction.com> <3C7F5DD8.3F6FDC70@patni.com> <3C7F8C89.2000004@convergence.de> <3C80CF8D.4000328D@patni.com> <15488.41524.193517.52598@gargle.gargle.HOWL> <3C835148.F6D64AAC@patni.com> X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: rjkm@convergence.de Precedence: bulk X-list: mpeg2 Amit Tank writes: > one more thing to ask you. > I am writing a MPEG stream server (that wud reside in a Set-Top Box) > for a client. > I shall need to finally dump the Kfir driver on the 8MB ROM chip. > But I am concerned about the licensing stuff. > To the best of my knowledge the Kfir Board maker firm has been acquired > by some other company and those guys have dropped the support for this > board. > So I guess u cud be the right person to clarify the licensing terms. > do you plan to put it under GNU/GPL ? No. The firmware is owned by Visiontech (AFAIK, part of Broadcom now) and they specifically did not allow us to distribute the firmware with the Linux driver. That's why you have to extract it yourself from the Windows DLL. Sorry, but without their permission you probably will not be able to distribute it. If each firmware copy is bundled with a Kfir chip/card this might of course be different to our situation where the driver is offered independently from the card. Ralph From mpeg2-bounce@linuxtv.org Tue Mar 05 14:44:32 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 7434 invoked by uid 0); 5 Mar 2002 14:44:32 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 5 Mar 2002 14:44:32 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16iGAs-0005Ln-00; Tue, 05 Mar 2002 15:44:18 +0100 Received: with LISTAR (v0.129a; list mpeg2); Tue, 05 Mar 2002 15:43:04 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16iG9e-0005Hc-00 for ; Tue, 05 Mar 2002 15:43:03 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id UAA24593 for ; Tue, 5 Mar 2002 20:13:28 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id UAA26544 for ; Tue, 5 Mar 2002 20:13:28 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002030520132703923 ; Tue, 05 Mar 2002 20:13:27 +0530 Received: from pcp31981 ([192.168.1.241]) by akash.patni.com (8.9.3/SCO5) with SMTP id UAA14891; Tue, 5 Mar 2002 20:13:01 +0530 (IST) Reply-To: From: "Amit Tank" To: "'Ralph Metzler'" Cc: Subject: [mpeg2] Re: Kfir API docs Date: Tue, 5 Mar 2002 20:36:07 +0530 Message-ID: <000201c1c457$473f3c90$f101a8c0@pcp31981> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Importance: Normal In-Reply-To: <15491.24666.24902.190100@gargle.gargle.HOWL> X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 hi ralph, i c.. so.. if i manage to decide some terms about the firware.. what could be the possible way for using the part authored by you in the set-top-box ROM chip.. amit -----Original Message----- From: mpeg2-bounce@linuxtv.org [mailto:mpeg2-bounce@linuxtv.org]On Behalf Of Ralph Metzler Sent: Monday, March 04, 2002 5:24 PM To: amit.tank@patni.com Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs Amit Tank writes: > one more thing to ask you. > I am writing a MPEG stream server (that wud reside in a Set-Top Box) > for a client. > I shall need to finally dump the Kfir driver on the 8MB ROM chip. > But I am concerned about the licensing stuff. > To the best of my knowledge the Kfir Board maker firm has been acquired > by some other company and those guys have dropped the support for this > board. > So I guess u cud be the right person to clarify the licensing terms. > do you plan to put it under GNU/GPL ? No. The firmware is owned by Visiontech (AFAIK, part of Broadcom now) and they specifically did not allow us to distribute the firmware with the Linux driver. That's why you have to extract it yourself from the Windows DLL. Sorry, but without their permission you probably will not be able to distribute it. If each firmware copy is bundled with a Kfir chip/card this might of course be different to our situation where the driver is offered independently from the card. Ralph From mpeg2-bounce@linuxtv.org Tue Mar 05 16:32:59 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 13147 invoked by uid 0); 5 Mar 2002 16:32:59 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 5 Mar 2002 16:32:59 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16iHro-00068A-00; Tue, 05 Mar 2002 17:32:44 +0100 Received: with LISTAR (v0.129a; list mpeg2); Tue, 05 Mar 2002 17:32:31 +0100 (CET) Received: from dial-213-168-91-122.netcologne.de ([213.168.91.122] helo=rjkm.de) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16iHrW-00066m-00 for ; Tue, 05 Mar 2002 17:32:28 +0100 Received: (from rjkm@localhost) by rjkm.de (8.12.0.Beta19/8.12.0.Beta19) id g25GWlUX001322; Tue, 5 Mar 2002 17:32:47 +0100 From: Ralph Metzler Message-ID: <15492.62255.211435.864225@gargle.gargle.HOWL> Date: Tue, 5 Mar 2002 17:32:47 +0100 To: Cc: Subject: [mpeg2] Re: Kfir API docs In-Reply-To: <000201c1c457$473f3c90$f101a8c0@pcp31981> References: <15491.24666.24902.190100@gargle.gargle.HOWL> <000201c1c457$473f3c90$f101a8c0@pcp31981> X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: rjkm@convergence.de Precedence: bulk X-list: mpeg2 Amit Tank writes: > > hi ralph, > > i c.. > so.. if i manage to decide some terms about the firware.. > what could be the possible way for using the part authored by you in > the set-top-box ROM chip.. According to the GPL of course. Ralph From mpeg2-bounce@linuxtv.org Wed Mar 06 15:51:08 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 14912 invoked by uid 0); 6 Mar 2002 15:51:08 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 6 Mar 2002 15:51:08 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16idgr-0007uZ-00; Wed, 06 Mar 2002 16:50:53 +0100 Received: with LISTAR (v0.129a; list mpeg2); Wed, 06 Mar 2002 16:49:35 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16idfa-0007k6-00 for ; Wed, 06 Mar 2002 16:49:34 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id VAA14869 for ; Wed, 6 Mar 2002 21:19:51 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id VAA01093 for ; Wed, 6 Mar 2002 21:19:51 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002030621195010247 ; Wed, 06 Mar 2002 21:19:50 +0530 Received: from pcp31981 ([192.168.1.241]) by akash.patni.com (8.9.3/SCO5) with SMTP id VAA00288; Wed, 6 Mar 2002 21:19:27 +0530 (IST) Reply-To: From: "Amit Tank" To: "'Ralph Metzler'" Cc: Subject: [mpeg2] Re: Kfir API docs Date: Wed, 6 Mar 2002 21:42:54 +0530 Message-ID: <000701c1c529$c659f600$f101a8c0@pcp31981> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 In-Reply-To: <15492.62255.211435.864225@gargle.gargle.HOWL> X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 Thank Ralph. -----Original Message----- From: mpeg2-bounce@linuxtv.org [mailto:mpeg2-bounce@linuxtv.org]On Behalf Of Ralph Metzler Sent: Tuesday, March 05, 2002 10:03 PM To: amit.tank@patni.com Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Kfir API docs Amit Tank writes: > > hi ralph, > > i c.. > so.. if i manage to decide some terms about the firware.. > what could be the possible way for using the part authored by you in > the set-top-box ROM chip.. According to the GPL of course. Ralph From mpeg2-bounce@linuxtv.org Thu Mar 14 03:44:28 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 3449 invoked by uid 0); 14 Mar 2002 03:44:27 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 14 Mar 2002 03:44:27 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16lM9p-0000Db-00; Thu, 14 Mar 2002 04:44:01 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 14 Mar 2002 04:42:56 +0100 (CET) Received: from commsecure.sb2.optus.net.au ([203.202.148.106] helo=server.commsecure.com.au) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16lM8l-0000BP-00 for ; Thu, 14 Mar 2002 04:42:55 +0100 Received: from ws12.commsecure.com.au (ws12.commsecure.com.au [172.16.15.13]) by server.commsecure.com.au (8.11.6/8.11.2) with ESMTP id g2E3gpS27224 for ; Thu, 14 Mar 2002 14:42:51 +1100 Subject: [mpeg2] Black bands down both sides of video From: Stephen Robert Norris To: mpeg2@linuxtv.org Content-type: text/plain X-Mailer: Evolution/1.0.2 Date: 14 Mar 2002 14:39:02 +1100 Message-Id: <1016077143.1637.5.camel@ws12> Mime-Version: 1.0 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: srn@commsecure.com.au Precedence: bulk X-list: mpeg2 I'm getting black bands down both sides of captured video. I'm using a PAL composite video source which otherwise seems fine. It looks to me like the card is capturing the entire PAL frame including horizontal retrace (and in fact, vertical retrace, because I can see what's probably the teletext information flickering at the bottom of the frame). How do I control the captured area to avoid this? Stephen -- Attached file included as plaintext by Listar -- -- File: signature.asc -- Desc: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQA8kBtWFdZzflHhqBIRAplmAJ4rIosgxyeJ2Zit/zDeUEOjzn0jIQCdGP3+ p8Y+M5KsOYVMm76RXkbIFiA= =loWs -----END PGP SIGNATURE----- From mpeg2-bounce@linuxtv.org Sat Mar 16 02:12:19 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 31031 invoked by uid 0); 16 Mar 2002 02:12:19 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 16 Mar 2002 02:12:19 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16m3fh-0005ho-00; Sat, 16 Mar 2002 03:11:50 +0100 Received: with LISTAR (v0.129a; list mpeg2); Sat, 16 Mar 2002 03:02:43 +0100 (CET) Received: from cpe-144-132-189-145.nsw.bigpond.net.au ([144.132.189.145] helo=rockhopper.fn.com.au) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16m3Wr-0005XO-00 for ; Sat, 16 Mar 2002 03:02:42 +0100 Received: from chinstrap.fn.com.au (chinstrap [192.168.5.2]) by rockhopper.fn.com.au (8.11.6/8.11.2) with ESMTP id g2G22Xk03474 for ; Sat, 16 Mar 2002 13:02:34 +1100 Subject: [mpeg2] Black bands again From: Stephen Robert Norris To: mpeg2@linuxtv.org Content-type: text/plain X-Mailer: Evolution/1.0.2 Date: 16 Mar 2002 13:02:33 +1100 Message-Id: <1016244154.1251.17.camel@chinstrap> Mime-Version: 1.0 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: srn@fn.com.au Precedence: bulk X-list: mpeg2 More information: Setting P->Horiz = 10 removes the left-hand side band, but doesn't alter the right-hand one. What I'm wondering is if everyone else sees this too, or if it's something pecular to my setup? I'm capturing PAL (and it doesn't seem to matter what resolution I do so at). Stephen -- Stephen Norris srn@fn.com.au Farrow Norris Pty Ltd +61 417 243 239 -- Attached file included as plaintext by Listar -- -- File: signature.asc -- Desc: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQA8kqe5e+ykMRrETOURAjwyAJ9aqe7adFBVev9vgoJ4llNyTs4SVACeIQAB F8Hk4kf92vDtwpuvJI/ifq8= =8c9G -----END PGP SIGNATURE----- From mpeg2-bounce@linuxtv.org Sat Mar 16 03:46:49 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 31924 invoked by uid 0); 16 Mar 2002 03:46:48 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 16 Mar 2002 03:46:48 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16m599-00014L-00; Sat, 16 Mar 2002 04:46:19 +0100 Received: with LISTAR (v0.129a; list mpeg2); Sat, 16 Mar 2002 04:37:15 +0100 (CET) Received: from [194.109.134.226] (helo=mail.adrenochrome.nl ident=mail) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16m50N-0000tc-00 for ; Sat, 16 Mar 2002 04:37:15 +0100 Received: from defout.telus.net ([199.185.220.240] helo=priv-edtnes15-hme0.telusplanet.net) by mail.adrenochrome.nl with esmtp (Exim 3.33 #1 (Debian)) id 16g0Su-0002cS-00 for ; Wed, 27 Feb 2002 10:33:36 +0100 Received: from zabrina.mykald.com ([142.173.75.149]) by priv-edtnes15-hme0.telusplanet.net (InterMail vM.5.01.04.01 201-253-122-122-101-20011014) with ESMTP id <20020316033204.PHBL23210.priv-edtnes15-hme0.telusplanet.net@zabrina.mykald.com> for ; Fri, 15 Mar 2002 20:32:04 -0700 Date: Fri, 15 Mar 2002 19:32:03 -0800 (PST) From: Alan Murrell X-X-Sender: To: MPEG2 Mailing List Subject: [mpeg2] Iomega Buz? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: alan@murrell.ca Precedence: bulk X-list: mpeg2 Hello All! I'm new to the list, and I searched through the archives, but did not find much on the Iomega Buz. I was wondering if anyone here had used it for TV recording, and if so, what results did you find with it? How was the quality? What problems did you run into, if any? I ask, because I was looking at one, and am thinking about trying it out, but wanted to find out a bit more about it before doing so. Thanx, in advance. -- Alan Murrell -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Out the 10Base-T, through the router, down the T1, over the leased line, off the bridge, past the firewall... nothin' but 'Net! From mpeg2-bounce@linuxtv.org Fri Mar 22 11:00:45 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 24633 invoked by uid 0); 22 Mar 2002 11:00:45 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 22 Mar 2002 11:00:45 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oMmD-0003uO-00; Fri, 22 Mar 2002 12:00:05 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 22 Mar 2002 11:58:07 +0100 (CET) Received: from esemetz.ese-metz.fr ([193.48.224.212] ident=root) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oMkJ-0003ib-00 for ; Fri, 22 Mar 2002 11:58:07 +0100 Received: from collette (collette.ese-metz.fr [193.48.224.189]) by esemetz.ese-metz.fr (8.11.6/8.9.3) with SMTP id g2MAww101363 for ; Fri, 22 Mar 2002 11:58:59 +0100 Message-ID: <003401c1d190$3c148c80$bde030c1@esemetz.fr> From: "Jean-Luc Collette" To: Subject: [mpeg2] a driver witk kernel 2.4 Date: Fri, 22 Mar 2002 11:56:35 +0100 MIME-Version: 1.0 Content-type: text/plain X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: collette@ese-metz.fr Precedence: bulk X-list: mpeg2 Hi Where can I download a kfir driver witch can run correctly with a Linux 2.4.16 ? Thanks ************************************************************************* * Jean-Luc COLLETTE * page WEB : * http://www.ese-metz.fr/metz/personnel/collette/collette.html * Adresse E-mail: * Jean-Luc.Collette@supelec.fr ou bien collette@ese-metz.fr * Adresse postale : * Ecole Superieure d'Electricite * 2, rue Edouard Belin - 57078 METZ CEDEX 3 * Telephone : national 03 87 76 47 32, international +33 3 87 76 47 32 * Fax : national 03 87 76 47 00, international +33 3 87 76 47 00 ************************************************************************* From mpeg2-bounce@linuxtv.org Fri Mar 22 12:07:47 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 12051 invoked by uid 0); 22 Mar 2002 12:07:46 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 22 Mar 2002 12:07:46 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oNp6-0001ji-00; Fri, 22 Mar 2002 13:07:08 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 22 Mar 2002 13:06:43 +0100 (CET) Received: from laguna.land.ufrj.br ([146.164.47.211]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oNog-0001iO-00 for ; Fri, 22 Mar 2002 13:06:42 +0100 Received: from localhost (fernando@localhost) by laguna.land.ufrj.br (8.11.6/8.11.6) with ESMTP id g2MC6PY16794 for ; Fri, 22 Mar 2002 09:06:25 -0300 X-Authentication-Warning: laguna.land.ufrj.br: fernando owned process doing -bs Date: Fri, 22 Mar 2002 09:06:24 -0300 (BRT) From: Fernando Jorge Silveira Filho To: Subject: [mpeg2] Re: a driver witk kernel 2.4 In-Reply-To: <003401c1d190$3c148c80$bde030c1@esemetz.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: fernando@land.ufrj.br Precedence: bulk X-list: mpeg2 On Fri, 22 Mar 2002, Jean-Luc Collette wrote: I'm also interested in that information. I've recently upgraded my kernel from 2.4.7 to 2.4.18 and the kfir driver just won't work. I try to use the i2c-*.o and videodev.o modules that come with the kernel but when I load kfir.o the computer just freezes. Thanks in advance. > > Hi > > Where can I download a kfir driver witch can > run correctly with a Linux 2.4.16 ? > > Thanks > > > ************************************************************************* > * Jean-Luc COLLETTE > * page WEB : > * http://www.ese-metz.fr/metz/personnel/collette/collette.html > * Adresse E-mail: > * Jean-Luc.Collette@supelec.fr ou bien collette@ese-metz.fr > * Adresse postale : > * Ecole Superieure d'Electricite > * 2, rue Edouard Belin - 57078 METZ CEDEX 3 > * Telephone : national 03 87 76 47 32, international +33 3 87 76 47 32 > * Fax : national 03 87 76 47 00, international +33 3 87 76 47 00 > ************************************************************************* > -- ====================================== Fernando Jorge Silveira Filho fernando@land.ufrj.br Universidade Federal do Rio de Janeiro Rio de Janeiro, Brasil From mpeg2-bounce@linuxtv.org Fri Mar 22 12:40:55 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 22055 invoked by uid 0); 22 Mar 2002 12:40:54 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 22 Mar 2002 12:40:54 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oOL7-0004Ac-00; Fri, 22 Mar 2002 13:40:13 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 22 Mar 2002 13:40:07 +0100 (CET) Received: from [203.124.139.197] (helo=pcsmail.patni.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oOKv-00049R-00 for ; Fri, 22 Mar 2002 13:40:04 +0100 Received: from pcsbom.patni.com (pcsbom.patni.com [204.165.186.25]) by pcsmail.patni.com (8.9.3/8.9.3) with ESMTP id SAA32385 for ; Fri, 22 Mar 2002 18:07:54 +0530 Received: from antivirusgw.patni.com (antivirusgw.patni.com [192.168.0.7]) by pcsbom.patni.com (8.9.3/8.8.8) with SMTP id SAA13365 for ; Fri, 22 Mar 2002 18:07:54 +0530 (IST) Received: from akash.patni.com ([192.168.0.12]) by antivirusgw.patni.com (NAVIEG 2.1 bld 66) with SMTP id M2002032218075421471 for ; Fri, 22 Mar 2002 18:07:54 +0530 Received: from pcp31981 ([192.168.3.97]) by akash.patni.com (8.9.3/SCO5) with SMTP id SAA10650 for ; Fri, 22 Mar 2002 18:07:54 +0530 (IST) Reply-To: From: "Amit Tank" To: Subject: [mpeg2] Re: a driver witk kernel 2.4 Date: Fri, 22 Mar 2002 18:36:19 +0530 Message-ID: <000001c1d1a2$5c59a310$6103a8c0@pcp31981> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: amit.tank@patni.com Precedence: bulk X-list: mpeg2 hi, anyplace from where I could get a specification describing the procedure for converting a MPEG Audio / Video Elementry stream into a Packetized Elementry Stream. Thanks. rgds, Amit Tank -----Original Message----- From: mpeg2-bounce@linuxtv.org [mailto:mpeg2-bounce@linuxtv.org]On Behalf Of Fernando Jorge Silveira Filho Sent: Friday, March 22, 2002 5:36 PM To: mpeg2@linuxtv.org Subject: [mpeg2] Re: a driver witk kernel 2.4 On Fri, 22 Mar 2002, Jean-Luc Collette wrote: I'm also interested in that information. I've recently upgraded my kernel from 2.4.7 to 2.4.18 and the kfir driver just won't work. I try to use the i2c-*.o and videodev.o modules that come with the kernel but when I load kfir.o the computer just freezes. Thanks in advance. > > Hi > > Where can I download a kfir driver witch can > run correctly with a Linux 2.4.16 ? > > Thanks > > > ************************************************************************* > * Jean-Luc COLLETTE > * page WEB : > * http://www.ese-metz.fr/metz/personnel/collette/collette.html > * Adresse E-mail: > * Jean-Luc.Collette@supelec.fr ou bien collette@ese-metz.fr > * Adresse postale : > * Ecole Superieure d'Electricite > * 2, rue Edouard Belin - 57078 METZ CEDEX 3 > * Telephone : national 03 87 76 47 32, international +33 3 87 76 47 32 > * Fax : national 03 87 76 47 00, international +33 3 87 76 47 00 > ************************************************************************* > -- ====================================== Fernando Jorge Silveira Filho fernando@land.ufrj.br Universidade Federal do Rio de Janeiro Rio de Janeiro, Brasil From mpeg2-bounce@linuxtv.org Fri Mar 22 13:01:07 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 31299 invoked by uid 0); 22 Mar 2002 13:01:07 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 22 Mar 2002 13:01:07 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oOeh-0006VF-00; Fri, 22 Mar 2002 14:00:27 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 22 Mar 2002 14:00:13 +0100 (CET) Received: from esemetz.ese-metz.fr ([193.48.224.212] ident=root) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oOeS-0006SZ-00 for ; Fri, 22 Mar 2002 14:00:13 +0100 Received: from collette (collette.ese-metz.fr [193.48.224.189]) by esemetz.ese-metz.fr (8.11.6/8.9.3) with SMTP id g2MD0x124933; Fri, 22 Mar 2002 14:00:59 +0100 Message-ID: <002301c1d1a1$474c5810$bde030c1@esemetz.fr> From: "Jean-Luc Collette" To: "Damien Ducreux" Cc: References: Subject: [mpeg2] Re: a driver witk kernel 2.4 Date: Fri, 22 Mar 2002 13:58:35 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by esemetz.ese-metz.fr id g2MD0x124933 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: collette@ese-metz.fr Precedence: bulk X-list: mpeg2 Sorry I forgot to give this information : My card is a Linux-TV MPEG2 encoder card (BMK part vis.001.00-a1) I'm seaching informations about any version of the driver witch runs correctly with a linux 2.4 kernel (for example 2.4.16 but it could be another one) Thanks ----- Message d'origine ----- De : "Damien Ducreux" =C0 : "Jean Luc Collette" Envoy=E9 : vendredi 22 mars 2002 13:48 Objet : Re: [mpeg2] a driver witk kernel 2.4 > HI > What kind of board did you own ? > > > > > Hi > > > > Where can I download a kfir driver witch can > > run correctly with a Linux 2.4.16 ? > > > > Thanks > > > > > > ************************************************************************* > > * Jean-Luc COLLETTE > > * page WEB : > > * http://www.ese-metz.fr/metz/personnel/collette/collette.html > > * Adresse E-mail: > > * Jean-Luc.Collette@supelec.fr ou bien collette@ese-metz.fr > > * Adresse postale : > > * Ecole Superieure d'Electricite > > * 2, rue Edouard Belin - 57078 METZ CEDEX 3 > > * Telephone : national 03 87 76 47 32, international +33 3 87 76 47 3= 2 > > * Fax : national 03 87 76 47 00, international +33 3 87 76 47 0= 0 > > ************************************************************************* > > > > > > From mpeg2-bounce@linuxtv.org Fri Mar 22 13:53:50 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 13760 invoked by uid 0); 22 Mar 2002 13:53:49 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 22 Mar 2002 13:53:49 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oPTi-00011U-00; Fri, 22 Mar 2002 14:53:10 +0100 Received: with LISTAR (v0.129a; list mpeg2); Fri, 22 Mar 2002 14:52:37 +0100 (CET) Received: from icarai.land.ufrj.br ([146.164.47.210]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16oPTA-0000vY-00 for ; Fri, 22 Mar 2002 14:52:36 +0100 Received: from localhost (fernando@localhost) by icarai.land.ufrj.br (8.11.6/8.11.6) with ESMTP id g2MDqBS01863; Fri, 22 Mar 2002 10:52:11 -0300 X-Authentication-Warning: icarai.land.ufrj.br: fernando owned process doing -bs Date: Fri, 22 Mar 2002 10:52:10 -0300 (BRT) From: Fernando Jorge Silveira Filho To: Jean-Luc Collette cc: Damien Ducreux , Subject: [mpeg2] Re: a driver witk kernel 2.4 In-Reply-To: <002301c1d1a1$474c5810$bde030c1@esemetz.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by icarai.land.ufrj.br id g2MDqBS01863 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: fernando@land.ufrj.br Precedence: bulk X-list: mpeg2 The CVS version seemed to work fine with the 2.4.7 kernel that was using. But I've upgraded to 2.4.18 and nothing is working anymore. On Fri, 22 Mar 2002, Jean-Luc Collette wrote: > Sorry I forgot to give this information : >=20 > My card is a Linux-TV MPEG2 encoder card > (BMK part vis.001.00-a1) > I'm seaching informations about any version > of the driver witch runs correctly with a linux 2.4 kernel > (for example 2.4.16 but it could be another one) >=20 > Thanks >=20 >=20 > ----- Message d'origine ----- > De : "Damien Ducreux" > =C0 : "Jean Luc Collette" > Envoy=E9 : vendredi 22 mars 2002 13:48 > Objet : Re: [mpeg2] a driver witk kernel 2.4 >=20 >=20 > > HI > > What kind of board did you own ? > > > > > > > > Hi > > > > > > Where can I download a kfir driver witch can > > > run correctly with a Linux 2.4.16 ? > > > > > > Thanks > > > > > > > > > > ***********************************************************************= ** > > > * Jean-Luc COLLETTE > > > * page WEB : > > > * http://www.ese-metz.fr/metz/personnel/collette/collette.html > > > * Adresse E-mail: > > > * Jean-Luc.Collette@supelec.fr ou bien collette@ese-metz.fr > > > * Adresse postale : > > > * Ecole Superieure d'Electricite > > > * 2, rue Edouard Belin - 57078 METZ CEDEX 3 > > > * Telephone : national 03 87 76 47 32, international +33 3 87 76 47= 32 > > > * Fax : national 03 87 76 47 00, international +33 3 87 76 47= 00 > > > > ***********************************************************************= ** > > > > > > > > > > >=20 >=20 >=20 --=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Fernando Jorge Silveira Filho fernando@land.ufrj.br Universidade Federal do Rio de Janeiro Rio de Janeiro, Brasil From mpeg2-bounce@linuxtv.org Sun Mar 24 08:39:06 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 4928 invoked by uid 0); 24 Mar 2002 08:39:06 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 24 Mar 2002 08:39:06 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16p3WC-0002eN-00; Sun, 24 Mar 2002 09:38:24 +0100 Received: with LISTAR (v0.129a; list mpeg2); Sun, 24 Mar 2002 09:37:13 +0100 (CET) Received: from [194.109.134.226] (helo=mail.adrenochrome.nl ident=mail) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16p3V2-0002a7-01 for ; Sun, 24 Mar 2002 09:37:13 +0100 Received: from shell.aros.net ([207.173.16.19]) by mail.adrenochrome.nl with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #1 (Debian)) id 16oxik-0000nc-00 for ; Sun, 24 Mar 2002 03:26:58 +0100 Received: (from gold@localhost) by shell.aros.net (8.11.6/8.9.3) id g2O4BCC29285; Sat, 23 Mar 2002 21:11:12 -0700 (MST) Date: Sat, 23 Mar 2002 21:11:12 -0700 From: Lawrence Gold To: Stephen Robert Norris Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Black bands again Message-ID: <20020323211112.A28297@shell.aros.net> References: <1016244154.1251.17.camel@chinstrap> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1016244154.1251.17.camel@chinstrap>; from srn@fn.com.au on Sat, Mar 16, 2002 at 01:02:33PM +1100 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: gold@shell.aros.net Precedence: bulk X-list: mpeg2 On Sat, Mar 16, 2002 at 01:02:33PM +1100, Stephen Robert Norris wrote: > > More information: Setting P->Horiz = 10 removes the left-hand side band, > but doesn't alter the right-hand one. > > What I'm wondering is if everyone else sees this too, or if it's > something pecular to my setup? I'm capturing PAL (and it doesn't seem to > matter what resolution I do so at). I see the same sort of thing with NTSC, and haven't ever been able to completely remove the black bars on the sides. From mpeg2-bounce@linuxtv.org Tue Mar 26 11:41:15 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26609 invoked by uid 0); 26 Mar 2002 11:41:15 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 26 Mar 2002 11:41:15 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16ppJX-000864-00; Tue, 26 Mar 2002 12:40:31 +0100 Received: with LISTAR (v0.129a; list mpeg2); Tue, 26 Mar 2002 12:39:17 +0100 (CET) Received: from mta03.btfusion.com ([62.172.195.12] helo=btclick.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16ppIK-00083G-00 for ; Tue, 26 Mar 2002 12:39:16 +0100 Received: from komcept.com ([217.36.32.69]) by btclick.com (Netscape Messaging Server 4.15) with ESMTP id GTKWCH01.Q5Z for ; Tue, 26 Mar 2002 11:38:41 +0000 Message-ID: <3CA05E34.8050706@komcept.com> Date: Tue, 26 Mar 2002 11:40:36 +0000 From: MAL Organization: Komcept Solutions Ltd. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020313 X-Accept-Language: en-gb MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Time-Lapse Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: mal@komcept.com Precedence: bulk X-list: mpeg2 Can anyone tell me whether the kfir can record at framerates lower than 30/25 FPS ? Ideally 5, or 2.. while still maintaining constant sound recording? Regards, MAL From mpeg2-bounce@linuxtv.org Thu Mar 28 10:40:56 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5577 invoked by uid 0); 28 Mar 2002 10:40:56 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 28 Mar 2002 10:40:56 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16qXKC-0002PZ-00; Thu, 28 Mar 2002 11:40:08 +0100 Received: with LISTAR (v0.129a; list mpeg2); Thu, 28 Mar 2002 11:39:09 +0100 (CET) Received: from mta03.btfusion.com ([62.172.195.12] helo=btclick.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16qXJE-0002NC-00 for ; Thu, 28 Mar 2002 11:39:08 +0100 Received: from komcept.com ([217.36.38.105]) by btclick.com (Netscape Messaging Server 4.15) with ESMTP id GTOIWD00.R26; Thu, 28 Mar 2002 10:38:37 +0000 Message-ID: <3CA2F324.5090801@komcept.com> Date: Thu, 28 Mar 2002 10:40:36 +0000 From: MAL Organization: Komcept Solutions Ltd. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020313 X-Accept-Language: en-gb MIME-Version: 1.0 To: amit.tank@patni.com, mpeg2@linuxtv.org Subject: [mpeg2] Re: a driver with kernel 2.4 References: <000d01c1d618$f23b5b60$6103a8c0@pcp31981> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: mal@komcept.com Precedence: bulk X-list: mpeg2 The site, who's mailing list you are a member of :) http://www.linuxtv.org/download/dvb/ MAL Amit Tank wrote: > thanks mal. > > Yeah. Me too looking for something similar. > basically before mulitiplexing audio ES/Video ES into TS/PS > i guess it is required to parse the elementry stream > and packetize. > > regarding the mplex, could u let me know the URL to get it. > > Regards, > Amit Tank > > -----Original Message----- > From: MAL [mailto:mal@komcept.com] > Sent: Tuesday, March 26, 2002 7:17 PM > To: amit.tank@patni.com > Subject: [mpeg2] Re: a driver with kernel 2.4 > > > I assume you're referring to multiplexing the elementary streams. > > I use mplex, which I found as part of the siemens_dvb-0.9-20010921 driver, > in apps/mpegtools. > > tbh, i'm having problems with it not recognising my de-multiplexed audio > data as the correct type, so I intend to look elsewhere soon.. i'll let you > know if I > find better. > > Regards, > > MAL > > > > Amit Tank wrote: > >>hi, >> >>anyplace from where I could get a specification >>describing the procedure for converting a >>MPEG Audio / Video Elementry stream into >>a Packetized Elementry Stream. >> >>Thanks. >>rgds, >>Amit Tank >> > > > > > > > > > > > > > > > > > From mpeg2-bounce@linuxtv.org Wed Apr 10 16:09:51 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 15756 invoked by uid 0); 10 Apr 2002 16:09:51 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 10 Apr 2002 16:09:51 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vKg6-0002Uj-00; Wed, 10 Apr 2002 18:10:34 +0200 Received: with LISTAR (v0.129a; list mpeg2); Wed, 10 Apr 2002 18:09:15 +0200 (CEST) Received: from david.imn.htwk-leipzig.de ([141.57.9.1] helo=imn.htwk-leipzig.de) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vKep-0002Qx-00 for ; Wed, 10 Apr 2002 18:09:15 +0200 Received: from gmx.net (master.imn.htwk-leipzig.de [141.57.11.119]) by imn.htwk-leipzig.de (8.9.1/8.9.1) with ESMTP id SAA06330 for ; Wed, 10 Apr 2002 18:04:26 +0200 (MET DST) Message-ID: <3CB455D8.5090408@gmx.net> Date: Wed, 10 Apr 2002 17:10:16 +0200 From: Evgeny User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020208 X-Accept-Language: ru, en-us MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] report. Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: euMaster@gmx.net Precedence: bulk X-list: mpeg2 HI! Now I work for integration of kfir-driver in my project. And I found some incorrectnesses in code of kfir.c: kfir.c:2772: warning: initialization from incompatible pointer type kfir.c:2773: warning: initialization from incompatible pointer type This is fix for it: driver> diff -u3 kfir.c.orig kfir.c --- kfir.c.orig Wed Apr 10 15:12:59 2002 +++ kfir.c Tue Mar 19 12:25:44 2002 @@ -2534,6 +2552,7 @@ /* template for video_device-structure */ static struct video_device kfir_template = { + THIS_MODULE, name: "Kfir", type: VID_TYPE_MPEG_ENCODER, hardware: VID_HARDWARE_SAA7146, //FIXME: need to get VID_HARDWARE_KFIR registered @@ -2745,14 +2764,16 @@ return kfir_remove_device((struct kfir_dev *) pdev->driver_data); } -static void kfir_suspend(struct pci_dev *pdev) +static int kfir_suspend(struct pci_dev *pdev, u32 state) { printk("kfir: kfir_suspend()\n"); + return 0; } -static void kfir_resume(struct pci_dev *pdev) +static int kfir_resume(struct pci_dev *pdev) { printk("kfir: kfir_resume()\n"); + return 0; } I believe to repair this usefull. Best reards, Evgeny. From mpeg2-bounce@linuxtv.org Wed Apr 10 17:21:31 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 8125 invoked by uid 0); 10 Apr 2002 17:21:31 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 10 Apr 2002 17:21:31 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vLnT-0000Yc-00; Wed, 10 Apr 2002 19:22:15 +0200 Received: with LISTAR (v0.129a; list mpeg2); Wed, 10 Apr 2002 19:21:47 +0200 (CEST) Received: from mta.sara.nl ([145.100.16.144]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vKxA-0003L4-00 for ; Wed, 10 Apr 2002 18:28:12 +0200 Received: from gazoo.sara.nl (gazoo.sara.nl [145.100.25.214]) by mta.sara.nl (8.11.3/8.11.3) with SMTP id g3AGQ1X28052; Wed, 10 Apr 2002 18:26:01 +0200 (MET DST) Date: Wed, 10 Apr 2002 18:28:00 +0200 From: Bram Stolk To: Evgeny Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: report. Message-Id: <20020410182800.67b51a8e.bram@sara.nl> In-Reply-To: <3CB455D8.5090408@gmx.net> References: <3CB455D8.5090408@gmx.net> Organization: Stichting Academisch Rekencentrum Amsterdam X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.8; mips-sgi-irix6.5) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 Thanks for the fix. I have tested the new suspend/resume on my kfir, and it works, and indeed avoids warnings. I've commited it to cvs, after successfully creating an MPEG stream with the changes. However, I have not added the THIS_MODULE line. What does it do? My built does not give warnings without the line. Also, all other initializors in the struct have field specifiers, and your addition does not. Is there any reason for this? Bram On Wed, 10 Apr 2002 17:10:16 +0200 Evgeny wrote: > HI! > > Now I work for integration of kfir-driver in my project. > And I found some incorrectnesses in code of kfir.c: > > kfir.c:2772: warning: initialization from incompatible pointer type > kfir.c:2773: warning: initialization from incompatible pointer type > > This is fix for it: > > driver> diff -u3 kfir.c.orig kfir.c > --- kfir.c.orig Wed Apr 10 15:12:59 2002 > +++ kfir.c Tue Mar 19 12:25:44 2002 > @@ -2534,6 +2552,7 @@ > > /* template for video_device-structure */ > static struct video_device kfir_template = { > + THIS_MODULE, > name: "Kfir", > type: VID_TYPE_MPEG_ENCODER, > hardware: VID_HARDWARE_SAA7146, //FIXME: need to get > VID_HARDWARE_KFIR registered > @@ -2745,14 +2764,16 @@ > return kfir_remove_device((struct kfir_dev *) pdev->driver_data); > } > > -static void kfir_suspend(struct pci_dev *pdev) > +static int kfir_suspend(struct pci_dev *pdev, u32 state) > { > printk("kfir: kfir_suspend()\n"); > + return 0; > } > > -static void kfir_resume(struct pci_dev *pdev) > +static int kfir_resume(struct pci_dev *pdev) > { > printk("kfir: kfir_resume()\n"); > + return 0; > } > > > > > I believe to repair this usefull. > > > Best reards, Evgeny. > > > -- ------------------------------------------------------------------------------ Bram Stolk, VR Specialist. SARA Academic Computing Services Amsterdam, PO Box 94613, 1090 GP AMSTERDAM email: bram@sara.nl Phone +31-20-5923059 Fax +31-20-6683167 "I heard if you play the NT-4.0-CD backwards, you get a satanic message." "Thats nothing, if you play it forward, it installs NT-4.0" ------------------------------------------------------------------------------ From mpeg2-bounce@linuxtv.org Fri Apr 12 11:11:10 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 22544 invoked by uid 0); 12 Apr 2002 11:11:10 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 11:11:10 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vyy8-0006Mh-00; Fri, 12 Apr 2002 13:11:52 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 13:10:45 +0200 (CEST) Received: from [212.9.91.12] (helo=localhost.localdomain) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16vyx3-0006JA-00 for ; Fri, 12 Apr 2002 13:10:45 +0200 Received: from dmari ([212.9.66.141]) by localhost.localdomain (8.11.6/8.11.6) with SMTP id g3CB43706503 for ; Fri, 12 Apr 2002 13:04:03 +0200 Message-ID: <00fb01c1e212$622cb3b0$6700a8c0@dmari> From: =?iso-8859-1?Q?David_Mar=ED?= To: Subject: [mpeg2] Problem compiling driver on Redhat 7.2 Date: Fri, 12 Apr 2002 13:08:31 +0200 MIME-Version: 1.0 Content-type: text/plain X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dmari@lavinia.tc Precedence: bulk X-list: mpeg2 Hi there. I recently acquired de MPEG-2 kfir based board from linuxtv.org and it works so fine on windows 98 for me. My problem is when I enter the linux RedHat 7.2 arena : I followed the step-by-step procedure to install the driver, but it does not compile! I am able to extract the microcode, but when it comes to compile the modules, it doesn't work. The kernel is version 2.4.7-10. Do you recommend that I use another linux version of RedHat? Maybe 7.0, 7.1 ? Or do you have any step-by-step guide to fix de bugs in the compilation in Redhat 7.2 or Kernels 2.4 and above? one of them is the typical deprecation of the used include malloc.h in the driver code. Thank you very much. ----------------------------------------------------------- David Marí Martínez dmari@lavinia.tc LavíniaTC www.lavinia.tc Permanyer,12 08009 Barcelona +34932723410 ----------------------------------------------------------- From mpeg2-bounce@linuxtv.org Fri Apr 12 11:12:21 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 22552 invoked by uid 0); 12 Apr 2002 11:12:21 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 11:12:21 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vyzD-0006Ub-00; Fri, 12 Apr 2002 13:12:59 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 13:12:55 +0200 (CEST) Received: from cpe-144-132-189-145.nsw.bigpond.net.au ([144.132.189.145] helo=rockhopper.fn.com.au) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vyz8-0006Ti-00 for ; Fri, 12 Apr 2002 13:12:55 +0200 Received: from chinstrap.fn.com.au (chinstrap [192.168.5.2]) by rockhopper.fn.com.au (8.11.6/8.11.2) with ESMTP id g3CBCeB19406; Fri, 12 Apr 2002 21:12:40 +1000 Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 From: Stephen Robert Norris To: David =?ISO-8859-1?Q?Mar=ED?= Cc: mpeg2@linuxtv.org In-Reply-To: <00fb01c1e212$622cb3b0$6700a8c0@dmari> References: <00fb01c1e212$622cb3b0$6700a8c0@dmari> Content-type: text/plain X-Mailer: Ximian Evolution 1.0.3 Date: 12 Apr 2002 21:12:40 +1000 Message-Id: <1018609960.17384.6.camel@chinstrap> Mime-Version: 1.0 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: srn@fn.com.au Precedence: bulk X-list: mpeg2 On Fri, 2002-04-12 at 21:08, David Marí wrote: > > Hi there. > > I recently acquired de MPEG-2 kfir based board from linuxtv.org and it works so fine on windows 98 for me. > > My problem is when I enter the linux RedHat 7.2 arena : > > I followed the step-by-step procedure to install the driver, but it does not compile! I am able to extract the microcode, but when it comes to compile the modules, it doesn't work. The kernel is version 2.4.7-10. > > Do you recommend that I use another linux version of RedHat? Maybe 7.0, 7.1 ? > > Or do you have any step-by-step guide to fix de bugs in the compilation in Redhat 7.2 or Kernels 2.4 and above? > > one of them is the typical deprecation of the used include malloc.h in the driver code. > > > Thank you very much. What error are you getting? I remember I commented out the i2c stuff and just used the kernels, which worked for me... -- Stephen Norris srn@fn.com.au Farrow Norris Pty Ltd +61 417 243 239 -- Attached file included as plaintext by Listar -- -- File: signature.asc -- Desc: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQA8tsEoe+ykMRrETOURApypAJ9s+lMEGxvnhy3c92pZTpMLWzBqTACfVBxO 08bF0MG1GUShWIkWHOGdwq4= =eZjl -----END PGP SIGNATURE----- From mpeg2-bounce@linuxtv.org Fri Apr 12 11:42:41 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 32684 invoked by uid 0); 12 Apr 2002 11:42:41 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 11:42:41 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16vzSY-0008Q6-00; Fri, 12 Apr 2002 13:43:18 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 13:43:04 +0200 (CEST) Received: from [212.9.91.12] (helo=localhost.localdomain) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16vzSK-0008Nm-00 for ; Fri, 12 Apr 2002 13:43:04 +0200 Received: from dmari ([212.9.66.141]) by localhost.localdomain (8.11.6/8.11.6) with SMTP id g3CBaJ707716; Fri, 12 Apr 2002 13:36:19 +0200 Message-ID: <012501c1e216$e4a8f340$6700a8c0@dmari> From: =?iso-8859-1?Q?David_Mar=ED?= To: "Stephen Robert Norris" Cc: References: <00fb01c1e212$622cb3b0$6700a8c0@dmari> <1018609960.17384.6.camel@chinstrap> Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 Date: Fri, 12 Apr 2002 13:40:47 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by localhost.localdomain id g3CBaJ707716 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dmari@lavinia.tc Precedence: bulk X-list: mpeg2 I'm using the kfir.20010307.15-48-40.tar.gz. After extracting the microcode, I'm getting this Do I have to disable the i2c includes when I configure the kernel with ma= ke xconfig? [root@localhost kfir]# make (cd driver; make) make[1]: /scripts/pathdown.sh: No se encontr=F3 el programa make[1]: Changing a directorio `/root/kfir/kfir/driver' DIR=3D`pwd`; (cd /usr/src/linux-2.4.7-10; make SUBDIRS=3D$DIR modules) make[2]: Changing a directorio `/usr/src/linux-2.4.7-10' make -C /root/kfir/kfir/driver CFLAGS=3D"-D__KERNEL__ -I/usr/src/linux-2.4.7-10/i nclude -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-st rict-aliasing -fno-common -Wno-unused -pipe -mpreferred-stack-boundary=3D= 2 -march=3D i686 -DMODULE -DMODVERSIONS -include /usr/src/linux-2.4.7-10/include/linux/modve rsions.h" MAKING_MODULES=3D1 modules make[3]: Changing a directorio `/root/kfir/kfir/driver' gcc -D__KERNEL__ -I/usr/src/linux-2.4.7-10/include -Wall -Wstrict-prototypes = -Wn o-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -Wno-unuse d -pipe -mpreferred-stack-boundary=3D2 -march=3Di686 -DMODULE -DMODVERSIONS -include /usr/src/linux-2.4.7-10/include/linux/modversions.h -D__KFIR_PACK__ -c -o vide odev.o videodev.c videodev.c:402: conflicting types for `video_register_device_Rsmp_f59adb7= b' /usr/src/linux-2.4.7-10/include/linux/videodev.h:37: previous declaration of `vi deo_register_device_Rsmp_f59adb7b' make[3]: *** [videodev.o] Error 1 make[3]: Leaving directorio `/root/kfir/kfir/driver' make[2]: *** [_mod_/root/kfir/kfir/driver] Error 2 make[2]: Leaving directorio `/usr/src/linux-2.4.7-10' make[1]: *** [here] Error 2 make[1]: Leaving directorio `/root/kfir/kfir/driver' make: *** [all] Error 2 [root@localhost kfir]# ----- Original Message ----- From: "Stephen Robert Norris" To: "David Mar=ED" Cc: Sent: Friday, April 12, 2002 1:12 PM Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 > > On Fri, 2002-04-12 at 21:08, David Mar=ED wrote: > > > > Hi there. > > > > I recently acquired de MPEG-2 kfir based board from linuxtv.org and i= t works so fine on windows 98 for me. > > > > My problem is when I enter the linux RedHat 7.2 arena : > > > > I followed the step-by-step procedure to install the driver, but it d= oes not compile! I am able to extract the microcode, but when it comes to compile the modules, it doesn't work. The kernel is version 2.4.7-10. > > > > Do you recommend that I use another linux version of RedHat? Maybe 7.= 0, 7.1 ? > > > > Or do you have any step-by-step guide to fix de bugs in the compilati= on in Redhat 7.2 or Kernels 2.4 and above? > > > > one of them is the typical deprecation of the used include malloc.h i= n the driver code. > > > > > > Thank you very much. > > What error are you getting? I remember I commented out the i2c stuff an= d > just used the kernels, which worked for me... > > -- > Stephen Norris srn@fn.com.au > Farrow Norris Pty Ltd +61 417 243 239 > > -- Attached file included as plaintext by Listar -- > -- File: signature.asc > -- Desc: This is a digitally signed message part > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iD8DBQA8tsEoe+ykMRrETOURApypAJ9s+lMEGxvnhy3c92pZTpMLWzBqTACfVBxO > 08bF0MG1GUShWIkWHOGdwq4=3D > =3DeZjl > -----END PGP SIGNATURE----- > > > From mpeg2-bounce@linuxtv.org Fri Apr 12 15:03:52 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5539 invoked by uid 0); 12 Apr 2002 15:03:52 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 15:03:52 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w2bJ-0003pG-00; Fri, 12 Apr 2002 17:04:33 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 17:03:53 +0200 (CEST) Received: from [212.9.91.12] (helo=localhost.localdomain) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16w2af-0003n3-00 for ; Fri, 12 Apr 2002 17:03:53 +0200 Received: from dmari ([212.9.66.141]) by localhost.localdomain (8.11.6/8.11.6) with SMTP id g3CEv9713624 for ; Fri, 12 Apr 2002 16:57:09 +0200 Message-ID: <01bd01c1e232$f46d23c0$6700a8c0@dmari> From: =?iso-8859-1?Q?David_Mar=ED?= To: References: <00fb01c1e212$622cb3b0$6700a8c0@dmari> <1018609960.17384.6.camel@chinstrap> Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 Date: Fri, 12 Apr 2002 17:01:41 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by localhost.localdomain id g3CEv9713624 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dmari@lavinia.tc Precedence: bulk X-list: mpeg2 I just download the CVS version and it compiled allright! Thanks to Bram Stolk himself! Ok, now I have all the modules compiled as *.o files and from the kfir/driver/ directory I type : make insmod and this is where I'm locked now, getting this error message : [root@localhost driver]# make insmod make: /scripts/pathdown.sh: No se encontr=F3 el programa make make[1]: /scripts/pathdown.sh: No se encontr=F3 el programa make[1]: Cambiando a directorio `/root/CVSKfir/driver' DIR=3D`pwd`; (cd /usr/src/linux-2.4.7-10; make SUBDIRS=3D$DIR modules) make[2]: Cambiando a directorio `/usr/src/linux-2.4.7-10' make -C /root/CVSKfir/driver CFLAGS=3D"-D__KERNEL__ -I/usr/src/linux-2.4.7-10/include -Wall -Wstrict-prototypes -Wno-trigraph= s -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -Wno-unused -pipe -mpreferred-stack-boundary=3D2 -march=3Di686 -DMODULE -DMODVERSIONS -incl= ude /usr/src/linux-2.4.7-10/include/linux/modversions.h" MAKING_MODULES=3D1 modules make[3]: Cambiando a directorio `/root/CVSKfir/driver' make[3]: No se hace nada para `modules'. make[3]: Saliendo directorio `/root/CVSKfir/driver' make[2]: Saliendo directorio `/usr/src/linux-2.4.7-10' make[1]: Saliendo directorio `/root/CVSKfir/driver' insmod videodev Using /lib/modules/2.4.7-10/kernel/drivers/media/video/videodev.o insmod i2c-core.o i2c-core.o: unresolved symbol create_proc_entry_Rsmp_3a9bfbd2 i2c-core.o: unresolved symbol remove_proc_entry_Rsmp_cfd23da1 i2c-core.o: unresolved symbol __generic_copy_to_user_Rsmp_d523fdd3 i2c-core.o: unresolved symbol proc_bus_Rsmp_511d655f i2c-core.o: unresolved symbol kfree_Rsmp_037a0cba i2c-core.o: unresolved symbol printk_Rsmp_1b7d4074 i2c-core.o: unresolved symbol sprintf_Rsmp_3c2c5af5 i2c-core.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 make: [insmod] Error 1 (no tiene efecto) insmod i2c-algo-bit.o i2c-algo-bit.o: unresolved symbol i2c_add_adapter_Rsmp_33b75073 i2c-algo-bit.o: unresolved symbol printk_Rsmp_1b7d4074 i2c-algo-bit.o: unresolved symbol schedule_Rsmp_4292364c i2c-algo-bit.o: unresolved symbol __const_udelay_Rsmp_eae3dfd6 i2c-algo-bit.o: unresolved symbol __udelay_Rsmp_9e7d6bd0 i2c-algo-bit.o: unresolved symbol jiffies_Rsmp_0da02d67 i2c-algo-bit.o: unresolved symbol i2c_del_adapter_Rsmp_5babfe4d make: [insmod] Error 1 (no tiene efecto) insmod saa7113.o saa7113.o: unresolved symbol i2c_transfer_Rsmp_a2a7e455 saa7113.o: unresolved symbol i2c_add_driver_Rsmp_6d7c1838 saa7113.o: unresolved symbol i2c_detach_client_Rsmp_6f8b23f6 saa7113.o: unresolved symbol kfree_Rsmp_037a0cba saa7113.o: unresolved symbol printk_Rsmp_1b7d4074 saa7113.o: unresolved symbol i2c_master_send_Rsmp_06fe6d88 saa7113.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 saa7113.o: unresolved symbol i2c_del_driver_Rsmp_11a76106 saa7113.o: unresolved symbol i2c_attach_client_Rsmp_0e8734a0 make: [insmod] Error 1 (no tiene efecto) insmod kfir.o debug=3D1; kfir.o: unresolved symbol i2c_transfer_Rsmp_a2a7e455 kfir.o: unresolved symbol free_irq_Rsmp_f20dabd8 kfir.o: unresolved symbol i2c_bit_add_bus_Rsmp_d53ef5ba kfir.o: unresolved symbol pci_register_driver_Rsmp_304ebf84 kfir.o: unresolved symbol iounmap_Rsmp_5fb196d4 kfir.o: unresolved symbol pci_read_config_dword_Rsmp_086be4f9 kfir.o: unresolved symbol __generic_copy_to_user_Rsmp_d523fdd3 kfir.o: unresolved symbol video_unregister_device_Rsmp_a5512cf0 kfir.o: unresolved symbol sys_close_Rsmp_268cc6a2 kfir.o: unresolved symbol remove_wait_queue_Rsmp_2d22232f kfir.o: unresolved symbol __vmalloc_Rsmp_79995c5b kfir.o: unresolved symbol schedule_timeout_Rsmp_17d59d01 kfir.o: unresolved symbol __ioremap_Rsmp_9eac042a kfir.o: unresolved symbol __wake_up_Rsmp_127fda83 kfir.o: unresolved symbol kfree_Rsmp_037a0cba kfir.o: unresolved symbol printk_Rsmp_1b7d4074 kfir.o: unresolved symbol vfree_Rsmp_2fd1d81c kfir.o: unresolved symbol sprintf_Rsmp_3c2c5af5 kfir.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 kfir.o: unresolved symbol video_register_device_Rsmp_f59adb7b kfir.o: unresolved symbol i2c_bit_del_bus_Rsmp_2e7322be kfir.o: unresolved symbol schedule_Rsmp_4292364c kfir.o: unresolved symbol __const_udelay_Rsmp_eae3dfd6 kfir.o: unresolved symbol pci_unregister_driver_Rsmp_738350d9 kfir.o: unresolved symbol jiffies_Rsmp_0da02d67 kfir.o: unresolved symbol request_irq_Rsmp_0c60f2e0 kfir.o: unresolved symbol pci_write_config_dword_Rsmp_d187b286 kfir.o: unresolved symbol pci_read_config_word_Rsmp_2482fae9 kfir.o: unresolved symbol add_wait_queue_Rsmp_0987e9bc make: [insmod] Error 1 (no tiene efecto) any idea? Thanks a lot for your patiente, guys. I'm a real nerd. ;) ----------------------------------------------------------- David Mar=ED Mart=EDnez dmari@lavinia.tc Lav=EDniaTC www.lavinia.tc Permanyer,12 08009 Barcelona +34932723410 ----------------------------------------------------------- ----- Original Message ----- From: "Stephen Robert Norris" To: "David Mar=ED" Cc: Sent: Friday, April 12, 2002 1:12 PM Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 > > On Fri, 2002-04-12 at 21:08, David Mar=ED wrote: > > > > Hi there. > > > > I recently acquired de MPEG-2 kfir based board from linuxtv.org and i= t works so fine on windows 98 for me. > > > > My problem is when I enter the linux RedHat 7.2 arena : > > > > I followed the step-by-step procedure to install the driver, but it d= oes not compile! I am able to extract the microcode, but when it comes to compile the modules, it doesn't work. The kernel is version 2.4.7-10. > > > > Do you recommend that I use another linux version of RedHat? Maybe 7.= 0, 7.1 ? > > > > Or do you have any step-by-step guide to fix de bugs in the compilati= on in Redhat 7.2 or Kernels 2.4 and above? > > > > one of them is the typical deprecation of the used include malloc.h i= n the driver code. > > > > > > Thank you very much. > > What error are you getting? I remember I commented out the i2c stuff an= d > just used the kernels, which worked for me... > > -- > Stephen Norris srn@fn.com.au > Farrow Norris Pty Ltd +61 417 243 239 > > -- Attached file included as plaintext by Listar -- > -- File: signature.asc > -- Desc: This is a digitally signed message part > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iD8DBQA8tsEoe+ykMRrETOURApypAJ9s+lMEGxvnhy3c92pZTpMLWzBqTACfVBxO > 08bF0MG1GUShWIkWHOGdwq4=3D > =3DeZjl > -----END PGP SIGNATURE----- > > > From mpeg2-bounce@linuxtv.org Fri Apr 12 15:23:03 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 10666 invoked by uid 0); 12 Apr 2002 15:23:02 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 15:23:02 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w2tr-0004YL-00; Fri, 12 Apr 2002 17:23:43 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 17:23:29 +0200 (CEST) Received: from [194.250.46.228] (helo=mailhost-ext.availix.fr) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w2td-0004Wx-00 for ; Fri, 12 Apr 2002 17:23:29 +0200 Received: from (smap@localhost) by mailhost-ext.availix.fr (8.11.6/jtpda-5.3.3-lhj) id g3CFNRo02981 for ; Fri, 12 Apr 2002 17:23:27 +0200 X-Authentication-Warning: router.availix.fr: smap set sender to using -f Received: from (mailhost.availix.fr [192.168.1.20]) by router.availix.fr via smap (V2.1) id xma002979; Fri, 12 Apr 02 17:23:21 +0200 Received: from pc14.availix.fr (IDENT:root@pc14.availix.fr [192.168.1.34]) by mailhost.availix.fr (8.11.6/jtpda-5.3.3) with ESMTP id g3CFNLa03871 for ; Fri, 12 Apr 2002 17:23:21 +0200 Received: from (acounis@localhost) by pc14.availix.fr (8.11.6/jtpda-5.3.3) id g3CFNLX20701 ; Fri, 12 Apr 2002 17:23:21 +0200 Date: Fri, 12 Apr 2002 17:23:21 +0200 From: Stéphane ACOUNIS To: mpeg2@linuxtv.org Subject: [mpeg2] Multiple cards in a box ? Message-Id: <20020412172321.6ea18031.stephane.acounis@availix.fr> Organization: Availix S.A. X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.9; i586-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-MIME-Autoconverted: from 8bit to quoted-printable by mailhost.availix.fr id g3CFNLa03871 Content-Transfer-Encoding: quoted-printable X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: stephane.acounis@availix.fr Precedence: bulk X-list: mpeg2 Hello, Is it possible to put more than one card in a PC ? Can the driver cope with transparent PCI-PCI bridges (like the DEC 21154= ) ? Thank you --=20 St=E9phane ACOUNIS Ing=E9nieur Hardware - AVAILIX s.a. www.availix.fr - www.bladeclustering.org Tel: +33 1 41 40 02 15 Fax: +33 1 41 40 02 01 From mpeg2-bounce@linuxtv.org Fri Apr 12 16:14:51 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 25760 invoked by uid 0); 12 Apr 2002 16:14:50 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 16:14:50 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w3hy-0007qB-00; Fri, 12 Apr 2002 18:15:30 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 18:15:14 +0200 (CEST) Received: from amsfep11-int.chello.nl ([213.46.243.19]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w3hi-0007oG-00 for ; Fri, 12 Apr 2002 18:15:14 +0200 Received: from wiske ([213.93.64.170]) by amsfep11-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020412161439.RONT1209.amsfep11-int.chello.nl@wiske>; Fri, 12 Apr 2002 18:14:39 +0200 Date: Fri, 12 Apr 2002 18:14:29 +0200 From: Bram Stolk To: David Mar Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 Message-Id: <20020412181429.52cf7776.b.stolk@chello.nl> In-Reply-To: <01bd01c1e232$f46d23c0$6700a8c0@dmari> References: <00fb01c1e212$622cb3b0$6700a8c0@dmari> <1018609960.17384.6.camel@chinstrap> <01bd01c1e232$f46d23c0$6700a8c0@dmari> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 On Fri, 12 Apr 2002 17:01:41 +0200 David Mar wrote: > I just download the CVS version and it compiled allright! Thanks to Bram > Stolk himself! > > Ok, now I have all the modules compiled as *.o files and from the > kfir/driver/ directory I type : > > make insmod > > and this is where I'm locked now, getting this error message : rebuild your kernel with i2c and v4l, then only load modules saa7113 and kfir > > > [root@localhost driver]# make insmod > make: /scripts/pathdown.sh: No se encontró el programa > make > make[1]: /scripts/pathdown.sh: No se encontró el programa > make[1]: Cambiando a directorio `/root/CVSKfir/driver' > DIR=`pwd`; (cd /usr/src/linux-2.4.7-10; make SUBDIRS=$DIR modules) > make[2]: Cambiando a directorio `/usr/src/linux-2.4.7-10' > make -C /root/CVSKfir/driver CFLAGS="-D__KERNEL__ > -I/usr/src/linux-2.4.7-10/include -Wall -Wstrict-prototypes -Wno-trigraphs > -O2 -fomit-frame-pointer > -fno-strict-aliasing -fno-common -Wno-unused -pipe > -mpreferred-stack-boundary=2 -march=i686 -DMODULE -DMODVERSIONS -include > /usr/src/linux-2.4.7-10/include/linux/modversions.h" > MAKING_MODULES=1 modules > make[3]: Cambiando a directorio `/root/CVSKfir/driver' > make[3]: No se hace nada para `modules'. > make[3]: Saliendo directorio `/root/CVSKfir/driver' > make[2]: Saliendo directorio `/usr/src/linux-2.4.7-10' > > make[1]: Saliendo directorio `/root/CVSKfir/driver' > insmod videodev > Using /lib/modules/2.4.7-10/kernel/drivers/media/video/videodev.o > insmod i2c-core.o > i2c-core.o: unresolved symbol create_proc_entry_Rsmp_3a9bfbd2 > i2c-core.o: unresolved symbol remove_proc_entry_Rsmp_cfd23da1 > i2c-core.o: unresolved symbol __generic_copy_to_user_Rsmp_d523fdd3 > i2c-core.o: unresolved symbol proc_bus_Rsmp_511d655f > i2c-core.o: unresolved symbol kfree_Rsmp_037a0cba > i2c-core.o: unresolved symbol printk_Rsmp_1b7d4074 > i2c-core.o: unresolved symbol sprintf_Rsmp_3c2c5af5 > i2c-core.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 > make: [insmod] Error 1 (no tiene efecto) > insmod i2c-algo-bit.o > i2c-algo-bit.o: unresolved symbol i2c_add_adapter_Rsmp_33b75073 > i2c-algo-bit.o: unresolved symbol printk_Rsmp_1b7d4074 > i2c-algo-bit.o: unresolved symbol schedule_Rsmp_4292364c > i2c-algo-bit.o: unresolved symbol __const_udelay_Rsmp_eae3dfd6 > i2c-algo-bit.o: unresolved symbol __udelay_Rsmp_9e7d6bd0 > i2c-algo-bit.o: unresolved symbol jiffies_Rsmp_0da02d67 > i2c-algo-bit.o: unresolved symbol i2c_del_adapter_Rsmp_5babfe4d > make: [insmod] Error 1 (no tiene efecto) > insmod saa7113.o > saa7113.o: unresolved symbol i2c_transfer_Rsmp_a2a7e455 > saa7113.o: unresolved symbol i2c_add_driver_Rsmp_6d7c1838 > saa7113.o: unresolved symbol i2c_detach_client_Rsmp_6f8b23f6 > saa7113.o: unresolved symbol kfree_Rsmp_037a0cba > saa7113.o: unresolved symbol printk_Rsmp_1b7d4074 > saa7113.o: unresolved symbol i2c_master_send_Rsmp_06fe6d88 > saa7113.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 > saa7113.o: unresolved symbol i2c_del_driver_Rsmp_11a76106 > saa7113.o: unresolved symbol i2c_attach_client_Rsmp_0e8734a0 > make: [insmod] Error 1 (no tiene efecto) > insmod kfir.o debug=1; > kfir.o: unresolved symbol i2c_transfer_Rsmp_a2a7e455 > kfir.o: unresolved symbol free_irq_Rsmp_f20dabd8 > kfir.o: unresolved symbol i2c_bit_add_bus_Rsmp_d53ef5ba > kfir.o: unresolved symbol pci_register_driver_Rsmp_304ebf84 > kfir.o: unresolved symbol iounmap_Rsmp_5fb196d4 > kfir.o: unresolved symbol pci_read_config_dword_Rsmp_086be4f9 > kfir.o: unresolved symbol __generic_copy_to_user_Rsmp_d523fdd3 > kfir.o: unresolved symbol video_unregister_device_Rsmp_a5512cf0 > kfir.o: unresolved symbol sys_close_Rsmp_268cc6a2 > kfir.o: unresolved symbol remove_wait_queue_Rsmp_2d22232f > kfir.o: unresolved symbol __vmalloc_Rsmp_79995c5b > kfir.o: unresolved symbol schedule_timeout_Rsmp_17d59d01 > kfir.o: unresolved symbol __ioremap_Rsmp_9eac042a > kfir.o: unresolved symbol __wake_up_Rsmp_127fda83 > kfir.o: unresolved symbol kfree_Rsmp_037a0cba > kfir.o: unresolved symbol printk_Rsmp_1b7d4074 > kfir.o: unresolved symbol vfree_Rsmp_2fd1d81c > kfir.o: unresolved symbol sprintf_Rsmp_3c2c5af5 > kfir.o: unresolved symbol kmalloc_Rsmp_93d4cfe6 > kfir.o: unresolved symbol video_register_device_Rsmp_f59adb7b > kfir.o: unresolved symbol i2c_bit_del_bus_Rsmp_2e7322be > kfir.o: unresolved symbol schedule_Rsmp_4292364c > kfir.o: unresolved symbol __const_udelay_Rsmp_eae3dfd6 > kfir.o: unresolved symbol pci_unregister_driver_Rsmp_738350d9 > kfir.o: unresolved symbol jiffies_Rsmp_0da02d67 > kfir.o: unresolved symbol request_irq_Rsmp_0c60f2e0 > kfir.o: unresolved symbol pci_write_config_dword_Rsmp_d187b286 > kfir.o: unresolved symbol pci_read_config_word_Rsmp_2482fae9 > kfir.o: unresolved symbol add_wait_queue_Rsmp_0987e9bc > make: [insmod] Error 1 (no tiene efecto) > > > > any idea? > > > Thanks a lot for your patiente, guys. I'm a real nerd. ;) > > > > > ----------------------------------------------------------- > David Marí Martínez > dmari@lavinia.tc > LavíniaTC > www.lavinia.tc > Permanyer,12 > 08009 > Barcelona > +34932723410 > ----------------------------------------------------------- > ----- Original Message ----- > From: "Stephen Robert Norris" > To: "David Marí" > Cc: > Sent: Friday, April 12, 2002 1:12 PM > Subject: [mpeg2] Re: Problem compiling driver on Redhat 7.2 > > > > > > On Fri, 2002-04-12 at 21:08, David Marí wrote: > > > > > > Hi there. > > > > > > I recently acquired de MPEG-2 kfir based board from linuxtv.org and it > works so fine on windows 98 for me. > > > > > > My problem is when I enter the linux RedHat 7.2 arena : > > > > > > I followed the step-by-step procedure to install the driver, but it does > not compile! I am able to extract the microcode, but when it comes to > compile the modules, it doesn't work. The kernel is version 2.4.7-10. > > > > > > Do you recommend that I use another linux version of RedHat? Maybe 7.0, > 7.1 ? > > > > > > Or do you have any step-by-step guide to fix de bugs in the compilation > in Redhat 7.2 or Kernels 2.4 and above? > > > > > > one of them is the typical deprecation of the used include malloc.h in > the driver code. > > > > > > > > > Thank you very much. > > > > What error are you getting? I remember I commented out the i2c stuff and > > just used the kernels, which worked for me... > > > > -- > > Stephen Norris srn@fn.com.au > > Farrow Norris Pty Ltd +61 417 243 239 > > > > -- Attached file included as plaintext by Listar -- > > -- File: signature.asc > > -- Desc: This is a digitally signed message part > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v1.0.6 (GNU/Linux) > > Comment: For info see http://www.gnupg.org > > > > iD8DBQA8tsEoe+ykMRrETOURApypAJ9s+lMEGxvnhy3c92pZTpMLWzBqTACfVBxO > > 08bF0MG1GUShWIkWHOGdwq4= > > =eZjl > > -----END PGP SIGNATURE----- > > > > > > > > > From mpeg2-bounce@linuxtv.org Fri Apr 12 16:44:03 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 3342 invoked by uid 0); 12 Apr 2002 16:44:03 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 16:44:03 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w4AG-0001MN-00; Fri, 12 Apr 2002 18:44:44 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 18:44:31 +0200 (CEST) Received: from amsfep16-int.chello.nl ([213.46.243.25]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w4A3-0001FU-00 for ; Fri, 12 Apr 2002 18:44:31 +0200 Received: from wiske ([213.93.64.170]) by amsfep16-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020412164359.DAAU26815.amsfep16-int.chello.nl@wiske>; Fri, 12 Apr 2002 18:43:59 +0200 Date: Fri, 12 Apr 2002 18:43:38 +0200 From: Bram Stolk To: =?ISO-8859-1?B?U3Q=?= Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Multiple cards in a box ? Message-Id: <20020412184338.29699339.b.stolk@chello.nl> In-Reply-To: <20020412172321.6ea18031.stephane.acounis@availix.fr> References: <20020412172321.6ea18031.stephane.acounis@availix.fr> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 On Fri, 12 Apr 2002 17:23:21 +0200 Stéphane ACOUNIS wrote: > Hello, > > Is it possible to put more than one card in a PC ? yes, I used 2 succesfully, recording simultaneously. I could not start them synchronously though. I've heard of reports of even more than 2 cards. > > Can the driver cope with transparent PCI-PCI bridges (like the DEC 21154) > ? I dont know > > Thank you > > -- > Stéphane ACOUNIS > Ingénieur Hardware - AVAILIX s.a. > www.availix.fr - www.bladeclustering.org > Tel: +33 1 41 40 02 15 Fax: +33 1 41 40 02 01 > > From mpeg2-bounce@linuxtv.org Fri Apr 12 18:13:17 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 32506 invoked by uid 0); 12 Apr 2002 18:13:17 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 12 Apr 2002 18:13:17 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16w5Yc-0006hD-00; Fri, 12 Apr 2002 20:13:58 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 12 Apr 2002 20:13:40 +0200 (CEST) Received: from web12107.mail.yahoo.com ([216.136.172.27]) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16w5YJ-0006fc-00 for ; Fri, 12 Apr 2002 20:13:40 +0200 Message-ID: <20020412181337.4838.qmail@web12107.mail.yahoo.com> Received: from [209.244.4.106] by web12107.mail.yahoo.com via HTTP; Fri, 12 Apr 2002 11:13:37 PDT Date: Fri, 12 Apr 2002 11:13:37 -0700 (PDT) From: Ryan Kish Subject: [mpeg2] Kfir question To: mpeg2@linuxtv.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: finse46@yahoo.com Precedence: bulk X-list: mpeg2 Hello all, I have been thinking about buying the kfir card from BMK. I would like to use this card to capture data from a s/video or composite connection and store the mpeg for viewing at a later time via my dxr3. Hunting around the internet I think I found a mpeg capture (from a kfir / linux combo). Playing this file through my dxr3 resulted in very poor sync. My question: Does anyone use a kfir/dxr3 combo to do something similar to what I have described above? This information will help me determine if I should make this investment in time/money. Thanks in advance, Ryan ===== Before you criticize a man, walk a mile in his shoes. That way, when you criticize him, you are a mile away and you have his shoes! __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ From mpeg2-bounce@linuxtv.org Sat Apr 13 02:12:16 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 24624 invoked by uid 0); 13 Apr 2002 02:12:16 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 13 Apr 2002 02:12:16 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16wD28-0006hk-00; Sat, 13 Apr 2002 04:12:56 +0200 Received: with LISTAR (v0.129a; list mpeg2); Sat, 13 Apr 2002 04:12:29 +0200 (CEST) Received: from web12107.mail.yahoo.com ([216.136.172.27]) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 16wD1g-0006g6-00 for ; Sat, 13 Apr 2002 04:12:28 +0200 Message-ID: <20020413021226.49351.qmail@web12107.mail.yahoo.com> Received: from [63.64.59.3] by web12107.mail.yahoo.com via HTTP; Fri, 12 Apr 2002 19:12:26 PDT Date: Fri, 12 Apr 2002 19:12:26 -0700 (PDT) From: Ryan Kish Subject: [mpeg2] Re: Kfir question To: mpeg2@linuxtv.org In-Reply-To: <20020412134600.1e670df1.torsten@inetw.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: finse46@yahoo.com Precedence: bulk X-list: mpeg2 > > Hunting around the internet I think I found a mpeg > > capture (from a kfir / linux combo). Playing this > file > > through my dxr3 resulted in very poor sync. > > I'm not sure what you mean by "poor synch." As far > as > Audio/Video synch, I have never had a problem with > the > kfir. I don't use a dxr3 to decode, however. > > Torsten Perhaps the file I used was not captured by the kfir card. One note, I used mplayer and xine to test this file. I found both apps had trouble keeping a/v synch when outputing to the dxr3 or using Xv. Another, more evil os's media player managed to keep a/v synch. Does anyone have a mpeg I could download to attempt my test again? Thanks again, Ryan ===== Before you criticize a man, walk a mile in his shoes. That way, when you criticize him, you are a mile away and you have his shoes! __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ From mpeg2-bounce@linuxtv.org Mon Apr 15 08:10:38 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 10263 invoked by uid 0); 15 Apr 2002 08:10:38 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 15 Apr 2002 08:10:38 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16x1Zz-0005LM-00; Mon, 15 Apr 2002 10:11:15 +0200 Received: with LISTAR (v0.129a; list mpeg2); Mon, 15 Apr 2002 10:09:50 +0200 (CEST) Received: from dial-195-14-254-49.netcologne.de ([195.14.254.49] helo=rjkm.de) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 16w3fh-0007hq-00 for ; Fri, 12 Apr 2002 18:13:09 +0200 Received: (from rjkm@localhost) by rjkm.de (8.12.0.Beta19/8.12.0.Beta19) id g3CGE5CT001539; Fri, 12 Apr 2002 18:14:05 +0200 Message-ID: <15543.1996.866884.510848@gargle.gargle.HOWL> Date: Fri, 12 Apr 2002 18:14:04 +0200 To: StXphane ACOUNIS from: rjkm@convergence.de Cc: mpeg2@linuxtv.org Subject: [mpeg2] Multiple cards in a box ? In-Reply-To: <20020412172321.6ea18031.stephane.acounis@availix.fr> References: <20020412172321.6ea18031.stephane.acounis@availix.fr> X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII X-Approved-By: dirk@convergence.de X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: dirk@convergence.de Precedence: bulk X-list: mpeg2 StXphane ACOUNIS writes: > Hello, > > Is it possible to put more than one card in a PC ? Yes > Can the driver cope with transparent PCI-PCI bridges (like the DEC 21154) > ? This is done by the kernel PCI functions. They should report all cards to the driver, also those on a different PCI bridge. Ralph From mpeg2-bounce@linuxtv.org Tue Apr 16 14:13:26 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 10491 invoked by uid 0); 16 Apr 2002 14:13:25 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 16 Apr 2002 14:13:25 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16xTib-0006Kt-00; Tue, 16 Apr 2002 16:14:01 +0200 Received: with LISTAR (v0.129a; list mpeg2); Tue, 16 Apr 2002 16:11:48 +0200 (CEST) Received: from [194.250.46.228] (helo=mailhost-ext.availix.fr) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 16xTgQ-0006HV-00 for ; Tue, 16 Apr 2002 16:11:47 +0200 Received: from (smap@localhost) by mailhost-ext.availix.fr (8.11.6/jtpda-5.3.3-lhj) id g3GEBjO16991 for ; Tue, 16 Apr 2002 16:11:45 +0200 X-Authentication-Warning: router.availix.fr: smap set sender to using -f Received: from (mailhost.availix.fr [192.168.1.20]) by router.availix.fr via smap (V2.1) id xma016989; Tue, 16 Apr 02 16:11:43 +0200 Received: from pc14.availix.fr (IDENT:root@pc14.availix.fr [192.168.1.34]) by mailhost.availix.fr (8.11.6/jtpda-5.3.3) with ESMTP id g3GEBha21154 for ; Tue, 16 Apr 2002 16:11:43 +0200 Received: from (acounis@localhost) by pc14.availix.fr (8.11.6/jtpda-5.3.3) id g3GEBgD02517 ; Tue, 16 Apr 2002 16:11:42 +0200 Date: Tue, 16 Apr 2002 16:11:42 +0200 From: Stéphane ACOUNIS To: mpeg2@linuxtv.org Subject: [mpeg2] Kfir success Message-Id: <20020416161142.4600748c.stephane.acounis@availix.fr> Organization: Availix S.A. X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.9; i586-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-MIME-Autoconverted: from 8bit to quoted-printable by mailhost.availix.fr id g3GEBha21154 Content-Transfer-Encoding: quoted-printable X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: stephane.acounis@availix.fr Precedence: bulk X-list: mpeg2 Just to say that with the CVS version everything worked fine, didn't even crash the machine !!! Where is the Linux Spirit if everything works great at the first try ??? :) --=20 St=E9phane ACOUNIS Ing=E9nieur Hardware - AVAILIX s.a. www.availix.fr - www.bladeclustering.org Tel: +33 1 41 40 02 15 Fax: +33 1 41 40 02 01 From mpeg2-bounce@linuxtv.org Wed Apr 24 20:09:26 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 2872 invoked by uid 0); 24 Apr 2002 20:09:26 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 24 Apr 2002 20:09:26 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 170T5K-0007u2-00; Wed, 24 Apr 2002 22:09:50 +0200 Received: with LISTAR (v0.129a; list mpeg2); Wed, 24 Apr 2002 22:08:30 +0200 (CEST) Received: from ejc.ecomda.com ([212.18.24.150]) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 170T42-0007rJ-00 for ; Wed, 24 Apr 2002 22:08:30 +0200 Received: (qmail 5380 invoked from network); 24 Apr 2002 19:33:07 -0000 Received: from pd9e4d359.dip.t-dialin.net (HELO vertech.no) (torgeir@[217.228.211.89]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 24 Apr 2002 19:33:07 -0000 Message-ID: <3CC71087.9050505@vertech.no> Date: Wed, 24 Apr 2002 22:07:35 +0200 From: Torgeir Veimo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9+) Gecko/20020417 X-Accept-Language: en-us, en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] latest version of kfir driver? Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: torgeir@vertech.no Precedence: bulk X-list: mpeg2 Where's the latest kfir driver for linux? I looked in the download area and the latest file is from march last year. -- -Torgeir From mpeg2-bounce@linuxtv.org Wed Apr 24 20:23:38 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 7700 invoked by uid 0); 24 Apr 2002 20:23:37 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 24 Apr 2002 20:23:37 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 170TJ5-0008MI-00; Wed, 24 Apr 2002 22:24:03 +0200 Received: with LISTAR (v0.129a; list mpeg2); Wed, 24 Apr 2002 22:23:53 +0200 (CEST) Received: from amsfep12-int.chello.nl ([213.46.243.17]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 170TIu-0008L8-00 for ; Wed, 24 Apr 2002 22:23:52 +0200 Received: from wiske ([213.93.64.170]) by amsfep12-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020424202321.BHEA2595.amsfep12-int.chello.nl@wiske>; Wed, 24 Apr 2002 22:23:21 +0200 Date: Wed, 24 Apr 2002 22:23:19 +0200 From: Bram Stolk To: Torgeir Veimo Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: latest version of kfir driver? Message-Id: <20020424222319.713c7f25.b.stolk@chello.nl> In-Reply-To: <3CC71087.9050505@vertech.no> References: <3CC71087.9050505@vertech.no> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 On Wed, 24 Apr 2002 22:07:35 +0200 Torgeir Veimo wrote: > Where's the latest kfir driver for linux? get it from cvs: :pserver:anonymous@linuxtv.org:/cvs/linuxtv bram > > I looked in the download area and the latest file is from march last year. > > -- > -Torgeir > > > From mpeg2-bounce@linuxtv.org Mon Apr 29 20:39:36 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 6776 invoked by uid 0); 29 Apr 2002 20:39:36 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 29 Apr 2002 20:39:36 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172GzN-00082G-00; Mon, 29 Apr 2002 21:39:09 +0200 Received: with LISTAR (v0.129a; list mpeg2); Mon, 29 Apr 2002 21:35:56 +0200 (CEST) Received: from f219.pav1.hotmail.com ([64.4.31.219] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172GwF-0007xq-00 for ; Mon, 29 Apr 2002 21:35:55 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 12:35:23 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 29 Apr 2002 19:35:23 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 12:35:23 -0700 Mime-Version: 1.0 Content-type: text/plain Message-ID: X-OriginalArrivalTime: 29 Apr 2002 19:35:23.0938 (UTC) FILETIME=[01ADF020:01C1EFB5] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 -- Unable to decode HTML file!! -- From mpeg2-bounce@linuxtv.org Mon Apr 29 21:44:08 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26399 invoked by uid 0); 29 Apr 2002 21:44:06 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 29 Apr 2002 21:44:06 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172Hzo-0002Xx-00; Mon, 29 Apr 2002 22:43:40 +0200 Received: with LISTAR (v0.129a; list mpeg2); Mon, 29 Apr 2002 22:41:36 +0200 (CEST) Received: from f30.pav1.hotmail.com ([64.4.31.30] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172Hxn-0002SL-00 for ; Mon, 29 Apr 2002 22:41:36 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 13:41:04 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 29 Apr 2002 20:41:04 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 13:41:04 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 29 Apr 2002 20:41:04.0398 (UTC) FILETIME=[2E606AE0:01C1EFBE] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi, I got two BMK Kfir Mpeg2 PCI encoder boards recently, and was unable to make them working under Red Hat Linux 7.2. After loading the modules, I got from /var/log/messages: Linux video capture interface: v1.00 i2c-core.o: i2c core module i2c-algo-bit.o: i2c bit algorithm module i2c-core.o: driver SAA7113 registered. saa7113: init_module kfir: Kfir board revision 5e loaded microcode with length 32385 kfir: Reset Altera kfir: done kfir: Reset Kfir and PLL ... done ADSP loading successful kfir: ADSP initialization...done kfir: segment: 0 Done kfir: segment: 1 Done kfir: segment: 2 Done kfir: segment: 3 Done kfir: segment: 4 Done kfir: segment: 5 Done kfir: Download parameters...kfir: done saa7113: version=11 saa7113: attaching SAA7113 at 0x4a kfir: saa7113 decoder attached kfir: i2c attach [SAA7113] i2c-core.o: client [SAA7113] registered to adapter [kfir #0](pos. 0). saa7113: status=81 saa7113: attached to adapter kfir #0 i2c-core.o: adapter kfir #0 registered as adapter 0. kfir: Found i2c device at: 0x4a kfir: decoder status=7 kfir: start recording kfir: Download parameters...kfir: done eready=00200001 Everything seems Ok, so after that I connected a video source (both NTSC & PAL) to the composite input, did the "cat /dev/video0 >test.mpg", I got 0 byte for the test.mpg. When I pressed Ctrl-C, the program terminated and then I saw eready=00200004 Any idea? Thanks, Niu Ding _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. From mpeg2-bounce@linuxtv.org Mon Apr 29 21:44:17 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26499 invoked by uid 0); 29 Apr 2002 21:44:16 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 29 Apr 2002 21:44:16 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172Hzy-0002al-00; Mon, 29 Apr 2002 22:43:50 +0200 Received: with LISTAR (v0.129a; list mpeg2); Mon, 29 Apr 2002 22:42:26 +0200 (CEST) Received: from f42.pav1.hotmail.com ([64.4.31.42] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172Hyb-0002Sq-00 for ; Mon, 29 Apr 2002 22:42:26 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 13:41:54 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 29 Apr 2002 20:41:50 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 13:41:50 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 29 Apr 2002 20:41:54.0163 (UTC) FILETIME=[4C09F430:01C1EFBE] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi, I got two BMK Kfir Mpeg2 PCI encoder boards recently, and was unable to make them working under Red Hat Linux 7.2. After loading the modules, I got from /var/log/messages: Linux video capture interface: v1.00 i2c-core.o: i2c core module i2c-algo-bit.o: i2c bit algorithm module i2c-core.o: driver SAA7113 registered. saa7113: init_module kfir: Kfir board revision 5e loaded microcode with length 32385 kfir: Reset Altera kfir: done kfir: Reset Kfir and PLL ... done ADSP loading successful kfir: ADSP initialization...done kfir: segment: 0 Done kfir: segment: 1 Done kfir: segment: 2 Done kfir: segment: 3 Done kfir: segment: 4 Done kfir: segment: 5 Done kfir: Download parameters...kfir: done saa7113: version=11 saa7113: attaching SAA7113 at 0x4a kfir: saa7113 decoder attached kfir: i2c attach [SAA7113] i2c-core.o: client [SAA7113] registered to adapter [kfir #0](pos. 0). saa7113: status=81 saa7113: attached to adapter kfir #0 i2c-core.o: adapter kfir #0 registered as adapter 0. kfir: Found i2c device at: 0x4a kfir: decoder status=7 kfir: start recording kfir: Download parameters...kfir: done eready=00200001 Everything seems Ok, so after that I connected a video source (both NTSC & PAL) to the composite input, did the "cat /dev/video0 >test.mpg", I got 0 byte for the test.mpg. When I pressed Ctrl-C, the program terminated and then I saw eready=00200004 Any idea? Thanks, Niu Ding _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From mpeg2-bounce@linuxtv.org Mon Apr 29 22:53:16 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 18055 invoked by uid 0); 29 Apr 2002 22:53:16 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 29 Apr 2002 22:53:16 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172J4l-0005x7-00; Mon, 29 Apr 2002 23:52:51 +0200 Received: with LISTAR (v0.129a; list mpeg2); Mon, 29 Apr 2002 23:51:12 +0200 (CEST) Received: from f78.pav1.hotmail.com ([64.4.31.78] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172J3A-0005r3-00 for ; Mon, 29 Apr 2002 23:51:12 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 14:50:40 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 29 Apr 2002 21:50:40 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 14:50:40 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 29 Apr 2002 21:50:40.0886 (UTC) FILETIME=[E7C1E960:01C1EFC7] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi, I got two BMK Kfir Mpeg2 PCI encoder boards recently, and was unable to make them working under Red Hat Linux 7.2. After loading the modules, I got from /var/log/messages: Linux video capture interface: v1.00 i2c-core.o: i2c core module i2c-algo-bit.o: i2c bit algorithm module i2c-core.o: driver SAA7113 registered. saa7113: init_module kfir: Kfir board revision 5e loaded microcode with length 32385 kfir: Reset Altera kfir: done kfir: Reset Kfir and PLL ... done ADSP loading successful kfir: ADSP initialization...done kfir: segment: 0 Done kfir: segment: 1 Done kfir: segment: 2 Done kfir: segment: 3 Done kfir: segment: 4 Done kfir: segment: 5 Done kfir: Download parameters...kfir: done saa7113: version=11 saa7113: attaching SAA7113 at 0x4a kfir: saa7113 decoder attached kfir: i2c attach [SAA7113] i2c-core.o: client [SAA7113] registered to adapter [kfir #0](pos. 0). saa7113: status=81 saa7113: attached to adapter kfir #0 i2c-core.o: adapter kfir #0 registered as adapter 0. kfir: Found i2c device at: 0x4a kfir: decoder status=7 kfir: start recording kfir: Download parameters...kfir: done eready=00200001 Everything seems Ok, so after that I connected a video source (both NTSC & PAL) to the composite input, did the "cat /dev/video0 >test.mpg", I got 0 byte for the test.mpg. When I pressed Ctrl-C, the program terminated and then I saw eready=00200004 Any idea? Thanks, Niu Ding _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com From mpeg2-bounce@linuxtv.org Tue Apr 30 02:56:35 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 31570 invoked by uid 0); 30 Apr 2002 02:56:35 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 30 Apr 2002 02:56:35 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172MsD-0007As-00; Tue, 30 Apr 2002 03:56:09 +0200 Received: with LISTAR (v0.129a; list mpeg2); Tue, 30 Apr 2002 03:54:13 +0200 (CEST) Received: from f165.pav1.hotmail.com ([64.4.31.165] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172MqK-00075w-00 for ; Tue, 30 Apr 2002 03:54:12 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 18:53:40 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Tue, 30 Apr 2002 01:53:40 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: torsten@inetw.net Cc: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Re: Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 18:53:40 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 30 Apr 2002 01:53:40.0786 (UTC) FILETIME=[DA0E1920:01C1EFE9] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi Torsten, Thanks for your quick response. I did exactly the same as you: for NTSC video source: insmod kfir.o vidinmode=1 vidoutmode=0 vidinput=0 For PAL source: insmod kfir.o vidinmode=0 vidoutmode=1 vidinput=0 But got 0 byte data. I wrote a simple C program, after open the video device, it stuck in read(). What kind of system are you using? I am using an Compag PC with AMD 800Mhz. Thanks, Niu Ding >From: Torsten Howard >To: "Niu Ding" >Subject: Re: [mpeg2] Trying to get Kfir board to run, read 0 byte data >Date: Mon, 29 Apr 2002 19:35:41 -0500 > >It is common. You must make sure eveything is set up properly. > >You can't record NTSC with the module set PAL, and vice-versa. > >The module parameters are such that NTSC input and PAL output >are different numbered parameters, this is a common mistake. > >Here is what I use to record for NTSC. >-insmod kfir.o vidinmode=1 vidoutmode=0 vidinput=0 > > >Torsten > > > > > > >On Mon, 29 Apr 2002 14:50:40 -0700 >"Niu Ding" wrote: > > > Hi, > > > > I got two BMK Kfir Mpeg2 PCI encoder boards recently, and was unable to >make > > them > > working under Red Hat Linux 7.2. > > > > After loading the modules, I got from /var/log/messages: > > > > Linux video capture interface: v1.00 > > i2c-core.o: i2c core module > > i2c-algo-bit.o: i2c bit algorithm module > > i2c-core.o: driver SAA7113 registered. > > saa7113: init_module > > kfir: Kfir board revision 5e > > loaded microcode with length 32385 > > kfir: Reset Altera > > kfir: done > > kfir: Reset Kfir and PLL ... done > > ADSP loading successful > > kfir: ADSP initialization...done > > kfir: segment: 0 Done > > kfir: segment: 1 Done > > kfir: segment: 2 Done > > kfir: segment: 3 Done > > kfir: segment: 4 Done > > kfir: segment: 5 Done > > kfir: Download parameters...kfir: done > > saa7113: version=11 > > saa7113: attaching SAA7113 at 0x4a > > kfir: saa7113 decoder attached > > kfir: i2c attach [SAA7113] > > i2c-core.o: client [SAA7113] registered to adapter [kfir #0](pos. 0). > > saa7113: status=81 > > saa7113: attached to adapter kfir #0 > > i2c-core.o: adapter kfir #0 registered as adapter 0. > > kfir: Found i2c device at: 0x4a > > kfir: decoder status=7 > > kfir: start recording > > kfir: Download parameters...kfir: done > > eready=00200001 > > > > Everything seems Ok, so after that I connected a video source (both NTSC >& > > PAL) to the > > composite input, did the "cat /dev/video0 >test.mpg", I got 0 byte for >the > > test.mpg. > > > > When I pressed Ctrl-C, the program terminated and then I saw > > > > eready=00200004 > > > > Any idea? > > > > Thanks, > > > > Niu Ding > > > > > > _________________________________________________________________ > > Join the world’s largest e-mail service with MSN Hotmail. > > http://www.hotmail.com > > > > > > _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From mpeg2-bounce@linuxtv.org Tue Apr 30 04:55:16 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5349 invoked by uid 0); 30 Apr 2002 04:55:16 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 30 Apr 2002 04:55:16 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172Oj4-0003i2-00; Tue, 30 Apr 2002 05:54:50 +0200 Received: with LISTAR (v0.129a; list mpeg2); Tue, 30 Apr 2002 05:53:08 +0200 (CEST) Received: from f157.pav1.hotmail.com ([64.4.31.157] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 172OhQ-0003et-00 for ; Tue, 30 Apr 2002 05:53:08 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Apr 2002 20:52:37 -0700 Received: from 64.175.39.52 by pv1fd.pav1.hotmail.msn.com with HTTP; Tue, 30 Apr 2002 03:52:36 GMT X-Originating-IP: [64.175.39.52] From: "Niu Ding" To: dat@hpl.hp.com Cc: dat@hpldat.hpl.hp.com, mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Re: Trying to get Kfir board to run, read 0 byte data Date: Mon, 29 Apr 2002 20:52:36 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 30 Apr 2002 03:52:37.0190 (UTC) FILETIME=[77AEEE60:01C1EFFA] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi Andrew, It works! Thank you very much! However, we get the latest code from CVS, it does not have your fix, can anybody put it into the CVS? We have put your code in kfir_init_device() rather than kfir_irq(). Thanks, Niu Ding >From: Andrew Thomas >To: "Niu Ding" >CC: dat@hpldat.hpl.hp.com >Subject: [mpeg2] Re: Trying to get Kfir board to run, read 0 byte data >Date: Mon, 29 Apr 2002 19:04:41 -0700 > >Niu Ding writes: > > Hi Torsten, > > > > Thanks for your quick response. I did exactly the same as you: > > But got 0 byte data. I wrote a simple C program, after open the video > > device, it stuck in read(). > > > > What kind of system are you using? I am using an Compag PC with AMD >800Mhz. > >You might want to check that your system is enabling the card >as master. The problem stems from the way different bios'es >initialize the card at boot. The system I was working with >did not enable bus mastering and I was getting 0 byte reads. > >I posted a fix to the mpeg2 list and I believe that it made it >into the cvs tree through Ralph Metzler. > >Eyeball the kfir.c file and look for >pci_read_config_dword(kfir->pdev, PCI_COMMAND, &val) > >you should be able to paste the code below around that point. > >Andrew >------------- >Andrew Thomas | DISCLAIMER: opinions expressed in this >Hewlett-Packard Laboratories | message are personal and do not represent >1501 Page Mill Road MS 1138 | the opinions of Hewlett Packard Co. >Palo Alto CA 94304-1126 | >-------- > >1745,1746d1744 >< int intcount = 0; >< >1758,1768c1756 >< intcount++; >< pci_read_config_dword(kfir->pdev, PCI_COMMAND, &val); >< dprintk(KERN_CRIT "kfir: irq %d plx %x PCIsr %x\n", >< intcount, plxstat, val); >< if (val & 0x40000000 || val & 0x100) { >< val &= ~0x100; //disable serr >< val |= 4; // master enable >< pci_write_config_dword(kfir->pdev, PCI_COMMAND, >< val); >< } >< > > > _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From mpeg2-bounce@linuxtv.org Fri May 03 03:32:47 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5827 invoked by uid 0); 3 May 2002 03:32:47 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 3 May 2002 03:32:47 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173Srp-0000TP-00; Fri, 03 May 2002 04:32:17 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 03 May 2002 04:27:50 +0200 (CEST) Received: from fe7.southeast.rr.com ([24.93.67.54] helo=mail7.mgfairfax.rr.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173SnW-0007yP-00 for ; Fri, 03 May 2002 04:27:50 +0200 Received: from user4mucnf3lbv ([68.100.252.206]) by mail7.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.757.75); Thu, 2 May 2002 22:27:30 -0400 Message-ID: <065201c1f24a$0f3e7e20$4abca818@user4mucnf3lbv> From: "Chris Gettings" To: Subject: [mpeg2] kfir board avail? Date: Thu, 2 May 2002 22:27:23 -0400 MIME-Version: 1.0 Content-type: text/plain X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: cgettings@videonext.com Precedence: bulk X-list: mpeg2 Hello, I would like to buy 2 kfir MPEG2 boards. I posted a message on the linuxtv.org contact form but no response. Can someone here sell them to me or direct me? Thanks. Chris From mpeg2-bounce@linuxtv.org Fri May 03 09:40:10 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 31496 invoked by uid 0); 3 May 2002 09:40:10 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 3 May 2002 09:40:10 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173YbL-0000eL-00; Fri, 03 May 2002 10:39:39 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 03 May 2002 10:36:32 +0200 (CEST) Received: from cubalibre.convergence.de ([10.1.1.75] helo=convergence.de) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173YYK-0000ZO-00; Fri, 03 May 2002 10:36:32 +0200 Message-ID: <3CD24C08.4000302@convergence.de> Date: Fri, 03 May 2002 10:36:24 +0200 From: Frank Rosengart User-Agent: Mozilla/5.0 (X11; U; Linux 2.4.17 i686; en-US; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: de, en MIME-Version: 1.0 To: Chris Gettings CC: mpeg2@linuxtv.org Subject: [mpeg2] Re: kfir board avail? References: <065201c1f24a$0f3e7e20$4abca818@user4mucnf3lbv> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: rosengart@convergence.de Precedence: bulk X-list: mpeg2 Chris Gettings wrote: > Hello, I would like to buy 2 kfir MPEG2 boards. I posted a message on the linuxtv.org contact form but no response. Can someone here sell them to me or direct me? Thanks. As May, 1st was a holiday in germany please be patient. Can anybody else say something about the response time of BMK? #frank From mpeg2-bounce@linuxtv.org Fri May 03 09:49:05 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 3584 invoked by uid 0); 3 May 2002 09:49:05 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 3 May 2002 09:49:05 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173Yjy-0000wk-00; Fri, 03 May 2002 10:48:34 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 03 May 2002 10:45:43 +0200 (CEST) Received: from jat.jaet.org ([198.49.103.3] ident=root) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173YhC-0000rY-00 for ; Fri, 03 May 2002 10:45:42 +0200 Received: from localhost (jat@localhost) by jat.jaet.org (8.11.2/8.11.2) with ESMTP id g438jT929196; Fri, 3 May 2002 04:45:29 -0400 X-Authentication-Warning: jat.jaet.org: jat owned process doing -bs Date: Fri, 3 May 2002 04:45:29 -0400 (EDT) From: "John A. Tamplin" To: Frank Rosengart cc: Chris Gettings , Subject: [mpeg2] Re: kfir board avail? In-Reply-To: <3CD24C08.4000302@convergence.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: jat@jaet.org Precedence: bulk X-list: mpeg2 On Fri, 3 May 2002, Frank Rosengart wrote: > Chris Gettings wrote: > > > Hello, I would like to buy 2 kfir MPEG2 boards. I posted a message on the linuxtv.org contact form but no response. Can someone here sell them to me or direct me? Thanks. > > As May, 1st was a holiday in germany please be patient. Can anybody else > say something about the response time of BMK? I had excellent response from them back in October. -- John A. Tamplin jat@jaet.org 770/436-5387 HOME 4116 Manson Ave 770/319-9811 FAX Smyrna, GA 30082-3723 From mpeg2-bounce@linuxtv.org Fri May 03 16:12:19 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 1670 invoked by uid 0); 3 May 2002 16:12:19 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 3 May 2002 16:12:19 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173eiq-0006OB-00; Fri, 03 May 2002 17:11:48 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 03 May 2002 17:08:25 +0200 (CEST) Received: from ns2.videonext.com ([207.207.185.200] helo=mail.videonext.net) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 173efZ-00069R-00 for ; Fri, 03 May 2002 17:08:25 +0200 Received: (qmail 29282 invoked by uid 507); 3 May 2002 15:08:18 -0000 Received: from cgettings@videonext.com by mail.videonext.net with qmail-scanner-0.95 (sweep: 2.5/3.48. . Clean. Processed in 0.532392 secs); 03 May 2002 15:08:18 -0000 Received: from xvn1.videonext.com (HELO chrispc.videonext.com) (207.207.185.9) by mail.videonext.net with SMTP; 3 May 2002 15:08:17 -0000 Message-Id: <5.1.0.14.2.20020503110657.02cd4fd0@mail.videonext.net> X-Sender: cgettings@videonext.com@mail.videonext.net X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 03 May 2002 11:07:43 -0400 To: mpeg2@linuxtv.org From: Chris Gettings Subject: [mpeg2] Re: kfir board avail? In-Reply-To: <3CD24C08.4000302@convergence.de> References: <065201c1f24a$0f3e7e20$4abca818@user4mucnf3lbv> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: cgettings@videonext.com Precedence: bulk X-list: mpeg2 I didn't know about the holiday; I am naturally impatient. Thanks for your help. Chris From mpeg2-bounce@linuxtv.org Fri May 03 16:13:52 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 1774 invoked by uid 0); 3 May 2002 16:13:52 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 3 May 2002 16:13:52 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 173ekL-0006WT-00; Fri, 03 May 2002 17:13:21 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 03 May 2002 17:10:35 +0200 (CEST) Received: from web12108.mail.yahoo.com ([216.136.172.28]) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 173ehf-0006KG-00 for ; Fri, 03 May 2002 17:10:35 +0200 Message-ID: <20020503151033.78558.qmail@web12108.mail.yahoo.com> Received: from [209.244.4.106] by web12108.mail.yahoo.com via HTTP; Fri, 03 May 2002 08:10:33 PDT Date: Fri, 3 May 2002 08:10:33 -0700 (PDT) From: Ryan Kish Subject: [mpeg2] Re: kfir board avail? To: mpeg2@linuxtv.org In-Reply-To: <3CD24C08.4000302@convergence.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: finse46@yahoo.com Precedence: bulk X-list: mpeg2 > As May, 1st was a holiday in germany please be > patient. Can anybody else > say something about the response time of BMK? > > > #frank > I just received my card from BMK on 4/30/02. BMK was very fast to process my order request and deliver the board. Ryan ===== Before you criticize a man, walk a mile in his shoes. That way, when you criticize him, you are a mile away and you have his shoes! __________________________________________________ Do You Yahoo!? Yahoo! Health - your guide to health and wellness http://health.yahoo.com From mpeg2-bounce@linuxtv.org Wed May 08 22:21:04 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 5892 invoked by uid 0); 8 May 2002 22:21:04 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 8 May 2002 22:21:04 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175YrK-0004O1-00; Wed, 08 May 2002 23:20:26 +0200 Received: with LISTAR (v0.129a; list mpeg2); Wed, 08 May 2002 23:15:00 +0200 (CEST) Received: from closedmind.org ([204.178.31.2] helo=plan9.cs.bell-labs.com) by chambertin.convergence.de with smtp (Exim 3.33 #2 ) id 175Ym3-0004Im-00 for ; Wed, 08 May 2002 23:15:00 +0200 Message-ID: <82ff74cd66917e7d843d74e56054a9df@plan9.bell-labs.com> To: mpeg2@linuxtv.org Subject: [mpeg2] WinTV/PVR. From: Peter Bosch Date: Wed, 8 May 2002 17:14:41 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: pb@research.bell-labs.com Precedence: bulk X-list: mpeg2 Hello, I'm writing a WinTV PVR driver for Plan 9, and I can't seem to find the MSG3435G on the I2C bus (see also a posting on Feb 9, 2001). I was wondering if anybody knows how to drive/reach the sound processor from the Bt878. Thanks, peter. From mpeg2-bounce@linuxtv.org Thu May 09 00:05:36 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 8123 invoked by uid 0); 9 May 2002 00:05:36 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 00:05:36 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175aUT-0001xO-00; Thu, 09 May 2002 01:04:57 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 01:03:13 +0200 (CEST) Received: from f49.pav1.hotmail.com ([64.4.31.49] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175aSm-0001ub-00 for ; Thu, 09 May 2002 01:03:13 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 8 May 2002 16:01:40 -0700 Received: from 64.175.38.247 by pv1fd.pav1.hotmail.msn.com with HTTP; Wed, 08 May 2002 23:01:40 GMT X-Originating-IP: [64.175.38.247] From: "Niu Ding" To: mpeg2@linuxtv.org Bcc: Subject: [mpeg2] Multiple Kfir and WinTV boards Date: Wed, 08 May 2002 16:01:40 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 08 May 2002 23:01:40.0924 (UTC) FILETIME=[50A7DFC0:01C1F6E4] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi, I have two Kfir boards and two WinTV boards on my Linux system (Red Hat 7.2), as both drivers use /dev/video, the Kfir boards were unable to work properly. Is it possible to modify the Kfir driver to use a device name other than /dev/video? For example, /dev/mpeg? Thanks, Niu Ding _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. From mpeg2-bounce@linuxtv.org Thu May 09 09:19:46 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26724 invoked by uid 0); 9 May 2002 09:19:46 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 09:19:46 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175j8l-0001jO-00; Thu, 09 May 2002 10:19:07 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 10:18:11 +0200 (CEST) Received: from mta03-svc.ntlworld.com ([62.253.162.43]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175j7r-0001hg-00 for ; Thu, 09 May 2002 10:18:11 +0200 Received: from mistral ([80.2.252.91]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020509081800.JXVP295.mta03-svc.ntlworld.com@mistral>; Thu, 9 May 2002 09:18:00 +0100 Message-ID: <001101c1f732$07b85170$030ba8c0@mistral> From: "Simon Turvey" To: , "Peter Bosch" References: <82ff74cd66917e7d843d74e56054a9df@plan9.bell-labs.com> Subject: [mpeg2] Re: WinTV/PVR. Date: Thu, 9 May 2002 09:17:59 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: turveysp@ntlworld.com Precedence: bulk X-list: mpeg2 > I'm writing a WinTV PVR driver for Plan 9, and I can't seem to > find the MSG3435G on the I2C bus (see also a posting on > Feb 9, 2001). I was wondering if anybody knows how to > drive/reach the sound processor from the Bt878. You might want to take a look at our work in progress driver on pvr.sourceforge.net. Development's a little slow at present but due to resume again very shortly. It might be useful for us to colaborate - what do you reckon? Anyway, the problem with the MSG3435G might be similar to that which we had with the MSP3400 or the SAA7113. The MSP3400 was not visible until the Altera had been inititalised as it's the FPGA that forms the connections between a good many of the boards components. I'd imagine that you're past this point though. However hard I tried, I could not communicate with the SAA7113 using straight I2C. I had to convert the driver to use the smbus subset and then it seemed to work fine. All the best, Simon From mpeg2-bounce@linuxtv.org Thu May 09 09:56:03 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 4283 invoked by uid 0); 9 May 2002 09:56:03 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 09:56:03 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175jhr-0003ay-00; Thu, 09 May 2002 10:55:23 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 10:55:15 +0200 (CEST) Received: from amsfep13-int.chello.nl ([213.46.243.23]) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175jhi-0003ZQ-00 for ; Thu, 09 May 2002 10:55:14 +0200 Received: from wiske ([213.93.64.170]) by amsfep13-int.chello.nl (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020509085444.IOYS13209.amsfep13-int.chello.nl@wiske>; Thu, 9 May 2002 10:54:44 +0200 Date: Thu, 9 May 2002 10:54:42 +0200 From: Bram Stolk To: "Niu Ding" Cc: mpeg2@linuxtv.org Subject: [mpeg2] Re: Multiple Kfir and WinTV boards Message-Id: <20020509105442.2737d5f8.b.stolk@chello.nl> In-Reply-To: References: X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386-debian-linux-gnu) X-Face: "gXdEm_sRQpiK,F~![`V#F`d]lLx+&JIW%Nqj972.Bft|$(PA!wFSH2*A7&^Bkyj[ZNl5!+r3$za^M3i."HONx0tS9B:Av M"qCTVF\#*%^4RrRtY8,F}e-t);!4^BM\sE.Q8pg>^Wu-anHshDki]9sumy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: b.stolk@chello.nl Precedence: bulk X-list: mpeg2 On Wed, 08 May 2002 16:01:40 -0700 "Niu Ding" wrote: > Hi, > > I have two Kfir boards and two WinTV boards on my Linux system (Red Hat > 7.2), as both drivers use /dev/video, the Kfir boards were unable to work > properly. This should be no problem. I have a wintv board also, at /dev/video0 the kfir siply becomes /dev/video1 (could also be the other way around, dont remember exactly) > > Is it possible to modify the Kfir driver to use a device name other than > /dev/video? For example, /dev/mpeg? > > Thanks, > > Niu Ding > > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. > > > From mpeg2-bounce@linuxtv.org Thu May 09 15:20:04 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 13209 invoked by uid 0); 9 May 2002 15:20:04 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 15:20:04 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175olQ-00033L-00; Thu, 09 May 2002 16:19:24 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 16:18:50 +0200 (CEST) Received: from ejc.ecomda.com ([212.18.24.150]) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 175oks-00031l-00 for ; Thu, 09 May 2002 16:18:50 +0200 Received: (qmail 3710 invoked from network); 9 May 2002 13:39:09 -0000 Received: from gatekeeper.ecomda.com ([212.18.24.146]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 9 May 2002 13:39:09 -0000 Message-ID: <3CDA8415.9010904@vertech.no> Received: from atlanta.intern.ecomda.de by gatekeeper.ecomda.com via smtpd (for ejc.ecomda.com [212.18.24.150]) with SMTP; 9 May 2002 14:18:48 UT Date: Thu, 09 May 2002 16:13:41 +0200 From: Torgeir Veimo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0rc1) Gecko/20020425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: mpeg2@linuxtv.org Subject: [mpeg2] Re: WinTV/PVR. References: <82ff74cd66917e7d843d74e56054a9df@plan9.bell-labs.com> X-Enigmail-Version: 0.49.5.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: torgeir@vertech.no Precedence: bulk X-list: mpeg2 Peter Bosch wrote: > Hello, > > I'm writing a WinTV PVR driver for Plan 9, and I can't seem to > find the MSG3435G on the I2C bus (see also a posting on > Feb 9, 2001). I was wondering if anybody knows how to > drive/reach the sound processor from the Bt878. Did you look at pvr.sf.net? The msp34xx is on the i2c bus of the bt878a, but the reset line is through the altera, so you need to load the firmware for that one before loading the msp34xx module. How different from linux are driver development under plan 9? -- -Torgeir From mpeg2-bounce@linuxtv.org Thu May 09 18:04:53 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 1436 invoked by uid 0); 9 May 2002 18:04:53 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 18:04:53 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175rKv-00053o-00; Thu, 09 May 2002 19:04:13 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 19:03:58 +0200 (CEST) Received: from ejc.ecomda.com ([212.18.24.150]) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 175rKg-00052N-00 for ; Thu, 09 May 2002 19:03:58 +0200 Received: (qmail 4219 invoked from network); 9 May 2002 16:24:16 -0000 Received: from gatekeeper.ecomda.com ([212.18.24.146]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 9 May 2002 16:24:16 -0000 Message-ID: <3CDAAAC9.7010205@vertech.no> Received: from atlanta.intern.ecomda.de by gatekeeper.ecomda.com via smtpd (for ejc.ecomda.com [212.18.24.150]) with SMTP; 9 May 2002 17:03:57 UT Date: Thu, 09 May 2002 18:58:49 +0200 From: Torgeir Veimo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0rc1) Gecko/20020425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: mpeg2 Subject: [mpeg2] Re: WinTV/PVR. References: <82ff74cd66917e7d843d74e56054a9df@plan9.bell-labs.com> X-Enigmail-Version: 0.49.5.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: torgeir@vertech.no Precedence: bulk X-list: mpeg2 Peter Bosch wrote: > Hello, > > I'm writing a WinTV PVR driver for Plan 9, and I can't seem to > find the MSG3435G on the I2C bus (see also a posting on > Feb 9, 2001). I was wondering if anybody knows how to > drive/reach the sound processor from the Bt878. Btv, do anyone here have the kfir docs that was removed from the VisionTech website? Please contact me directly. -- -Torgeir From mpeg2-bounce@linuxtv.org Thu May 09 18:58:17 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 16371 invoked by uid 0); 9 May 2002 18:58:17 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 9 May 2002 18:58:17 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175sAb-0007Ap-00; Thu, 09 May 2002 19:57:37 +0200 Received: with LISTAR (v0.129a; list mpeg2); Thu, 09 May 2002 19:57:23 +0200 (CEST) Received: from f86.pav1.hotmail.com ([64.4.31.86] helo=hotmail.com) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175sAN-00079G-00 for ; Thu, 09 May 2002 19:57:23 +0200 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 9 May 2002 10:56:51 -0700 Received: from 67.112.122.144 by pv1fd.pav1.hotmail.msn.com with HTTP; Thu, 09 May 2002 17:56:51 GMT X-Originating-IP: [67.112.122.144] From: "Niu Ding" To: mpeg2@linuxtv.org Cc: b.stolk@chello.nl Bcc: Subject: [mpeg2] Re: Multiple Kfir and WinTV boards Date: Thu, 09 May 2002 10:56:51 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 09 May 2002 17:56:51.0360 (UTC) FILETIME=[E5A3A200:01C1F782] X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: niuding@hotmail.com Precedence: bulk X-list: mpeg2 Hi, When I plug in only two kfir boards or only two Haupauge WinTV cards, they work properly. But if I plug in all of them together, both following failed: 1. Load WinTV first: After loading WinTV (modprobe bttv, modprobe tuner), load kfir driver got a segmentation fault. 2. Load Kfir first, After loading Kfir driver, load WinTV driver, WinTV device points to /dev/video0 & /dev/video1 (occupied by Kfir). Strangely enough, even I don't load WinTV drivers, the Kfir boards were unable to work properly (drop lots of data). BTW, here is the script I use to load Kfir driver: insmod videodev.o insmod i2c-core.o insmod i2c-algo-bit.o insmod saa7113.o insmod kfir.o vidinmode=0 vidoutmode=1 vidinput=0 Thanks, Niu Ding >From: Bram Stolk >To: "Niu Ding" >CC: mpeg2@linuxtv.org >Subject: Re: [mpeg2] Multiple Kfir and WinTV boards >Date: Thu, 9 May 2002 10:54:42 +0200 > >On Wed, 08 May 2002 16:01:40 -0700 >"Niu Ding" wrote: > > > Hi, > > > > I have two Kfir boards and two WinTV boards on my Linux system (Red Hat > > 7.2), as both drivers use /dev/video, the Kfir boards were unable to >work > > properly. > >This should be no problem. >I have a wintv board also, >at /dev/video0 >the kfir siply becomes /dev/video1 >(could also be the other way around, dont remember exactly) > > > > > > Is it possible to modify the Kfir driver to use a device name other than > > /dev/video? For example, /dev/mpeg? > > > > Thanks, > > > > Niu Ding > > > > > > > > _________________________________________________________________ > > Get your FREE download of MSN Explorer at >http://explorer.msn.com/intl.asp. > > > > > > > _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com From mpeg2-bounce@linuxtv.org Fri May 10 01:58:32 2002 Return-Path: Delivered-To: mhonarc@limes.convergence.de Received: (qmail 26177 invoked by uid 0); 10 May 2002 01:58:32 -0000 Received: from chambertin.convergence.de (212.84.236.2) by limes.convergence.de with SMTP; 10 May 2002 01:58:32 -0000 Received: from localhost ([127.0.0.1] helo=chambertin) by chambertin.convergence.de with esmtp (Exim 3.33 #2 ) id 175yjI-0002wj-00; Fri, 10 May 2002 02:57:52 +0200 Received: with LISTAR (v0.129a; list mpeg2); Fri, 10 May 2002 02:56:35 +0200 (CEST) Received: from ejc.ecomda.com ([212.18.24.150]) by chambertin.convergence.de with TLSv1:DES-CBC3-SHA:168 encrypted esmtp (Exim 3.33 #2 ) id 175yi3-0002uI-00 for ; Fri, 10 May 2002 02:56:35 +0200 Received: (qmail 5777 invoked from network); 10 May 2002 00:16:46 -0000 Received: from pd9e4d25d.dip.t-dialin.net (torgeir@[217.228.210.93]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 10 May 2002 00:16:46 -0000 Subject: [mpeg2] Re: WinTV/PVR. From: Torgeir Veimo To: mpeg2 In-Reply-To: <001101c1f732$07b85170$030ba8c0@mistral> References: <82ff74cd66917e7d843d74e56054a9df@plan9.bell-labs.com> <001101c1f732$07b85170$030ba8c0@mistral> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.4.99 Date: 10 May 2002 02:56:15 +0200 Message-Id: <1020992179.3696.2.camel@atlantis.ecomda.com> Mime-Version: 1.0 X-listar-version: Listar v0.129a Sender: mpeg2-bounce@linuxtv.org Errors-to: mpeg2-bounce@linuxtv.org X-original-sender: torgeir@vertech.no Precedence: bulk X-list: mpeg2 On Thu, 2002-05-09 at 10:17, Simon Turvey wrote: > > I'm writing a WinTV PVR driver for Plan 9, and I can't seem to > > find the MSG3435G on the I2C bus (see also a posting on > > Feb 9, 2001). I was wondering if anybody knows how to > > drive/reach the sound processor from the Bt878. > > You might want to take a look at our work in progress driver > on pvr.sourceforge.net. Development's a little slow at present > but due to resume again very shortly. It might be useful for us > to colaborate - what do you reckon? Simon, I can send you the stuff I've done after some cleanup (no mpeg2 data yet..) When do think you have your machine up and running? Also, since the kfir module doesn't have access to any i2cbus directly, it doesn't have the struct i2c_client pointer for the saa7113 module either. How did you plan on sending commands to it? use ioctl's through /dev/i2c-x, or glue the modules together in a bttv-card specific initialization method? My stuff if a bit messy, since I currently init both the saa71134 module and the btdma module from the kfir module, in order to make them communicate. Also, It would be nice to have softice logs for only the part when the winme wintv2000 app goes from pause to record. From what I can see, the softice -- -Torgeir