#v4l 2020-08-05,Wed

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)

WhoWhatWhen
montjoiehello any idea of client for testing a v4l2(zoran) driver ? (apart mplayer/ffmpeg) [08:17]
hverkuilmontjoie: I think qv4l2 can be used to test video capture (it should be able to decode the jpeg frames using libv4l). But it can't be used to test video output (no jpeg encoder support).
It would be nice if qv4l2 can encode to jpeg, but that would require some work.
[08:22]
montjoieI have disabled output of zoran (temporarly) as it need some filter
so for the reintegration I target only capture
I remember using xawtv 15years ago for zoran but it disappear from gentoo
[08:24]
....................................... (idle for 3h12mn)
paulk-leonovezequielg: would it make sense to add media controller support for the RGA?
not so much for dynamic link configuration, but it'd be nice for dynamic function enumeration
I guess it would since we do it for VPUs :)
with about the same advantage
[11:39]
ezequielgThe vpu expose the mc mostly for the request api [11:41]
paulk-leonovah right
that's a major requirement
ezequielg: but how is userspace supposed to autodetect a m2m converter?
besides driver name match
[11:41]
ezequielgGood question. I should check what gstreamer does. [11:42]
paulk-leonovgood point
I'll look
[11:42]
ezequielgI don't think you have much choices
Just format enumeration on the queues
You are asking how does it distinguish a codec from a color space converter?
[11:42]
paulk-leonovezequielg: basically yes
well, by converter I mean format,resize and colorspace indeed
a picture "transformer"
[11:44]
ezequielgYeah. [11:45]
paulk-leonovthere's gst_v4l2_is_transform
all about caps
[11:45]
ezequielgYup [11:45]
paulk-leonovnot sure it's so relevant [11:46]
ezequielgIf it has selection api , it can do cropping. If it has frame size enumeration it can do scaling, etc
Of course, feel free to extend the driver with MC api.
[11:46]
paulk-leonovyeah I was about to ask if that'd be welcome or not [11:47]
ezequielgPatches are always welcome
:)
[11:47]
paulk-leonovezequielg: another thing, I noticed RGA is using the single-plane API
but it looks like regs can take different values for each plane
RGA_SRC_Y_RGB_BASE_ADDR/RGA_SRC_CB_BASE_ADDR/RGA_SRC_CR_BASE_ADDR
is there a motivation behind not using mplane in this case?
(in cedrus we don't use mplane although there are different registers because it actually uses an internal offset from first plane on a limited number of bits, which overflows if the gap is too big)
[11:51]
ezequielgProbably because the author didn't think about this. I don't think any new driver should use the non mplane api
Not that mplane api and planar formats are a totally different things
*note
[11:54]
paulk-leonovyeah I know you can represent planar formats with non-mplane
(single plane)
mplane is about memory planes AFAIK
not logical planes
it's just that it makes dma-buf import more flexible
[11:55]
ezequielgAnd the converse is true as well
That's why I believe mplane is a better api
I'd be in favor of that change as well
[11:56]
paulk-leonovone thing I'm not sure about
is if it's valid to use non-mplane formats with mplane API
like NV12 (instead of NV12M) on mplane
of course the other way around is not valid
[11:57]
ezequielgYes it is perfectly valid afaicr
Hantro for instance should be like this. Off the top of my head because I'm not on my office
[11:58]
paulk-leonovah true [11:59]
ezequielgIn fact, hantro does packed formats [11:59]
paulk-leonovIIRC encoding only takes single-memory plane
but decoding takes multiple
or the opposite
[11:59]
tfigathe opposite :) [11:59]
paulk-leonovokay so basically we could have kept cedrus using mplane with non-M formats [12:00]
ezequielgYes [12:00]
paulk-leonovgood to know :)
thanks
[12:00]
ezequielgI think I have told you this. Or I tried [12:01]
paulk-leonovquite possible [12:01]
tfigabut there is currently a little bit of an annoyance when dealing with M and non-M formats, because the drivers need to handle them separately
and that results in some inconsistency where some drivers advertise only M formats, while they could support non-M as well
[12:01]
ezequielgYes
Yes
And separate helpers
The world is far from perfect
[12:01]
paulk-leonovmaybe v4l2 could transparently provide non-M formats when M is supported?
(in theory)
[12:02]
tfigathe extended fmt and buffer ioctls should solve this in theory [12:02]
ezequielgIirc Boris tried that? [12:02]
tfigaalthough I haven't had a chance to take a look at the latest version yet [12:03]
ezequielgtfiga: any idea why we aren't covering release buffer ioctl on the ext buffer api? [12:03]
tfigano idea
I haven't been following this too much lately
[12:03]
ezequielgSounds like now is the time to tackle that.
Trying not to scope creep
[12:04]
tfigapaulk-leonov: for reference, https://patchwork.kernel.org/project/linux-media/list/?series=328929 is the series I was talking about [12:04]
ezequielgpaulk-leonov: you are working on px30 or ...? [12:04]
paulk-leonovtfiga: thanks, I haven't been following that either
ezequielg: yeah still px30
[12:05]
tfigaI think release_buf could be just worked on in parallel
I suspect it wouldn't depend on the extended fmt and buffer API
I also dropped some ideas in my recent reply about the stateless API
[12:05]
ezequielgpaulk-leonov: can you post support for that in hantro? I have some patches but nobody to test them, and I'm sure you have the same patches, plus testing [12:06]
tfigalike batch QBUF/DQBUF [12:06]
paulk-leonovezequielg: oh yeah I had that around for a while but didn't get to cleaning them
ezequielg: nothing stands out though
[12:07]
tfigawith the ability to poll on a request, batch DQBUF could be a thing
the kernel could return all available buffers at once
[12:07]
paulk-leonovezequielg: one thing is that it doesn't have rkvdec so I also brought patches from Kwiboo that enable h264 decoding in the hantro driver
ezequielg: not sure if that was merged for rk3399
but when I looked at it rk3399 only had mpeg-2 via hantro driver
[12:07]
tfigasadly I don't have much time to spend on video these days [12:08]
paulk-leonov(that's vdpu2 layout instead of traditional hantro) [12:09]
tfigabut hopefully our video team picks some of this topics [12:09]
ezequielgtfiga: I think the h264 uapi series is not entirely responsible of discussing a new qbuf api ;) [12:10]
hverkuiltfiga: can you review "[PATCH v11 22/28] media: platform: Change the call functions of getting/enable/disable the jpeg's clock"? It's the only one without your Reviewed-by in the series.
tfiga: I found some compiler warnings/errors, so there will be a v12.
[12:11]
tfigaezequielg: well, it is, because we need to make sure that we can solve the remaining problems later, if we want to stabilize the h264 api now [12:12]
ezequielgWe want to stabilize those controls, not fix the world [12:12]
tfigaotherwise we would have to come up with a new h264 api in a couple of months [12:12]
ezequielgs/months/years? [12:12]
tfiganot necessarily
actually, any arbitrary time
when people actually start use the API in production use cases
[12:13]
ezequielgAre we aware of any vendor that can do batching, are we aware of any plans to submit new drivers for that? [12:13]
tfigaI think Cedrus can do already?
I don't know about any specific vendor work
but we expect this to be used widely after we stabilize it
[12:14]
ezequielgFor cedrus I think the current api covers a well defined and useful use case [12:15]
tfigaand hardware batching is just a small part of the problem
I'm sure it is
as I explained already, we don't need to fix all the problems right away
we need a plan to fix them in the future
[12:15]
ezequielgI think we have a plan
Proper support for dynamic arrays
[12:16]
paulk-leonovtfiga: it's not really proper batching in cedrus, no [12:16]
ezequielgAnd an array like control [12:16]
paulk-leonovjust that the hardware will keep processing appended slices apparently
but without a chance to update the slice header registers
so if it works, it's "by chance"
[12:16]
tfigain any case, hardware batching is only 1 of the 4 problems I listed
another one was pointed out to be already solved by polling on the requests
[12:18]
paulk-leonovI should get into the h264 uapi discussions, but my view is that we should limit slice mode to 1 slice [12:18]
tfigaezequielg: so you mean we would extend the frame mode to describe the slices?
paulk-leonov: yes, I agreed with that already
but V4L2 has problems preventing this mode from operating efficiently
which I listed in my email and provided some ideas for improvement
[12:19]
paulk-leonovmhh your points make sense yes
syscall overhead may be acceptable if per-slice helps with latency (e.g. in network streaming cases)
but yeah, still valid
[12:20]
tfigawhat I'm looking for is the awareness of the problems and some discussion on how we could solve them in the future, not implementation
particularly, in terms of whether the controls as we stabilize them, wouldn't prevent fixing those problems
it's very possible that they are fine
[12:22]
paulk-leonovwell there's the question of keeping the num_slices element
IMO a proper solution wouldn't need that anyway
[12:23]
tfigaif we agree that the ideas I proposed are feasible, I think we could indeed solve them without changing the h264 controls proposed by ezequielg [12:23]
paulk-leonovdynamic array support looks like best idea to fix that
and it wouldn't conflict with the controls
and could be dealt with later on
[12:24]
tfigahverkuil: will take a look. thanks for the heads up [12:24]
ezequielgThat's my view. As well [12:24]
tfigaokay, so the intention is to bring back the slice array once V4L2 gains proper support for dynamic arrays
I think that solves all the problems I listed
great, thanks :)
Could you reply mentioning so in the thread?
[12:28]
ezequielgI can, sure
I was getting back to this just this week
[12:30]
tfigathanks :) [12:30]
.... (idle for 15mn)
paulk-leonovback to the rga topic:
looks like 3 proc types would apply: MEDIA_ENT_F_PROC_VIDEO_SCALER/MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV/MEDIA_ENT_F_PROC_VIDEO_PIXEL_FORMATTER
should I make 3 proc entities
linked to the same source/sink pads?
[12:45]
mhh I'd rather be able to use v4l2_m2m_register_media_controller
so I'll go with scaler for now
[12:57]
..... (idle for 20mn)
hverkuilezequielg: if you can create an RFC detailing the functionality of dynamic array controls, then that can be a starting point for discussion. When we all agree, then I can implement this. [13:18]
........ (idle for 37mn)
ezequielghverkuil: I'd like to post the h264 uapi controls v3, which may or may not be mergeable, and then would like to take a look at the array control api. [13:55]
............................ (idle for 2h16mn)
paulk-leonov: which application are you intending to see consume this MC API?
(for RGA)
[16:11]
paulk-leonovezequielg: that's a linphone plugin I'm writing
our use case is px30 for linphone voip
with camera if, hw encoder, hw decoder, rga and video in a plane
it's just to do auto-detection of the video node
since there are many at this point
[16:11]
ezequielghm...
as you know, a decoder can have an inline block for scaling and color convert
i wonder how useful it is to choose a fix function.
[16:13]
paulk-leonovyeah
mhh
that's worth discussing and specifying
[16:14]
ezequielgotoh, if you have VIDIOC_ENUM_FRAMESIZES and ENUM_FMT says it's a decoder, i'd say you have scaling caps.
similarly to SELECTION_API
[16:15]
paulk-leonovyeah but not m2m scaling
like, you can't use the scaler out of the pipeline
(since it's inline)
so even if it was described in mc it'd be clear that it cannot be used for memory to memory scaling
if that's your concern
[16:15]
ezequielgwell, similarly: if ENUM_FMT(SINK) doesn't include a coded format, then it's not a decoder.
if same goes to ENUM_FMT(SRC), it's not an encoder.
[16:16]
paulk-leonovright
but what's wrong with the mc entity function?
it's less logic
to figure it out
since it'ex explicit
[16:16]
ezequielghave you implemented the userspace part? [16:17]
paulk-leonovyeah [16:17]
ezequielgis it really less logic? [16:17]
paulk-leonovokay no
it's not
[16:17]
ezequielg:) [16:17]
paulk-leonovbut
conceptually
it is
[16:17]
ezequielgwell, you asked what's wrong: it's very cumbersome to consume.
and it can't expose multi function devices, can it?
[16:18]
paulk-leonovto me that's legit, mc aims to represent complex pipelines so it takes some code to get there [16:18]
ezequielgif you can cleanly put a set of caps: SCALE, CSC, CROP, then that's OK [16:18]
paulk-leonovthat's what I was asking earlier
maybe caps/flags would be more appropriate indeed
instead of a single fixed function
but multiple entities with the same sink/source would also make sense IMO
less easy for userspace to manage, but meh
[16:18]
ezequielgI know this might be not nice to say, but I think we should decide with patches on the table
if it looks good, it's good :)
and if it's a pain to consume, maybe we need a library, but that's another topic no?
[16:19]
paulk-leonovwell currently I've just put a single entity for scaler
which is what I'll submit for RGA
yeah sure, a library is always a good solution
(I just like to do bare metal stuff, but it's a personal preference)
anyway, bbl
[16:20]
.... (idle for 16mn)
ezequielg+1 [16:37]
headless-1 [16:48]
.... (idle for 19mn)
ezequielg=0 :/ [17:07]
............. (idle for 1h1mn)
paulk-leonov: jernej: any idea what's the purpose of having both VE_H264_VLD_LEN and VE_H264_VLD_END?
i.e. what use-case would need that to be any different then end = start + len ?
[18:08]
jernejnot sure to be honest, I was wondering same myself
I think that it doesn't hurt to set both values according to buffer size but I didn't test that thoroughly
[18:11]
ezequielgjernej: can you confirm me this works? cedrus_write(dev, VE_H264_VLD_LEN, vb2_get_plane_payload(src_buf, 0)); --no hurries?
i think the size field in the slice-params should be dropped.
[18:13]
jernejwell, I can guarantee that won't work, you have to multiply it by 8 :) [18:14]
ezequielghaha lol
that's why i need to test things
[18:15]
jernejezequielg: main difference between them is that with vld_len you can address 64 MiB and with vld_end whole 4 GiB [18:23]
ezequielgin a way, it would be nice to use vb2_get_plane_payload consistently, and avoid depending on a field passed from userland. [18:23]
jernejis it plausible to have one slice bigger than 64 MiB? I think no [18:26]
ezequielgi am yet to see the spec talking about maximum sizes
i wonder what would result from encoding an 8K noisy frame, using IPCM on all MBs.
That's the least compressed setup I can think of.
it's fair to say no encoder will do that.
[18:30]

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)