Re: [FFmpeg-devel] [PATCH] avcodec/h264: ignore POC when flag is set

2024-09-15 Thread Michael Niedermayer
On Thu, Sep 12, 2024 at 10:40:17PM -0700, kevmo...@gmail.com wrote: > From: Kevin Wang > > When the flag AV_CODEC_FLAG_OUTPUT_CORRUPT or AV_CODEC_FLAG2_SHOW_ALL > is set, ignore any out of order POC's as they may still be valid > frames. > > Fixes https://trac.ffmpeg.org/ticket/11190. > > Signe

Re: [FFmpeg-devel] [PATCH] avcodec/h264: ignore POC when flag is set

2024-09-13 Thread Kevin Wang
It seems that my patch didn't get picked up by patchwork :( Did I miss a formatting step? On Fri, Sep 13, 2024 at 1:40 AM wrote: > > From: Kevin Wang > > When the flag AV_CODEC_FLAG_OUTPUT_CORRUPT or AV_CODEC_FLAG2_SHOW_ALL > is set, ignore any out of order POC's as they may still be valid > fra

[FFmpeg-devel] [PATCH] avcodec/h264: ignore POC when flag is set

2024-09-12 Thread kevmo314
From: Kevin Wang When the flag AV_CODEC_FLAG_OUTPUT_CORRUPT or AV_CODEC_FLAG2_SHOW_ALL is set, ignore any out of order POC's as they may still be valid frames. Fixes https://trac.ffmpeg.org/ticket/11190. Signed-off-by: Kevin Wang --- libavcodec/h264_slice.c | 3 ++- 1 file changed, 2 insertio