Re: [FFmpeg-devel] [PATCH 3/4] lavc/vvc_parser: Fixed the has_b_frames setting

2024-04-21 Thread Nuo Mi
On Sun, Apr 21, 2024 at 10:51 AM myp...@gmail.com wrote: > On Sat, Apr 20, 2024 at 11:50 AM Nuo Mi wrote: > > > > On Fri, Apr 19, 2024 at 9:55 PM Jun Zhao wrote: > > > > > From: Jun Zhao > > > > > > has_b_frames used in decoder for size of the frame reordering > > > buffer, setting this field

Re: [FFmpeg-devel] [PATCH 3/4] lavc/vvc_parser: Fixed the has_b_frames setting

2024-04-20 Thread myp...@gmail.com
On Sat, Apr 20, 2024 at 11:50 AM Nuo Mi wrote: > > On Fri, Apr 19, 2024 at 9:55 PM Jun Zhao wrote: > > > From: Jun Zhao > > > > has_b_frames used in decoder for size of the frame reordering > > buffer, setting this field from dpb_max_num_reorder_pics. > > > > Signed-off-by: Jun Zhao > > --- >

Re: [FFmpeg-devel] [PATCH 3/4] lavc/vvc_parser: Fixed the has_b_frames setting

2024-04-19 Thread Nuo Mi
On Fri, Apr 19, 2024 at 9:55 PM Jun Zhao wrote: > From: Jun Zhao > > has_b_frames used in decoder for size of the frame reordering > buffer, setting this field from dpb_max_num_reorder_pics. > > Signed-off-by: Jun Zhao > --- > libavcodec/vvc_parser.c | 4 ++-- > 1 file changed, 2

[FFmpeg-devel] [PATCH 3/4] lavc/vvc_parser: Fixed the has_b_frames setting

2024-04-19 Thread Jun Zhao
From: Jun Zhao has_b_frames used in decoder for size of the frame reordering buffer, setting this field from dpb_max_num_reorder_pics. Signed-off-by: Jun Zhao --- libavcodec/vvc_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/vvc_parser.c