<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   netz: module has symbols referring to tw2865. I've seen another driver in the kernel tree, the bluecherry solo6x10, but that's on the pci bus. as far as I can figure, the dvr uses i2c for them. So, what I'm wondering is would it be feasible to factor out some of the solo functionality into a generic tw2865 driver and be able to pull from that for an i2c kernel module?
   larsc: <u>netz</u>: sure
   ***: benjiG has left
   headless: <u>neg</u>: anything new? :-)
   <br> hi
   -: headless -&gt; outdoors
   neg: <u>larsc</u>: if adv7180 where to report V4L2_FIELD_ALTERNATE, what is most sane. 1. have the rcar-vin driver ask the source g_std and then do the interlacing and report V4L2_FIELD_INTERLACED_{TB,BT} to userspace or 2. Just grab each field in ints own buffer, se TOP/BOTTOM on the buffer and pass it to userspace leaving it to assemble the complete frame?
   <br> also in case 2 should the driver correct the frame hight for each buffer to half of one frame? In my tests I only get a half frame which is correct but it's stretched vertically (also expected since its only half the lines) but the bottom half of the buffer is empty since the buffer height is set to a complete frame
   larsc: <u>neg</u>: I'd say let userspace decide
   <br> you can offer both options
   <br> s/both/all
   <br> the driver should set the frame size to what it is
   <br> for the buffer
   <br> the resolution that is reported to userspace is independent of that
   neg: so it's ok for V4L2_FIELD_ALTERNATE, V4L2_FIELD_TOP and V4L2_FIELD_BOTTOM that only half the buffer is filled with data?
   larsc: ideally the buffer would only be allocated to half the size
   neg: now I'm confused, the resolution reported to userspace from vidioc_try_fmt_vid_cap and vidioc_g_fmt_vid_cap and vidioc_s_fmt_vid_cap for a NTSC source should be 720x480 or 720x240 ?
   larsc: I think we need an expert
   <br> I don't know the answer, I'd argue it should be 720x480, but that might be wrong
   <br> <u>hverkuil1</u>: ping
   <br> what do we report at the moment?
   <br> but either way the resolution should be independent of the buffer size
   neg: yes ofc, I do mix the terms sometimes, sorry about that.
   larsc: https://linuxtv.org/downloads/v4l-dvb-apis/pixfmt.html
   <br> Image height in pixels. If field is one of V4L2_FIELD_TOP, V4L2_FIELD_BOTTOM or V4L2_FIELD_ALTERNATE then height refers to the number of lines in the field, otherwise it refers to the number of lines in the frame (which is twice the field height for interlaced formats).
   <br> so it should be half
   <br> and I'd also say that this means that the resolution should be reported as the framesize which is twice the field size
   neg: hum now I'm also confused what other place then the 3 ioctls above can I use to report a different resolution?
   larsc: https://linuxtv.org/downloads/v4l-dvb-apis/vidioc-g-std.html
   <br> or rather https://linuxtv.org/downloads/v4l-dvb-apis/vidioc-enumstd.html
   <br> anything that works on a v4l2_pix_format should return the number of lines in the buffer
   <br> this depends on the field format
   <br> for buffers that contain a single field (TOP, BOTTOM, ALTERNATE) this is the field height (half the frame height) for all others it is two times the field size (frame size)
   <br> s/size/height/
   <br> also this: http://linux-media.vger.kernel.narkive.com/AMCmQ8yo/v4l2-and-frames-vs-fields
   neg: great, thanks this explans what I was after
   zenithdk: Is there some reason why this shouldn't work? git clone https://git.linuxtv.org/hverkuil/v4l-utils.git -n
   <br> I get an error: error: Unable to find f1348b4a819271d4138d62be5cee2e5aed1601d7 under https://git.linuxtv.org/hverkuil/v4l-utils.git
   ***: awalls1 has left