Hi again, I have my sgm3140 flash light driver nearly finished, I'm just testing it out with v4l2-ctl but when running `v4l2-ctl -d /dev/video1 -c strobe=1` I get `VIDIOC_S_EXT_CTRLS: failed: Resource busy` back as a response. I know that this control worked fine at some point, is there something I'm missing?
z3ntu: I don't know your driver, but do you have a flash LED mode, or strobe source control? Having a wrong value set in either would likely result in -EBUSY on strobe control.
sailus: I have `.strobe_set` of `led_flash_ops` implemented
The source is at https://gitlab.com/pine64-org/linux/-/blob/pine64-kernel-5.4.y-flash/drivers/leds/leds-sgm3140.c if that helps
As far as I know that's the function to implement for the flash I have (two gpios, both on means flash is active for ~250ms (switches to torch mode after that), only one gpio on means torch mode)
It works fine when used via sysfs (`echo 1 > /sys/class/leds/white\:flash/flash_strobe`) - the flash is on for 250ms and is then turned off again automatically
Also the "led_mode" menu works fine (`v4l2-ctl -d /dev/video1 -c led_mode=2` or =0)
ndufresne: regarding ffmpeg and 16 slices limit for h264, I am not sure where that number is taken from, if it was an arbitrary number, something used by other ffmpeg hwaccels, inspired by hantro sdk or cedrus vdpau, jernej may remember or have more insights?
well, I'm not sure where I saw it, but 16 was always upper limit, even HW has similar limit
I mean Cedrus VPU
anyway, looking at standard ITU-T Rec. H.264 (04/2017), there is max_num_ref_frames field in SPS
which defines max. number of references for that set
upper limit of max_num_ref_frames depends on several parameters, mostly connected to profile
jernej: max_num_ref_frames is the number maximum number of picture you can refer to, not the number of slices
ah, that
idk
Cedrus works per slice only for now
the implementation decided to limit the number of slices to 16, which is probably working in 99% of the case
right, for Cedrus you don't use this array at all
well, there is always 1 slice per decode
did you check standard?
jernej: Kwiboo: I'm asking because I liked the simplicity, but if it not standard ...
I didn't find anything that limits the number of slice, appart that you cannot have an empty slice, so I only found that you can't have more slices then macroblocks
but that would be insane amount of slices
I'm working on a native gst implementation, for the context
it shares the parsing and dpb management with the newly introduced DXVA, and I guess more in the future
just like ffmpeg
though, we decided to handle request like chrome is doing, as it allow better queuing in the driver
it seems to me too that the only limitation is MB number
I didn't see more than four slices  in practice
but sadly, controls can't have fields with variable size
I have similar problem with HEVC
need to finish getting around what we can and cannot do with ext controls
one possibility would be to have pointer to array stored in control
ah, no idea for hantro, we only pass a subset of the first slice header, and the IP parses the rest
so only the first slice param in the control is read, the rest is ignored :-S
(was a bit unexpected finding)
Slice count has a not-very-constraining limit in A.3.3 (b) for main/high profiles at some levels.  E.g. a 1080p60 video is typically level 4.2, which can't be more than MaxMBPS/SliceRate = 21760 slices/second or 362 slices/frame.
The worst case of this is old RTP stuff where it had to fit a single NAL unit in an MTU-limited UDP packet.  That could certainly make large intra frames be a hundred or more slices.
wow, seriously, they were doing packetization with slices ?
thanks for the info jkqxz
<https://tools.ietf.org/html/rfc3984#section-5.6>
It's the default if you can't negotiate the non-interleaved mode.
worked a bit on the gst h264 payloader, but it's a long time ago
Do you know about the libva stuff submitted for hantro?  (<https://github.com/intel/libva/pull/332>)
I'm wondering what the intent behind it is, because the additions seem kindof weird to me.
Like, half of the fields being added seem like they're trying to push calculations into the caller which are only ever going to be relevant to this one driver.