hverkuil: Hello!
sailus: hi
How do you do?
fine, thank
s
I've been toying with your patches a bit, v9 that is.
A simple test I have seems fine apart from the dequeued buffers having no reference to the request.
Is that a known issue?
Is it an issue? Once a buffer is done it is removed from the request as it has no relationship to the request anymore.
Yes, but it'd be useful to be able to tell that to the user.
You mean as a flag or something in v4l2_buffer?
In general, if you receive something that was created by or was related to a request, the information which one should be there.
The request_fd field.
I guess the user could figure this out, too, but the field is there; why not to fill it up?
Two questions: 1) is it OK to 'leak' the request fd? (Padovan had concerns about that w.r.t. fence fds)
2) since the buffer has been removed from the request, it really isn't in the request anymore. In fact, the request fd might have been reused for another buffer already.
So I am hesitant about reporting the request fd. I can however add a flag that tells userspace it was part of a request.
On 2 --- in principle yes, it's possible. But it would have required the user to do that explicitly.
Say, if I'd write a program using requests, I'd only close the request file handle once all parts are done.
I can't answer to 1 right now.
Yes, so that's when you get the completion event. The dequeueing of the buffer can happen much later.
As I don't know the exact nature of the concern --- it's still the same process that had the fd so I don't see this as an issue right now.
Yes, that's true.
Do you think that's an issue?
Basically that would be the user space process doing silly things...
I'm not opposed to doing something to signal that it was part of a request, but I'd like a clear use-case for it.
One is finding that request.
Now you have to go to see which buffers might have been queued with thart particular request fd.
And I do find that annoying.
It's extra work required to find something which is already known but gets lost.
Why do you need that information? What do you do with it?
This is the very purpose of the requests: to be able to associate the related bits and pieces together.
To give a simple (concept-wise) is the Android Request API: you capture a single image but to multiple buffers, possibly with different image processing applied.
Let me rephrase: you call VIDIOC_DQBUF, you see it has a request_fd >= 0. Now what do you do with that information?
And it's crucial to find the right buffers related to just the particular frame intended (vs. some random frame).
Ah, now I get it.
But wouldn't you typically call DQBUF when you receive the completion event?
That depends.
Still, even when a request has completed, you still have the file handle.
It depends on the application, I suppose.
In my test I just dequeue buffers as they're ready.
I don't think it really matters when the buffers are queued, but there's no reason I can see to close the file handle before a request completes. At least if you expect something back from that request, that is.
A crashing application could be one common use case. :-)
sailus: mailed you a patch for vb2, see if it works for you.
Thanks.
I presume this was also related to having two request flags instead of just one?
Yeah. I decided to stick with one. I don't think we need a second flag.
Agreed.
hverkuil: The patch appears to work but there's something strange going on, quite possibly related to my test program.
Ah, I see that you use the IN_REQUEST flag to tell a buffer is given to the driver and a part of a request.
From the user space point of view this isn't really much different from queued IMO; I don't have an opinion on this yet but in a way it makes sense not to show the buffer is in not in queued state yet.
sailus: it is very different from the QUEUED state: the buffer isn't prepared yet (unless it was added to the request with VIDIOC_PREPARE_BUF) and it is not yet queued to the driver.
The driver still owns the buffer.
That's what matters for the user, for the most part.
What I'm saying is that if there's a new state, I understand the use of a second flag that's related to requests.
No. vb2 owns the buffer. Not the driver. It's not queued, it won't be read or written, it's in a request waiting to be queued. Definitely a separate state.
I see you saying "no" but I don't understand what would be the disagreement here. :-)
I'm not sure either :-)
X-)
I got my test program working btw.
Ah, good.
It's not perfect nor shiny, but it's clean and it's easy to add new tests... as bash scripts. :-)
I hope to post a v10 tomorrow with improved control handling.
svarbanov, what the packing for your qcom 10bit 12bit formats, I've seen some patches from Xilinx who wants to add similar formats
they use 10bit over 32bit, 2 bit padding, there is MS using 10 bit over 16bit, 6bit padding, I've heard about someone using 10bit over 32bytes iirc
ndufresne: I think it was 10bit over 2bytes with 6bits padding
mchehab: if you are still looking at patches for 4.17: can you take this one as well: https://patchwork.linuxtv.org/patch/48304/
it's an annoying typo in a control description.
hverkuil_: applied
thank you!
mchehab: one more: https://patchwork.linuxtv.org/patch/48205/
That's the last one in my todo list that is suitable for 4.17.
hi
is it legit to dequeue a buffer that was obtained with VIDIOC_QUERYBUF, mmap-ed to the provided memory offset, queued and then unmapped?
so unmapped before it is dequeued
paulk-gagarine: I believe so. mapping the buffer to userspace should be independent of the queue/dequeue operations. you could even have buffers that you never map, when you don't need to touch them with the CPU
pinchartl, great, thanks
so not the issue here
paulk-gagarine, in general though, if it's DMABuf, and with upcoming fixes in videobuf2, you should be calling into DMABuf Sync API in userspace to hint the cpu access
hverkuil_:  get_index() at v4l2_dev() seems so broken!
it starts by doing a:
	bitmap_zero(used, VIDEO_NUM_DEVICES);
on a static bit array
also, it is called only once, at:
	vdev->index = get_index(vdev);
	video_device[vdev->minor] = vdev;
__video_register_device()
it is called before setting video_device[], but internally, it expects it to be filled!
I suspect that this is just a pre-historic monster that needs refactoring
that seems to be the root cause of: https://www.mail-archive.com/linux-media@vger.kernel.org/msg128701.html
or am I misreading something there?
hmm... I guess I misread the code... it is meant to just detect if the same driver is registering more than one node
what's weird there is why it is using a static var.
mripard: Ping?
do you know how to stream webrtc from /dev/video0 ?
stanford_AI, what is the webrtc you will use?
webrtc comes with own webcam api, so you don't need to worry about v4l2 directly, you can stream all in JS.