neg: ping
sailus: ping
hverkuil, is there an option in v4l2-compliance to dump the decoder capture buffers in a file?
svarbanov: not in v4l2-compliance, but v4l2-ctl can do this.
hverkuil, I have some progress with v4l2-compliance streaming test. I see two decoded capture buffers but after that streamoff is called (the bitstream has 250 frames)
svarbanov: I need to see the exact output of v4l2-compliance.
hverkuil, here https://paste.ubuntu.com/p/9Myjdv6vpQ/
but I think I have issues with decoder input buffers, the NAL spliting. I see that first decoded capture buffer is  with marked with corrupted data
svarbanov: is the dqevent issue we discussed yesterday indeed caused by a race condition in the compliance test? (i.e. I need to wait a bit)
hverkuil, yes, I have added sleep before dqevent
sleep of 1 second?
yes
svarbanov: pushed compliance fix for dqevent test.
hverkuil, can you show me where is q/dqbuf(capture) loop in v4l2-compliance. I want to check why the streamoff is called only after two dequeued buffers
                Cap Buffer: 0 Sequence: 0 Field: None Size: 147456 Flags: mapped, keyframe, error, ts-copy, ts-src-eof Timestamp: 151130.297289s
                fail: v4l2-test-buffers.cpp(1063): (buf.g_flags() & valid_output_flags) != (orig_buf.flags & valid_output_flags)
 
The problem is that the capture buffer sets the error flag, which obviously indicates a problem since the compliance test expects a valid capture buffer.
hmm, I may be too quick here.
Anyway, captureBufs() is the function that runs the capture test.
Can you add a 'printf("%x %x\n", buf.g_flags(), orig_buf.g_flags());' before the failing test? (line 1063)
I think that test might be wrong for a codec.
Hmm, try to change valid_output_flags to V4L2_BUF_FLAG_TIMECODE | V4L2_BUF_FLAG_TSTAMP_SRC_MASK.
That might solve this.
hverkuil, you mean to delete key, b and p and keep only above?
y
hverkuil: pong
neg: unping :-)
:-)
hverkuil, doesn't help. I added the printf : buf.g_flags: 4009, orig_buf.flags: 14103
hverkuil, you will suggest to look into vicodec_core I guess ;-)
svarbanov: use the v4l2_m2m_buf_copy_metadata helper to copy metadata from output to capture buffer.
That will solve this issue.
so yes, look into vicodec-core :-)
hverkuil, I tried without those checks and I'm able to capture ~240frames (they should be 250)
we have to add some mechanism to check the captured frames something like pre-calculated CRCs from file
svarbanov: I dug a bit deeper: the core reason for the streaming fail is that DQBUF of the output buffer set V4L2_BUF_FLAG_TSTAMP_SRC_SOE (0x10000), which shouldn't happen.
So it isn't actually the missing v4l2_m2m_buf_copy_metadata function (although you should use it).
hverkuil, I cannot find how V4L2_BUF_FLAG_TSTAMP_SRC_SOE is set on OUTPUT buffer in the driver
That's the mystery, yes :-)
what I done currently is to set src_vq/dst_vq.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY. Why isn't that enough?
That's handled correctly, but somewhere 0x10000 is also set.
I just committed a patch for v4l2-compliance to show the buffer flags for output buffers as well when --verbose is specified.
(it was shown for capture buffers, but not output buffers)
svarbanov: never mind, I now see the problem:
for m2m devices the timestamp source value from the output buffer should be copied to the capture buffer (that's what v4l2_m2m_buf_copy_metadata does).
And that's not done in this driver. So v4l2-compliance sets V4L2_BUF_FLAG_TSTAMP_SRC_SOE in the output buffer, and checks that it is correctly copied to the capture buffer.
hverkuil, btw what _SOE suffix means
SOE == start of exposure
uvc uses it.
An m2m driver doesn't use it, it just has to copy it.
sound weird for mem2mem devices, no?
*sounds
for codecs it is not very useful, but for e.g. scalers or converters you don't want to loose that information. I.e. if the source is a uvc webcam that is then processed by a m2m device, you want to keep the timestamp info.
Just use v4l2_m2m_buf_copy_metadata() and you'll be fine :-)
hverkuil, I'd use it but it is not easy in venus
I have to have src and dst buffers when call v4l2_buf_done(CAPTURE), but I don't know from which src buf to copy the flags
You seem to be copying the timestamp correctly, right?
yes!
so you add the additional information you need to copy as well. If you can't easily call the copy function, then at least you can do the equivalent manually.
(have to leave soon)
ok, thanks!
pH5: the good news is that I have the i.MX8MM almost up and running, the bad news is the 'almost
... is the 'almost': I'm about to leave and won't have access to the board until June 25th.
hverkuil: ok, thanks for letting me know