From: Anton Khirnov <anton@khirnov.net> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH] libavcodec/hevcdec: detect non-conformant missing refs Date: Tue, 05 Apr 2022 11:10:10 +0200 Message-ID: <164914981025.19727.3038981711097240936@lain.red.khirnov.net> (raw) In-Reply-To: <5ca902bc-99cc-2866-ec9a-068ac356924d@gmail.com> Quoting Xiaolei Yu (2022-04-05 08:49:24) > > For cases which prefer rejecting broken bitstreams. > --- > libavcodec/hevc_refs.c | 15 ++++++++++++--- > 1 file changed, 12 insertions(+), 3 deletions(-) > > diff --git a/libavcodec/hevc_refs.c b/libavcodec/hevc_refs.c > index fe18ca2b1d..7ea70e301b 100644 > --- a/libavcodec/hevc_refs.c > +++ b/libavcodec/hevc_refs.c > @@ -426,7 +426,7 @@ static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc) > > /* add a reference with the given poc to the list and mark it as used in DPB */ > static int add_candidate_ref(HEVCContext *s, RefPicList *list, > - int poc, int ref_flag, uint8_t use_msb) > + int poc, int ref_flag, uint8_t use_msb, int maybe_missing) allow_missing would be clearer IMO > { > HEVCFrame *ref = find_ref_idx(s, poc, use_msb); > > @@ -434,6 +434,9 @@ static int add_candidate_ref(HEVCContext *s, RefPicList *list, > return AVERROR_INVALIDDATA; > > if (!ref) { > + if ((s->avctx->err_recognition & AV_EF_COMPLIANT) && !maybe_missing) a log message would be nice, so one can easily tell where exactly the error comes from -- Anton Khirnov _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2022-04-05 9:10 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-04-05 6:49 Xiaolei Yu 2022-04-05 9:10 ` Anton Khirnov [this message] 2022-04-16 8:30 ` Xiaolei Yu [not found] ` <2237ca87-c339-b00c-1562-5c49faee0987@gmail.com> 2022-04-16 8:31 ` [FFmpeg-devel] [PATCH v2 1/2] avcodec/hevcdec: skip generating missing refs in foll lists Xiaolei Yu 2022-04-16 8:31 ` [FFmpeg-devel] [PATCH v2 2/2] avcodec/hevcdec: detect non-conformant missing refs Xiaolei Yu
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=164914981025.19727.3038981711097240936@lain.red.khirnov.net \ --to=anton@khirnov.net \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git