How about this, the DECODER_ENABLE ioctl, is this working there too?

        case DECODER_ENABLE_OUTPUT:
        {
                int *iarg = arg;
                int enable = (*iarg != 0);

                ERR("decoder %s output",
                        enable ? "enable" : "disable");

                if (state->enable != enable) {
                        state->enable = enable;

                        if (state->enable) {
                                cx25840_write(client, 0x115,
                                        cx25840_read(client, 0x115)|0x04);
                                cx25840_write(client, 0x116,
                                        cx25840_read(client, 0x116)|0x04);
                                if (no_black_magic == 0) {
                                        // 01063 time 3:37.684                  
                                        WI2C(4, 0x43, 0x00, 0x16, 0x70, 0x4a);
                                }
                        } else {                                                
                                cx25840_write(client, 0x115,
                                        cx25840_read(client, 0x115)&0xfb);      
                                cx25840_write(client, 0x116,
                                        cx25840_read(client, 0x116)&0xfb);      
                        }
                }                                                               
                //cx25840_write(client, 0x4A5, 0x80); /*Assert Video Reset */
                //cx25840_write(client, 0x4A5, 0x00); /*DeAssert Video Reset */
                break;
        }



Thanks,
Chris
On Tue, Apr 05, 2005 at 05:05:22PM -0400, Tyler Trafford wrote:
> Chris Kennedy <[EMAIL PROTECTED]> wrote:
> > Ah, I'm doing this, basically...
> > 
> > cx25840_write(client, 0x4A5, 0x80); /*Assert Video Reset */
> 
> Yeah, I switched my copy the same way, but I don't get any assembler
> warnings.  Have you changed the parameters passed to gcc?
> -- 
> Tyler Trafford
> 
> 
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> ivtv-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ivtv-devel

-- 
---
 Chris Kennedy / [EMAIL PROTECTED]
  Engineer KMOS-TV/KTBG-FM
  Broadcasting Services Department
  Central Missouri State University


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
ivtv-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ivtv-devel

Reply via email to