diff options
author | James Almer <jamrial@gmail.com> | 2024-04-02 11:48:32 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-04-02 11:48:32 -0300 |
commit | 45b56455ad03649d66f151b2f14cecdd88fa3a2c (patch) | |
tree | 534e7bbe690a50f5261e3551ff81bae2721fe15b | |
parent | 238bb653e7ea466a024d027072b57d0a9a1278d7 (diff) | |
download | ffmpeg-45b56455ad03649d66f151b2f14cecdd88fa3a2c.tar.gz |
avcodec/vvc_refs: don't ask for a "Inter layer ref" sample
The FATE suite has two already.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/vvc/vvc_refs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vvc/vvc_refs.c b/libavcodec/vvc/vvc_refs.c index 3128122fff..553b25e1ce 100644 --- a/libavcodec/vvc/vvc_refs.c +++ b/libavcodec/vvc/vvc_refs.c @@ -455,7 +455,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; } |