Ok, someone must be able to a least explain what the Variables in the NTSC Structure do, or point me to where I can read up on the "Official" driver... I was at the techno trend web site, but I think I need to give a blood sample just to get the official documentation from them.<br><br><b><i>Domenic Troilo <domenictroilo@yahoo.com></i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"> I am not much for coding, but would like to ask a simple question. My NTSC TV does not show the whole picture rather it is chopped off around the edges (using vdr and nexus-s hardware card)<br><br>I am wondering if I can tweak the output of the nexus-s card to change the output. Below is the code I think I need to change:<br><br><div style="margin-left: 40px;"><font style="font-family: times new roman;" size="2">/* FIXME: these values are experimental values that look better than the values from the latest
"official" driver -- at least for me... (MiHu) */</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">static struct saa7146_standard standard[] = {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .name = "PAL", .id = V4L2_STD_PAL_BG,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x15, .v_field =
288,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x48, .h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_max_out = 576, .h_max_out = 768,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> }, {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .name =
"NTSC", .id = V4L2_STD_NTSC,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x10, .v_field = 244,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x40, .h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_max_out = 480,
.h_max_out = 640,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> }</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">};</font><br style="font-family: times new roman;"><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">static struct saa7146_standard analog_standard[] = {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .name = "PAL", .id =
V4L2_STD_PAL_BG,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x1b, .v_field = 288,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x08, .h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_max_out = 576, .h_max_out = 768,</font><br style="font-family: times new roman;"><font style="font-family: times new
roman;" size="2"> }, {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .name = "NTSC", .id = V4L2_STD_NTSC,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x10, .v_field = 244,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x40,
.h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_max_out = 480, .h_max_out = 640,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> }</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">};</font><br style="font-family: times new roman;"><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">static struct saa7146_standard dvb_standard[] = {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> {</font><br style="font-family: times new roman;"><font
style="font-family: times new roman;" size="2"> .name = "PAL", .id = V4L2_STD_PAL_BG,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x14, .v_field = 288,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x48, .h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;"
size="2"> .v_max_out = 576, .h_max_out = 768,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> }, {</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .name = "NTSC", .id = V4L2_STD_NTSC,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_offset = 0x10, .v_field
= 244,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .h_offset = 0x40, .h_pixels = 708,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> .v_max_out = 480, .h_max_out = 640,</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2"> }</font><br style="font-family: times new roman;"><font style="font-family: times new roman;" size="2">};</font><br></div><br>Also I wonder if the experimental values which are referred to in the comment are causing the issue with my older TV?
Does anyone know what the NON-experimental values are?<br><div> </div><hr size="1"> <a href="http://us.rd.yahoo.com/evt=38381/%20ylc=X3oDMTEzcGlrdGY5BF9TAzk3MTA3MDc2BHNlYwNtYWlsdGFncwRzbGsDMWF1dG9z/*http://autos.yahoo.com/index.html%20">Yahoo! Autos</a>. Looking for a sweet ride? Get pricing, reviews, & more on new and used cars._______________________________________________<br>linux-dvb mailing list<br>linux-dvb@linuxtv.org<br>http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb</blockquote><br><p>
                <hr size=1>Brings words and photos together (easily) with<br>
<a href="http://us.rd.yahoo.com/mail_us/taglines/PMall/*http://photomail.mail.yahoo.com">PhotoMail </a> - it's free and works with Yahoo! Mail.