[FFmpeg-devel] [PATCH] Macroblocks modes extraction

2025-07-02 Thread Timothee
Hello, I am working on a modification toextract per-macroblock prediction modes (H.264 for now). The goal is to make this information available to vf_codecview and print it in a log file (for now). This are what I have added: 1. A new H264MBInfostruct holding the prediction modes. 2.

[FFmpeg-devel] Fwd: [PATCH v2] avcodec/h264: fixed qp table attach for h264

2025-06-16 Thread Timothee
lease let me know if this version is correct. Any advice is welcome. Thanks, Timothée On 13/06/2025 à 22:52, Michael Niedermayer wrote : On Fri, Jun 13, 2025 at 02:37:53PM +0200, Timothee wrote: Hello, Here is a patch where I fixed the attach of per-macroblock qp tables for H.264. It was implem

Re: [FFmpeg-devel] Fwd: [PATCH v2] avcodec/h264: fixed qp table attach for h264

2025-06-16 Thread Timothee
: Timothee: Hello, Thank you for the feedback on my first patch. The corruption was likely caused by my email client's text formatting. The patch is attach to prevent any formatting error. I have check the patch file applies cleanly using `git am` and verified that all FATE tests still pass. P

[FFmpeg-devel] [PATCH v3] avcodec/h264: fixed qp table attach for h264

2025-06-17 Thread Timothee
the changes to h264_slice.c seem completely redundant. - Andreas Here is a new version of the patch without the redundant lines. Thanks, Timothée From 422e8dbdc3d79b24c6ccb11b7f384fc08406ee74 Mon Sep 17 00:00:00 2001 From: Timothee Date: Fri, 13 Jun 2025 14:21:28 +0200 Subject: [PATCH] avcodec

[FFmpeg-devel] [PATCH] avcodec/h264: fixed qp table attach for h264

2025-06-13 Thread Timothee
output.mp4` FATE passes. Thanks, Timothée Signed-off-by: Timothee --- libavcodec/h264_slice.c | 16 libavfilter/qp_table.c | 3 ++- libavfilter/qp_table.h | 1 + 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c