[FFmpeg-devel] [PATCH] avformat/rtpdec_av1: Fix fragment continuation check when OBU_HAS_SIZE_FIELD is set

2025-04-13 Thread Parallelc
When OBU_HAS_SIZE_FIELD is set in the OBU header, frag_obu_size remains 0. The code used !frag_obu_size to check for unexpected fragment continuation, which resulted in incorrect drops. Introduce expect_frag_cont to explicitly track continuation expectation. Signed-off-by: Parallelc

Re: [FFmpeg-devel] [PATCH] avformat/rtpdec_av1: Fix fragment continuation check when OBU_HAS_SIZE_FIELD is set

2025-04-14 Thread Parallelc
On Mon, Apr 14, 2025 at 3:13 PM Chris Hodges wrote: > > Hi there, > > On 4/13/25 17:56, Parallelc wrote: > > > When OBU_HAS_SIZE_FIELD is set in the OBU header, frag_obu_size remains 0. > > The code used !frag_obu_size to check for unexpected fragment continuation, >

[FFmpeg-devel] [PATCH] rtpdec_vp9: Update header parsing to RFC 9628

2025-04-19 Thread Parallelc
Signed-off-by: Parallelc --- libavformat/rtpdec_vp9.c | 141 --- 1 file changed, 72 insertions(+), 69 deletions(-) diff --git a/libavformat/rtpdec_vp9.c b/libavformat/rtpdec_vp9.c index 6bbdf4847a..924065b5da 100644 --- a/libavformat/rtpdec_vp9.c +++ b