Ayrton Sparling
Ayrton Sparling
I spent a while on this only to realize source-maps were being inlined because of my webpack config. I also tested this pull request before and after applying the patch...
Well it seems to trigger the initial resolution change at least since the feed initially works, but I'm not sure about resolution changes mid stream. I did come across this...
Does this issue exist on versions before 5.12? I'm using 5.10.25. ``` Linux alarm 5.10.25-1-ARCH #1 SMP PREEMPT Mon Mar 22 09:22:11 MDT 2021 aarch64 GNU/Linux ``` > It is...
Seems RPI does support the stateful decode API. https://github.com/mpv-player/mpv/issues/7492#issuecomment-591897864 And there is this `V4L2_EVENT_SOURCE_CHANGE` line in the driver source (I think). https://github.com/raspberrypi/linux/blob/7ca8526c5ad5d3467e5e6799787fb3329ceba192/drivers/staging/vc04_services/bcm2835-codec/bcm2835-v4l2-codec.c#L913-L919
I'm not sure if that's the right source code but it does seem to line up with the modules in use on my RPI4 board. ```bash $ lsmod | grep...
Here are the strace logs: https://github.com/FallingSnow/v4l2-pi/tree/master/logs. The `v4l2-pi-stateful-strace.log` log is from the program in the `/stateful` directory. The other is from the program in the `/src` directory. The code can...
I don't know the V4L2 stateful decoder spec but if it requires you to fire a `V4L2_EVENT_SOURCE_CHANGE` then I think RPI4 would be out of spec... Unless I'm doing something...
@6by9 Do you know if the RPI4 is supposed to submit a source change event when using the V4L2_mem2mem H264 decoder?
@Gnurou > Another thing that surprises me is that with both programs the driver returns the `OUTPUT` buffers that you are queuing, even though it doesn't produces any frame (as...
Actually both queues are already `STREAMON`ed, as this is how my C program works. https://github.com/FallingSnow/v4l2-pi/blob/8ee9ab4863918db325f792c4d01f1e98e817f83a/src/main.rs#L208-L213 :confused: Btw, if you're interested, this is the horrible piece of code that creates the...