mchehab: re 29445: I believe both are merged, so it should apply.
hverkuil: thanks, applied
jmleo: You might be interested in this patch: https://patchwork.linuxtv.org/patch/29611/
It allows a driver to requeue a buffer instead of giving it back to userspace.
hverkuil: I thought it has been allowed for a long time :-)
Only if start_streaming fails. If you want to do it while streaming, then that wasn't allowed by vb2.
nice to know
do you have a use case for that ?
the new cobalt driver does this when you start streaming to wait for video to stabilize.
I suppose it could be done internally in the driver too ?
It's nicer to just to let vb2 handle it. That way you can use vb2_buffer_done as a standard method of handing a buffer back.
yes, I'm not complaining about that :-)
pinchartl: hverkuil: I read the log from yesterday. The part where properties are used instead of subdev types is something we can finalize fairly quickly. For the 'devnode as entity' story I wasn't at all convinced with your arguments against doing that. So the last word hasn't been said about that.
I am available this afternoon for a discussion.
Oops, that's pinchartl: mchehab:
I pinged myself :-)
:-)
Were you there? ;)
we have basically discussed devnodes as entities, devnodes as properties, and devnodes as something else (and new)
I really dislike devnodes as entities
and prefer properties
Mauro was in favour of something new over properties
and I'm not opposed to discussing something new
what's your opinion ?
I really like devnodes as entities
Sorry about that.
I see no sense in enumerating devnodes since then I wonder why not just implement them as entities rather than introducing something new.
hverkuil: question for you :) Lager has an av7612 (adv7604) attached to rcar_vin. Would it be better to add dv_timings support to rcar_vin and soc_camera, or add a g_parm implementation that uses dv_timings in the subdev if there's no g/s_parm? (or add g/s_parm to adv7604?)
The way I envisaged the MC when I designed it was that entities are abstract representations of something, without them being limited to HW (although that was the initial use case).
we need more discussions then
robtaylor: the best solution would actually be to rewrite rcar-vin as a 'normal' V4L2 driver instead of using soc-camera, but that's not likely to happen, so adding dv_timings support to rcar-vin/soc-camera is the next best thing.
g/s_parm certainly makes no sense in adv7604
hverkuil: that makes sense, thanks :)
robtaylor: please do :-)
heh
yeah, soc-camera must die
hverkuil: pinchartl thanks a lot :)
hverkuil: I have a concern with the way v4l2-core transforms S_CROP into S_SELECTION. Indeed a call to S_CROP (.type = _OUTPUT) is transformed into a call to S_SELECTION (.type=_OUTPUT + .target=_COMPOSE). v4l2-ioctl.c states "crop means compose for output devices". As the new driver bdisp supports only cropping (not composing), I planned to support S_SELECTION only if .type==_OUTPUT and .target==_CROP. But then a call to S_CROP would fail (which is why I w
So I am wondering if the v4l2-ioctl transformation is correct, or if there is something to change there. Could you please let me know your point of view?
Yes, you cannot use crop for what you want to do.
crop only ever supported exactly the opposite of what you need.
That's why the selection API was created.
OK. So I guess that I shall rework my userland application so it uses only the SELECTION API.
My advice: ignore G/S_CROP, always use G/S_SELECTION.
G/S_CROP only makes sense when you crop from a video/sensor input. And that's mapped to the right selection ops in the core.
OK, that's clear now. I can now complete the driver rework. I shall be able to submit the new version today / tomorrow.
OK. I plan to do code review on Friday and/or Monday.
hverkuil: if bdisp does not support VIDIOC_G_SELECTION on CAPTURE (I plan to support _SELECTION only for OUTPUT) then it fails to pass the v4l2-compliance [ v4l2-test-formats.cpp::fail_on_test(testBasicCrop(node, V4L2_BUF_TYPE_VIDEO_CAPTURE)]. I understand from the API that is allowed to return EINVAL if type is not supported. Did I misunderstood? Shall I support 'GET' although I don't support 'SET'?
fabienST: what's the exact line inside testBasicCrop() it fails on?
fail: .../v4l2-test-formats.cpp(1200): doioctl(node, VIDIOC_G_SELECTION, &sel_crop)
fail: .../v4l2-test-formats.cpp(1276): testBasicCrop(node, V4L2_BUF_TYPE_VIDEO_CAPTURE)
test Cropping: FAIL
fabienST: I think I know what's going on. If you can verify this, then that would help.
The first call to testBasicSelection in testCropping() will fail, because you don't support it for a capture node, but the second will succeed and overwrites the 'ret' value with 0.
It needs to be smarter and remember which of the two (capture and/or output) can do cropping and only call the testBasicCrop if it is actually supported.
mchehab, pinchartl, hverkuil: any comments on the ALSA patch series. I haven't heard from any ALSA folks so far
shuah: It's been quite busy and I haven't had time to look into this. I did a quick scan and nothing obvious jumped out at me, but I really need to sit down and do a proper review.
ok thanks
shuah: pretty much the same for me :-/ I've started with Mauro's DVB+MC patches, I'll get to your ALSA series then
ok thanks
hverkuil: I made a quick & dirty patch in testCropping (basically I split ret in retCap and retOut) and it works fine now. I think that there is the same issue with testComposing
I think so too. Patches are welcome!
OK, I can propose a patch. What is the process for v4l2-compliance patch submission? Is linux-media@vger.kernel.org the right mailing list?
right, I'll pick it up
hverkuil: the configuration store API won't deal with MC link setup, right ?