[FFmpeg-cvslog] avcodec/vvc_refs: don't ask for a "Inter layer ref" sample

James Almer git at videolan.org
Tue Apr 2 17:56:39 EEST 2024


ffmpeg | branch: release/7.0 | James Almer <jamrial at gmail.com> | Tue Apr  2 11:48:32 2024 -0300| [112fdae9f99abce1d95a0c2b1e2f3c76cdee4c3c] | committer: James Almer

avcodec/vvc_refs: don't ask for a "Inter layer ref" sample

The FATE suite has two already.

Signed-off-by: James Almer <jamrial at gmail.com>
(cherry picked from commit 45b56455ad03649d66f151b2f14cecdd88fa3a2c)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=112fdae9f99abce1d95a0c2b1e2f3c76cdee4c3c
---

 libavcodec/vvc/vvc_refs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/vvc/vvc_refs.c b/libavcodec/vvc/vvc_refs.c
index afcfc09da7..336705c620 100644
--- a/libavcodec/vvc/vvc_refs.c
+++ b/libavcodec/vvc/vvc_refs.c
@@ -454,7 +454,8 @@ int ff_vvc_slice_rpl(VVCContext *s, VVCFrameContext *fc, SliceContext *sc)
                 if (ret < 0)
                     return ret;
             } else {
-                avpriv_request_sample(fc->log_ctx, "Inter layer ref");
+                // OPI_B_3.bit and VPS_A_3.bit should cover this
+                avpriv_report_missing_feature(fc->log_ctx, "Inter layer ref");
                 ret = AVERROR_PATCHWELCOME;
                 return ret;
             }



More information about the ffmpeg-cvslog mailing list