hverkuil: mchehab: Good morning! Laurent has prepared a patch for vsp1 in order to support hsv. How shall we proceed from here? I send a v6 of the patchset with that, or hans cheery picks Laurent patch on top of my patchset?
ribalda: unless there has been changes in your patches since v5 (or v5.2 for patch 10), you can either prepare a branch in which your cherry-pick my patch and send a pull request, or let Hans handle it
I can also do it
mchehab: It is ok to send a pull request from github?
s/ mchehab /pinchartl/ :)
technically I think so
ok, then I do that and also rebase the patchset on top of master
OK, then I won't do anything :-)
hverkuil: if you're bored with nothing to do, could you have a look at the channel log from yesterday evening ? :-)
ribalda: I've acked the patch series, so please add my ack when you prepare your pull request.
pinchartl: I'm neither bored, nor do I have time :-)
I could do with a bit of boredom, frankly.
:-)
the discussion was about the metadata API
and specifically Mauro doesn't like the fact that, for the VSP1 histogram format, the actual buffer layout depends on the value of controls
mchehab: https://patchwork.linuxtv.org/patch/36729/
I have just made the git pull. Plase tell me if I made a mistake, it is my first one :)
shall I remove the old patches from patchwork?
mchehab: This pull request was accepted, but I don't see the patches in your fixes branch. Just want to verify that there wasn't a mistake.
ribalda: it looks good. next time please specify the target version in the subject line ("[GIT PULL FOR v4.9] HSV formats")
hverkuil: Hi Hans, did you tried v4l-utils cross-compilation for arm64?
svarbanov: I did
pinchartl: Hi Laurent, did you made some fixes in configure.ac or somewhere else
svarbanov: no I didn't, but I've disabled a few features I don't need that used to cause compilation issues in the past (I haven't checked recently if that's still the case)
HOST=aarch64-buildroot-linux-gnu
g
./configure --host=$HOST CC=$HOST-gcc CXX=$HOST-g++ --prefix=$PREFIX --disable-libdvbv5 --without-jpe
I've just checked now and it compiles fine
pinchartl: thx, I will try that,  following on the instructions form INSTALL it fails with "machine `aarch64-linux-gnu' not recognized", last time I built it I've made some tricks
I've tried again, --disable-libdvbv5 isn't needed if you apply the patch I've just sent to the linux-media mailing list :-):
and --without-jpeg isn't either
pinchartl: thx, it seems that CC and CXX are not needed :)
even better :-)
hverkuil: ping
quick question about controls
I have a compound control with 12 u8 values
with a hardware constraint that value[i] <= value[i+1]
when the constraint is not fulfilled, should the .s_ctrl() handler return -EINVAL or fix the values ?
the values represent boundaries for histogram buckets
wrong values fixed by the driver would likely result in semi-random values returned by the histogram generator
I'm thus thinking that returning -EINVAL could be better to avoid userspace thinking that the control was successfully set
but then -EINVAL could be returned for values that match the min/max/step criteria, which could be considered confusing by userspace
Implement this check in try_ctrl: that's the right place for such checks.
good point
but should it return -EINVAL or fix the values ? :-)
I'm checking that...
-EINVAL is fine as a return code.
Obviously the constraint should be documented in the control description.
for a range control that has hardware constraints making some values not acceptable, fixing the value is generally fine. but in this case configuring histogram buckets in a way different than what is requested by the application will result in a totally different, likely unusable histogram
speaking of control descriptions
did I miss something, or does our documentation contain no driver-specific controls apart from the MPEG encoding controls ?
You didn't miss anything.
:-)
They should be documented in the driver, but that really should be moved to the main spec.
For a lot of old drivers there is no documentation whatsoever.
in the driver's source code ?
source or header.
ok we're good then, there's already a comment in the code
on the same topic
for driver-specific controls
I'm guilty of using V4L2_CID_USER_BASE | 0x100* in several drivers
instead of reserving a driver-specific range
Now that we have driver-specific documentation I think that might be a good place to document driver-specific controls.
that doesn't cause any technical issue as the controls are specific to subdevs
so there's no conflict
but I'd like to make sure that's fine, or is it mandatory to reserve a range of driver-specific controls ?
Mandatory. I really don't like to have control IDs that are not unique.
And it is not as if we can run out of IDs :-)
you've missed the issue when reviewing a few patches then ;-)
I'll fix that
hverkuil: when would you have time to discuss whether metadata formats can/should/could/may/must[not] depend on controls ?
pinchartl: certainly next week, but I don't know if I can find time this week.
ok
mchehab: I'd like to get at least part of the patches in for v4.9
the HGT format doesn't depend on controls
would you accept a pull request for HGT without HGO this week ?
How do I restrict changes to controls and to S_FMT calls while actively streaming?
I honestly want to NOT deal with concurrent applications using my device at all -_-
BanHammor: Changes to the format are prohibited while streaming. The driver should call vb2_is_busy() in the s_fmt implementation and return EBUSY when busy.
If an application wants exclusive access, then it should use VIDIOC_S_PRIORITY to increase the prio to RECORD. Then no other applications can make changes.
hverkuil: changes to the format are actually not prohibited by the API, but they're prohibited by most (if not all) drivers
I simplified :-)
All mainlined drivers prohibit it (and if not, then that's a bug).
BanHammor: you can use vb2_is_busy() to disallow format changes after buffers have been allocated (this covers more than just the streaming state)
be careful about locking though
but for controls, changes during streaming can be helpful
even without multiple concurrent applications
well, it's mostly that my device can go haywire if reconfigured while activated, so yeah, I'll probably use vb2_is_busy().
are you developing a driver ? what device is that ?
You typically need vb2_is_busy() for S_FMT, S_SELECTION, S_STD and S_DV_TIMINGS.
svarbanov: that was quick!
I'll hope to be able to review it next week.
pinchartl, an m2m thingy for stereoscopic vision/analysis
hverkuil: Thx for the review, I hope that more of the comments are addressed.
it's probably never going mainline, since I had to put a hack into m2m to get it to distinguish left/right buffers :D
BanHammor: nice
no no no that's the wrong approach
it will go to mainline
so let's work on a proper solution for that :-)
(I'm serious)
hverkuil: it is strange but v4l2-compliance still passing without errors :)
svarbanov: you have to remind me: why is that strange?
hverkuil: you said that you made some improvements regarding s|g_parm and g|s_selections and I had expected failures
pinchartl: sorry, I can't discuss anything today... Yesterday I forgot that today is a national holiday (independence day). I have some plans for today already :( Let's discuss it tomorrow
mchehab: no issue. just let me know if you think that it would be easier to merge HGT first (as its format is fixed)
javier__: curiosity, are you attending ELCE this year ?
ndufresne: no this year unfortunately
ndufresne: Does that mean you will? (I owe you a beer :D )