This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 54b618ab5cb6499f4fa8d367abd93fd1447fef4f Author: Lynne <[email protected]> AuthorDate: Tue Nov 4 21:43:22 2025 +0100 Commit: Lynne <[email protected]> CommitDate: Tue May 19 17:43:53 2026 +0900 apv_decode: expose the current frame header We need to know the quantization matrix. --- libavcodec/apv_decode.c | 1 + libavcodec/apv_decode.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/libavcodec/apv_decode.c b/libavcodec/apv_decode.c index 43628d2815..8d90a6ab61 100644 --- a/libavcodec/apv_decode.c +++ b/libavcodec/apv_decode.c @@ -375,6 +375,7 @@ static int apv_decode(AVCodecContext *avctx, AVFrame *output, if (err < 0) return err; + apv->cur_raw_frame = input; apv->output_frame = output; atomic_store_explicit(&apv->tile_errors, 0, memory_order_relaxed); diff --git a/libavcodec/apv_decode.h b/libavcodec/apv_decode.h index dee908eebb..dd65f1b948 100644 --- a/libavcodec/apv_decode.h +++ b/libavcodec/apv_decode.h @@ -24,6 +24,7 @@ #include "apv.h" #include "apv_dsp.h" +#include "cbs_apv.h" #include "cbs.h" #include "get_bits.h" @@ -100,6 +101,7 @@ typedef struct APVDecodeContext { CodedBitstreamFragment au; APVDerivedTileInfo tile_info; + APVRawFrame *cur_raw_frame; AVPacket *pkt; AVFrame *output_frame; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
