Re: [FFmpeg-devel] [PATCH v2] lavc/vvc: Use a bitfield to store MIP information

2024-12-07 Thread Nuo Mi
Applied. Thank you, Frank On Wed, Dec 4, 2024 at 4:57 AM Frank Plowman wrote: > Reduces memory consumption by ~4MB for 1080p video with a maximum delay > of 16 frames by packing various information related to MIP: > * intra_mip_flag, 1 bit > * intra_mip_transposed_flag, 1 bit > * intra_mip_mode,

[FFmpeg-devel] [PATCH v2] lavc/vvc: Use a bitfield to store MIP information

2024-12-03 Thread Frank Plowman
Reduces memory consumption by ~4MB for 1080p video with a maximum delay of 16 frames by packing various information related to MIP: * intra_mip_flag, 1 bit * intra_mip_transposed_flag, 1 bit * intra_mip_mode, 4 bits Into a single byte. Co-authored-by: Nuo Mi Signed-off-by: Frank Plowman --- Chan