<!-- 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: <u>syoung</u>: ping
   <br> <u>syoung</u>: when building v4l-utils without HAVE_BPF I get this error:
   <br>  CC       keytable.o
   <br> keytable.c: In function ‘parse_toml_raw_part’:
   <br> keytable.c:553:25: error: dereferencing pointer to incomplete type ‘struct raw_entry’
   <br>   re = calloc(1, sizeof(*re) + sizeof(re-&gt;raw[0]) * length);
   <br>                         ^~~
   <br> 
   <br> can you take a look?
   sailus: <u>ezequielg</u>: Do you happen to have contacts to Rock-chip? The e-mail of the Rockchip RGA driver maintainer bounces back...
   ezequielg: I don't think that guy is working for Rockchip anymore.
   <br> Questions about rga?
   <br> <u>sailus</u>: ^
   sailus: <u>ezequielg</u>: The MAINTAINERS entry for the driver contains that e-mail. It should be fixed.
   <br> I wonder if someone at Rockchip could be interested.
   ezequielg: I can maintain that driver.
   <br> <u>sailus</u>: in fact, I have a few cleanups for it queued here.
   <br> just ENOTIME to work on them.
   <br> and also, fwiw, that driver is not too used in production.
   sailus: :-)
   <br> Would you like to send a patch?
   ezequielg: sure, why not?
   <br> <u>hverkuil</u>: ping.
   hverkuil: <u>ezequielg</u>: pong
   ezequielg: do you have some time to discuss v4l2 controls?
   hverkuil: sure
   ezequielg: so, it seems that in order to pass an array of controls, the size of the array has to be statically defined in the kernel.
   <br> i would like to pass a dynamic array, where to user would set the number of elements.
   hverkuil: That's not supported.
   <br> Probably not what you wanted to hear...
   ezequielg: Oh, yes. I checked that yesterday.
   <br> <u>hverkuil</u>: so the question is - how disliked would a proposal be?
   hverkuil: Very disliked :-)
   ezequielg: yeah...
   <br> i thought about that.
   hverkuil: It would make things a lot more complex in the control framework, which is already quite complex.
   <br> I think I considered it in the past, but it was just not worth the substantial effort.
   <br> The semantics are also unclear.
   ezequielg: so the only way is support max-no-elements on that control, even though you might always use 1 or 2.
   <br> unless we find a better way of passing slice information for frames.
   pH5: <u>ezequielg</u>: is this about the h264 slice parameters? it does feel wasteful to copy ~13 KiB of zeroes from userspace with every frame, just because a theoretical stream could have up to 16 slices.
   ezequielg: instead of a control array.
   <br> <u>pH5</u>: it's worse, 32 or you name it.
   <br> ffmpeg has bumped to 32 because "some stream"
   pH5: oh, ok :(
   ezequielg: and HEVC can have hundreds, IIUC what ndufrense explained me
   hverkuil: <u>ezequielg</u>: I can't remember if you are allowed to just pass the first X elements of an array and let the core zero the remainder of the array.
   <br> <u>ezequielg</u>: no, that's not allowed either. The full array has to be passed.
   pH5: the core currently -EFAULTs if the passed size is smaller than the size of the full array.
   hverkuil: I think that is something that might be possible to improve. The question is again semantics: what do you do with the remainder of the array? Init to zero? Init to a default value? Explicitly store that only the first X elements are valid?
   <br> Leave the old values?
   <br> (the last is probably best)
   ezequielg: not saying it's easy.
   <br> i suspect for now we'll have to live with current semantics.
   <br> but it's something i started thinking about.
   pH5: in the case of slice_params, where there is a number of slices in the decode_params and the driver will never look at the [possibly old] later slice_params, just leaving the old values in there is probably best.
   <br> but that's just one kind of array control, I assume there are others where this might not be the best fit.
   ezequielg: <u>pH5</u>: oh, btw - i still need to get you ffmpeg's sources.
   <br> <u>hverkuil</u>: pH5: i will take a look at passing only some elements to the driver.
   pH5: <u>ezequielg</u>: yeah, that would be great. I had tested VP8 on i.MX8 after my vacation, when your patches were already merged, maybe I can do better for h.264.
   sailus: <u>hverkuil</u>: Let me review the set.
   <br> I'll do that today / over the week-end.
   <br> I have to say that I'm not a fan of such a hybrid approach but I recognise there are arguments for doing just that as well.
   ezequielg: <u>pH5</u>: https://gitlab.collabora.com/ezequiel/ffmpeg/tree/stateless-mpeg2-vp8-h264-v4
   pH5: <u>ezequielg</u>: thank you
   koike: <u>shuah</u>: thanks a lot for the patchset, I was talking with hans and I agree this is the way to go, I was also checking about the configfs thing, and this patchset will also help there a lot. I'll take a look asap.
   shuah: <u>koike</u>: Thanks Helen! The gpf is an existing problem before this change. I started out wanting to fix gpf and we ended up with collapsing.
   <br> I am happy with the way I managed to preserve the functional structure of the original work
   <br> I am debugging gpf during unbind while streaming is active. Another existing problem. It will be easier to solve it now