Re: [FFmpeg-devel] [PATCH v6 2/2] lavc/dxvenc: migrate DXT1 encoder to lavu hashtable

2024-06-04 Thread Michael Niedermayer
On Mon, Jun 03, 2024 at 10:39:04PM -0700, Connor Worley wrote: > Offers a modest performance gain due to the switch from naive linear > probling to robin hood. > > Signed-off-by: Connor Worley > --- > libavcodec/dxvenc.c | 119 > 1 file changed, 32 in

[FFmpeg-devel] [PATCH v6 2/2] lavc/dxvenc: migrate DXT1 encoder to lavu hashtable

2024-06-03 Thread Connor Worley
Offers a modest performance gain due to the switch from naive linear probling to robin hood. Signed-off-by: Connor Worley --- libavcodec/dxvenc.c | 119 1 file changed, 32 insertions(+), 87 deletions(-) diff --git a/libavcodec/dxvenc.c b/libavcodec/d