hverkuil1: SDI/GS1662 patch is good enough? Because my company has some troubles in imminent future and it should be difficult to test another patchset Renault: I'll take a look today. thank you (sorry for that, but I prefer to be sure to fix the driver if necessary while hardware is available) no problem, thanks for letting me know. Renault: looks good, just one comment about the doc. See the reply I posted. ok, thank you a merge in 4.8 is possible? Maybe too late No, it'll be 4.9. ok :) hverkuil1: ping pinchartl: pong you mentioned in your review of the FDP1 driver that the deinterlacing mode control should probably be turned into a standard control yes while I agree that the feature should be fairly common, the deinterlacing modes themselves are mode device-dependent I haven't played with many deinterlacers, so I'm not sure what a common base would be You can look at what e.g. vlc supports in the way of deinterlacers. but that's software, not hardware The underlying principles are the same, there are only so many ways you can do deinterlacing. Do you have some documentation for the FDP deinterlacing modes? nothing public, but I can briefly explain them (BTW: the best solution is to NOT USE BLOODY INTERLACED VIDEO! It's evil!) :-) no need to convince me :-) let me open the documentation that I can't send you :-) Also see https://en.wikipedia.org/wiki/Deinterlacing there are 6 modes does the deinterlacer HW use memory to store older fields? (just curious) the progressive mode is special in the sense that it does nothing. the hardware just passes the input frames to the output the hardware uses system memory depending on the mode it can access multiple fields to reconstruct one image, yes it can also store intermediate data OK, so that makes it a fairly fancy deinterlacer. the "Fixed 2D" mode uses the current field only and performs line doubling (possibly with interpolation, I'm not sure about that) Very standard technique. it's a classic bob deinterlacer Never use it :-) the "Previous field" and "Next field" use two fields to construct one image as the names imply, an image is constructed from the current field and either the previous field or the next field with input fields transmitted as A B C D E... it will generate frames that contain AB BC CD DE ... OK, so the output is double the amount of data. That's what the adv7180 deinterlacer does as well (discussed yesterday). Note: to support that we would also need to add new V4L2_FIELD_ value(s), since this mode cannot be represented today. the two other modes are less clear "Fixed 3D" and "Adaptive 2D/3D" they both use the current, previous and next fields the adaptive mode also stores intermediate data for an undocumented purpose the adaptive method combines 2D and 3D deinterlacing, with motion detection and diagonal interpolation the intermediate data buffer seems to contain a still mask so it's related to motion detection that's all I know I'm not sure what the Fixed 3D mode is exactly I also don't know if the "Fixed 2D" method is a simple bob deinterlacer, or if it performs interpolation I'm considering whether we should do the same as V4L2_CID_TEST_PATTERN, i.e. a standard CID, but a per-driver custom menu. Or do as V4L2_CID_SCENE_MODE where we just keep adding modes. for test patterns I don't think it would scale for deinterlacers, the issue is that I don't know what the hardware does exactly so it's difficult to standardize modes :-) That the main problem with HW deinterlacers: they generally never tell you the details. BTW, what do you mean with "I don't think it would scale" to use the V4L2_CID_TEST_PATTERN approach? not scale in what respect? I don't think it would scale to standardize the menu items and keep adding new ones there's too many differences between devices when it comes to test pattern generation Exactly, V4L2_CID_TEST_PATTERN uses custom menus, a different one for each driver. It uses v4l2_ctrl_new_std_menu_items(). sorry, I had misread you doing the same would make sense I believe It is a bit of a shame that some modes (like line doubling) are very standard, but with v4l2_ctrl_new_std_menu_items you can't really standardize them. Did you notice that the LWN statistics for the 4.7 kernel had NO media developers among the 'most active' developers? I think that's the first time in many years. I think we'll compensate for that in 4.8 though :-) I haven't checked the stats, no I've been too busy working on non-mailine code :-( hverkuil1: when do you plan to get V4L2_PIX_FMT_FLAG_REQUEST_CSC merged ? I have no plans for the near future. But feel free to pick it up if you need it. I was planning to allow applications to set the colorspace on the capture queue without that flag :-) that wouldn't work (or be accepted). Is this for your non-mainline work? no, it's for the FDP1 driver Just take that patch. I tested it at the time, I may even still have some v4l2-ctl patches that add support for it. There is some code here, but it is for qv4l2: https://git.linuxtv.org/hverkuil/v4l-utils.git/log/?h=colorspace3 Old code though, not sure if it is still correct. I need to investigate that as replied by e-mail, the hardware supports configurable quantization when writing to memory but doesn't when reading from memory so I'm wondering if the quantization at the output of the deinterlacer should really be made configurable by userspace or if it should always be set to the same quantization method as configured on the read side Just to be sure I understand the hardware: userspace feeds it top and bottom fields (one per buffer), and you get deinterlaced frames back? yes well either one per buffer or two per buffer let me check the hardware processes one field per buffer but the stride is configurable so buffers can store two fields in interlaced or sequential format in which case the driver will feed them twice to the hardware one for each field Ah, OK. Good to know. the ALTERNATE field types are not supported by the driver at the moment they could from a hardware point of view but gstreamer doesn't seem to support that yet (that's what I've been told by Kieran) With FIELD_ALTERNATE you mean the one-field-per-buffer mode? (alternating top and bottom fields) yes it looks like the driver has partial support for V4L2_FIELD_ALTERNATE but S_FMT doesn't accept it hverkuil1: using the height as a heuristic... that feels sooooo wrong :-) Effective, though :-) I think it is worthwhile supporting FIELD_INTERLACED with that heuristic. If you capture from e.g. a composite input, then what you receive will use FIELD_INTERLACED, so it would be nice if you can just feed it into this deinterlacer, keeping the field setting the same. why do we have FIELD_INTERLACED in the first place ? shouldn't drivers always report _TB or _BT ? hverkuil1: v4l2-compliance complains that the colorspace on the capture video node differs from the colorspace on the output video node when the device converts data from YUV to RGB, what's the expected colorspace ? _TB and _BT are quite new. They were added to handle cases where the capture device incorrectly gave the wrong Top/Bottom ordering. The original FIELD_INTERLACED is much older. ok it's a mess :-) The colorspace remains the same. It is only ycbcr_enc and quantization that can change. The colorspace refers to how the red, green and blue colors should be interpreted (i.e. which color red is meant exactly?). The conversion to Y'CbCr is just a different encoding of RGB and it doesn't change the colorspace. In 99% of the cases FIELD_INTERLACED is all you need, so it does make sense. right but ycbcr_enc and quantization will not match between the output and capture nodes when converting from yuv to rgb, right ? They will if they use the DEFAULT value (0). but not if they use non-default values let me check v4l2-compliance... v4l2-compliance requires a match I don't think that's correct You are right, this code doesn't work if there is a YUV to RGB or vice versa conversion happening. it would have been too easy :-) also I think the handling of DEFAULT values is underspecified for instance if I S_FMT() on an output video node with a colorspace and DEFAULT for the encoding and quantization and then G_FMT() the driver could return DEFAULT or resolve the DEFAULT to the default values for the colorspace both would be valid, wouldn't they ? I'm thinking that the ycbcr_enc and quantization checks at the end of testM2MFormats should be skipped if the pixelformat changed value. Since that can indicate an encoding change. That seems reasonable. I think I agree (it's the only v4l2-compliance test that fails with the driver ;-)) Yes, drivers can return either DEFAULT or the actual value. The compliance test currently assumes that that doesn't happen. Part of the reason is quite annoying: there still is no way to know if the pixelformat is RGB or YCbCr, and that information is needed to figure out what DEFAULT actually maps to. I proposed adding a flag for that in the past, but it never got in. For ycbcr_enc you can do it, since that only depends on the colorspace, but for the default quantization you need to know if it is rgb or ycbcr. brb (phone), sorry back hverkuil1: regarding the ambiguity should drivers keep the DEFAULT value, replace it with the actual value, or be allowed to pick the behaviour they want ? Both are allowed, but in practice drivers keep the DEFAULT value. It would be my advice as well: don't unnecessarily change DEFAULT to the actual value. I have thought of explicitly documenting this, but I feel this should remain a recommendation and not something compulsory. internally drivers need to compute the actual value so they would need to keep track of the original request, and of the real value not a really big deal, but a bit annoying That's what I did as well. keeping both ? yes I wonder whether the V4L2 core shouldn't compute the real value before passing it to drivers well, usually there is only one place where I actually need the real value, so it can be just a local variable. I've thought about it, but there are so few drivers that actually set this (as opposed to just reporting it), that I didn't bother. That might change in the future. but in any case, userspace should be able to handle both, right ? Yes. qv4l2 does. do you plan to fix v4l2-compliance ? If my proposed fix works, then just commit it. It's trivial. which fix ? skipping the ycbcr_enc/quantization checks if the pixelformat is no longer the same. and handling the default -> non default change ? hverkuil1: when outputting RGB what ycbcr_enc should the driver set ? pinchartl: 0 (DEFAULT). It really is ignored, but it is really impolite not to set it to 0. ok :-) hverkuil1: I'll bother you again if I may so my hardware supports three combinations of encoding and quantization V4L2_YCBCR_ENC_601 + V4L2_QUANTIZATION_FULL_RANGE, V4L2_YCBCR_ENC_601 + V4L2_QUANTIZATION_LIM_RANGE, V4L2_YCBCR_ENC_709 + V4L2_QUANTIZATION_LIM_RANGE how should I limit the accepted colorspaces ? for instance, should the driver accept V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_601 ? or does V4L2_YCBCR_ENC_601 make no sense with V4L2_COLORSPACE_BT2020, in which case V4L2_COLORSPACE_BT2020 should be rejected ? You only have to look at the ycbcr_enc and quantization fields for this. The only thing that the hardware can convert between are those two. The colorspace and xfer_func remain fixed. I agree with you but does it make sense to have V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_601 for instance ? or is that a combination that can't exist and should thus be rejected ? the hardware doesn't care about the colorspace or the transfer function but should the driver reject combinations that don't make sense ? It's possible theoretically. It will normally never happen (BT,2020 defines its own YCbCr encoding), but the chosen YCbCr encoding is from the point of view of V4L2 independent of the colorspace. The four properties (colorspace, xfer_func, ycbcr_enc and quantization) are all independent and can theoretically occur in any combination. so you would accept combinations that don't make sense as long as the encoding and quantization can be supported by the hardware ? theoretically, yes Yes. so if userspace requests V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_DEFAULT Vivid allows any combination, for example. that should normally lead to V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_BT2020 right. but V4L2_YCBCR_ENC_BT2020 isn't supported by the hardware so should the driver then consider V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_DEFAULT to be equal to V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_601 ? But if the deinterlaced just deinterlaces and never does any CSC conversion (i.e. the matrix is the identity matrix), then it will just output V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_BT2020. No need to prohibit that. or rather, when asked V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_DEFAULT in S_FMT, return V4L2_COLORSPACE_BT2020 + V4L2_YCBCR_ENC_601 ? yes, I was just thinking about that the encoding is only limited to 601 and 709 when outputting RGB Trying to convert from V4L2_YCBCR_ENC_BT2020 to ENC_601 or 709, that is illegal. which is quite interesting, as at S_FMT() time on the output queue, I don't know whether YUV or RGB will be selected on the capture queue S_FMT() is called on the output queue first, and then on the capture queue I could disallow RGB capture if the encoding isn't 601 or 709 Right, that's what I had in mind as well. I'll try that I'll accept anything on the output queue and on the capture queue I'll only allow RGB if the encoding + quantization match that should be doable Sounds good. Colorspaces are fun! :-) I'll have to rewrite the format handling completely, it's wrong If you want me to review code with an eye on colorspace handling, just let me know. I'll ask for your review when I'll post the next version thanks