<!-- 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>

   ***: hverkuil_ changes his alias to hverkuil
   <br> headless_ changes his alias to headless
   pinchartl: <u>hverkuil</u>: it still bothers me a bit. I was wondering whether we couldn't add a flag to struct v4l2_ext_control instead. when set for G_EXT_CTRLS it would indicate that the default value should be read, and when set for S_EXT_CTRLS it would indicate that the user wants to set the control to its default value
   <br> that would avoid adding a new ioctl
   <br> and would allow setting a control to its default value without having to read it first
   <br> I also liked Sakari's proposal of extending the query control ioctl instead of adding a new ioctl
   <br> but I agree it makes it a bit more difficult for userspace to reset a control to its default value
   <br> not much though
   <br> what bothers me is that we treat the default value in a specific way, even though it's already reported by the query control ioctl
   <br> one of the benefits of the new proposed ioctl is that it would allow getting the default value of multiple controls in a single call
   <br> if we think that's important, wouldn't it make sense to instead create a new query control ioctl that could query multiple controls in a single go, without restricting that to just the default value ?
   hverkuil: <u>pinchartl</u>: it's the fact that you can get the default values and set them with just two ioctls that is so nice. Even with a query_ext_ctrls ioctl you still cannot do that.
   <br> Using a flag instead of a new ioctl is something I thought about, but I'd have to take one of the only two reserved fields in struct v4l2_ext_controls.
   <br> It's also something that only applies to getting values, never for try/set.
   pinchartl: yes, the lack of reserved fields is something that bothers me too
   <br> they're scarse resources
   <br> the flag could apply to set though, as I've explained above
   <br> applications could use it to set a control to its default value without having to read it first
   <br> the value would be ignored when the flag is set
   <br> don't we have a single reserved field in v4l2_ext_controls, not two ?
   hverkuil: v4l2_ext_controls has two, v4l2_ext_control has one.
   pinchartl: yes, my bad
   <br> I was thinking about adding the flag to v4l2_ext_control
   hverkuil: It's just ugly. You get exceptions: if the flag is set, then use the default value. But what does that mean for the union? Do you still have to allocate it? And it's tricky in v4l2-ctrls as well.
   pinchartl: my concern is that I feel we're really special-casing this while it could be more generic, and I bet it will bite us back when we'll get to the next similar-by-slightly-different use case
   <br> I've described the various ideas I had to make this a bit more generic
   <br> but none of them are clearly better and 100fb6158erfect
   <br> so I won't nack the proposed approach, but I still feel we could do better
   <br> (back in 15 minutes)
   hverkuil: One option might be to create a V4L2_CTRL_CLASS_DEFAULTS control class that can be used in the ctrl_class field. It's only supported (at least for now) by G_EXT_CTRLS.
   <br> it still feels a bit like a hack, but at least it does allow it to be extended to e.g. CLASS_MIN, MAX, STEP should we ever want that.
   pinchartl: hmmmm...
   <br> a bit hackish indeed
   <br> I need to go shopping from groceries before the store closes
   <br> I'll be back a bit later
   hverkuil: ctrl_class should really be renamed to 'which'
   <br> 0 = current values
   <br> existing control classes == 'current values for those control classes' (only needed for backwards compat)
   <br> V4L2_CTRL_WHICH_DEFAULTS == default control values
   <br> and with the request patch series (per frame configuration) you'd get 'control values for the given request ID'
   <br> trying to use WHICH_DEFAULTS with S/TRY_EXT_CTRLS would naturally return EACCES since the default control values are read-only.
   ***: demhlyr changes his alias to demhlyr_
   <br> demhlyr_ changes his alias to demhlyr9
   <br> demhlyr9 changes his alias to demhlyr
   sailus: <u>koike</u>: Getting the format should only fail if the driver doesn't implement the op. We haven't had a case where that'd happen yet, so I don't think it's a very important question as such.
   <br> However if the entity type is wrong, that's indeed a more serious problem. This apparently isn't handled properly at the moment.
   <br> But to answer your question, I think I'd return zero if you simply can't get the format for a pad.
   koike: sailus, thank you for your answer. I think I'll return error, as all the subdevices in my topology should implement the get format ops