According to the CX25836/7 data sheet (table 3-23), the VFILT setting should be a function of pixels per line. However, in cx25840-driver.c, filter (VFILT) is set based on wind->height. Shouldn't it be set based on wind->width, as in:

   if (wind->width > 384)
       filter = 0;
   else if (wind->width > 192)
       filter = 1;
   else if (wind->width > 96 )
       filter = 2;
   else
       filter = 3;







-------------------------------------------------------
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
_______________________________________________
ivtv-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ivtv-devel

Reply via email to