| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708 |
- #include <array>
- #include <string.h>
- #include "Math.hpp"
- #include "ProcessCommon.hpp"
- #include "ProcessRGB.hpp"
- #include "Tables.hpp"
- #include "Types.hpp"
- #include "Vector.hpp"
- #include <bx/endian.h>
- #ifdef __SSE4_1__
- # ifdef _MSC_VER
- # include <intrin.h>
- # include <Windows.h>
- # else
- # include <x86intrin.h>
- # endif
- #endif
- namespace
- {
- typedef std::array<uint16, 4> v4i;
- void Average( const uint8* data, v4i* a )
- {
- #ifdef __SSE4_1__
- __m128i d0 = _mm_loadu_si128(((__m128i*)data) + 0);
- __m128i d1 = _mm_loadu_si128(((__m128i*)data) + 1);
- __m128i d2 = _mm_loadu_si128(((__m128i*)data) + 2);
- __m128i d3 = _mm_loadu_si128(((__m128i*)data) + 3);
- __m128i d0l = _mm_unpacklo_epi8(d0, _mm_setzero_si128());
- __m128i d0h = _mm_unpackhi_epi8(d0, _mm_setzero_si128());
- __m128i d1l = _mm_unpacklo_epi8(d1, _mm_setzero_si128());
- __m128i d1h = _mm_unpackhi_epi8(d1, _mm_setzero_si128());
- __m128i d2l = _mm_unpacklo_epi8(d2, _mm_setzero_si128());
- __m128i d2h = _mm_unpackhi_epi8(d2, _mm_setzero_si128());
- __m128i d3l = _mm_unpacklo_epi8(d3, _mm_setzero_si128());
- __m128i d3h = _mm_unpackhi_epi8(d3, _mm_setzero_si128());
- __m128i sum0 = _mm_add_epi16(d0l, d1l);
- __m128i sum1 = _mm_add_epi16(d0h, d1h);
- __m128i sum2 = _mm_add_epi16(d2l, d3l);
- __m128i sum3 = _mm_add_epi16(d2h, d3h);
- __m128i sum0l = _mm_unpacklo_epi16(sum0, _mm_setzero_si128());
- __m128i sum0h = _mm_unpackhi_epi16(sum0, _mm_setzero_si128());
- __m128i sum1l = _mm_unpacklo_epi16(sum1, _mm_setzero_si128());
- __m128i sum1h = _mm_unpackhi_epi16(sum1, _mm_setzero_si128());
- __m128i sum2l = _mm_unpacklo_epi16(sum2, _mm_setzero_si128());
- __m128i sum2h = _mm_unpackhi_epi16(sum2, _mm_setzero_si128());
- __m128i sum3l = _mm_unpacklo_epi16(sum3, _mm_setzero_si128());
- __m128i sum3h = _mm_unpackhi_epi16(sum3, _mm_setzero_si128());
- __m128i b0 = _mm_add_epi32(sum0l, sum0h);
- __m128i b1 = _mm_add_epi32(sum1l, sum1h);
- __m128i b2 = _mm_add_epi32(sum2l, sum2h);
- __m128i b3 = _mm_add_epi32(sum3l, sum3h);
- __m128i a0 = _mm_srli_epi32(_mm_add_epi32(_mm_add_epi32(b2, b3), _mm_set1_epi32(4)), 3);
- __m128i a1 = _mm_srli_epi32(_mm_add_epi32(_mm_add_epi32(b0, b1), _mm_set1_epi32(4)), 3);
- __m128i a2 = _mm_srli_epi32(_mm_add_epi32(_mm_add_epi32(b1, b3), _mm_set1_epi32(4)), 3);
- __m128i a3 = _mm_srli_epi32(_mm_add_epi32(_mm_add_epi32(b0, b2), _mm_set1_epi32(4)), 3);
- _mm_storeu_si128((__m128i*)&a[0], _mm_packus_epi32(_mm_shuffle_epi32(a0, _MM_SHUFFLE(3, 0, 1, 2)), _mm_shuffle_epi32(a1, _MM_SHUFFLE(3, 0, 1, 2))));
- _mm_storeu_si128((__m128i*)&a[2], _mm_packus_epi32(_mm_shuffle_epi32(a2, _MM_SHUFFLE(3, 0, 1, 2)), _mm_shuffle_epi32(a3, _MM_SHUFFLE(3, 0, 1, 2))));
- #else
- uint32 r[4];
- uint32 g[4];
- uint32 b[4];
- memset(r, 0, sizeof(r));
- memset(g, 0, sizeof(g));
- memset(b, 0, sizeof(b));
- for( int j=0; j<4; j++ )
- {
- for( int i=0; i<4; i++ )
- {
- int index = (j & 2) + (i >> 1);
- b[index] += *data++;
- g[index] += *data++;
- r[index] += *data++;
- data++;
- }
- }
- a[0] = v4i{ uint16( (r[2] + r[3] + 4) / 8 ), uint16( (g[2] + g[3] + 4) / 8 ), uint16( (b[2] + b[3] + 4) / 8 ), 0};
- a[1] = v4i{ uint16( (r[0] + r[1] + 4) / 8 ), uint16( (g[0] + g[1] + 4) / 8 ), uint16( (b[0] + b[1] + 4) / 8 ), 0};
- a[2] = v4i{ uint16( (r[1] + r[3] + 4) / 8 ), uint16( (g[1] + g[3] + 4) / 8 ), uint16( (b[1] + b[3] + 4) / 8 ), 0};
- a[3] = v4i{ uint16( (r[0] + r[2] + 4) / 8 ), uint16( (g[0] + g[2] + 4) / 8 ), uint16( (b[0] + b[2] + 4) / 8 ), 0};
- #endif
- }
- void CalcErrorBlock( const uint8* data, uint err[4][4] )
- {
- #ifdef __SSE4_1__
- __m128i d0 = _mm_loadu_si128(((__m128i*)data) + 0);
- __m128i d1 = _mm_loadu_si128(((__m128i*)data) + 1);
- __m128i d2 = _mm_loadu_si128(((__m128i*)data) + 2);
- __m128i d3 = _mm_loadu_si128(((__m128i*)data) + 3);
- __m128i dm0 = _mm_and_si128(d0, _mm_set1_epi32(0x00FFFFFF));
- __m128i dm1 = _mm_and_si128(d1, _mm_set1_epi32(0x00FFFFFF));
- __m128i dm2 = _mm_and_si128(d2, _mm_set1_epi32(0x00FFFFFF));
- __m128i dm3 = _mm_and_si128(d3, _mm_set1_epi32(0x00FFFFFF));
- __m128i d0l = _mm_unpacklo_epi8(dm0, _mm_setzero_si128());
- __m128i d0h = _mm_unpackhi_epi8(dm0, _mm_setzero_si128());
- __m128i d1l = _mm_unpacklo_epi8(dm1, _mm_setzero_si128());
- __m128i d1h = _mm_unpackhi_epi8(dm1, _mm_setzero_si128());
- __m128i d2l = _mm_unpacklo_epi8(dm2, _mm_setzero_si128());
- __m128i d2h = _mm_unpackhi_epi8(dm2, _mm_setzero_si128());
- __m128i d3l = _mm_unpacklo_epi8(dm3, _mm_setzero_si128());
- __m128i d3h = _mm_unpackhi_epi8(dm3, _mm_setzero_si128());
- __m128i sum0 = _mm_add_epi16(d0l, d1l);
- __m128i sum1 = _mm_add_epi16(d0h, d1h);
- __m128i sum2 = _mm_add_epi16(d2l, d3l);
- __m128i sum3 = _mm_add_epi16(d2h, d3h);
- __m128i sum0l = _mm_unpacklo_epi16(sum0, _mm_setzero_si128());
- __m128i sum0h = _mm_unpackhi_epi16(sum0, _mm_setzero_si128());
- __m128i sum1l = _mm_unpacklo_epi16(sum1, _mm_setzero_si128());
- __m128i sum1h = _mm_unpackhi_epi16(sum1, _mm_setzero_si128());
- __m128i sum2l = _mm_unpacklo_epi16(sum2, _mm_setzero_si128());
- __m128i sum2h = _mm_unpackhi_epi16(sum2, _mm_setzero_si128());
- __m128i sum3l = _mm_unpacklo_epi16(sum3, _mm_setzero_si128());
- __m128i sum3h = _mm_unpackhi_epi16(sum3, _mm_setzero_si128());
- __m128i b0 = _mm_add_epi32(sum0l, sum0h);
- __m128i b1 = _mm_add_epi32(sum1l, sum1h);
- __m128i b2 = _mm_add_epi32(sum2l, sum2h);
- __m128i b3 = _mm_add_epi32(sum3l, sum3h);
- __m128i a0 = _mm_add_epi32(b2, b3);
- __m128i a1 = _mm_add_epi32(b0, b1);
- __m128i a2 = _mm_add_epi32(b1, b3);
- __m128i a3 = _mm_add_epi32(b0, b2);
- _mm_storeu_si128((__m128i*)&err[0], a0);
- _mm_storeu_si128((__m128i*)&err[1], a1);
- _mm_storeu_si128((__m128i*)&err[2], a2);
- _mm_storeu_si128((__m128i*)&err[3], a3);
- #else
- uint terr[4][4];
- memset(terr, 0, 16 * sizeof(uint));
- for( int j=0; j<4; j++ )
- {
- for( int i=0; i<4; i++ )
- {
- int index = (j & 2) + (i >> 1);
- uint d = *data++;
- terr[index][0] += d;
- d = *data++;
- terr[index][1] += d;
- d = *data++;
- terr[index][2] += d;
- data++;
- }
- }
- for( int i=0; i<3; i++ )
- {
- err[0][i] = terr[2][i] + terr[3][i];
- err[1][i] = terr[0][i] + terr[1][i];
- err[2][i] = terr[1][i] + terr[3][i];
- err[3][i] = terr[0][i] + terr[2][i];
- }
- for( int i=0; i<4; i++ )
- {
- err[i][3] = 0;
- }
- #endif
- }
- uint CalcError( const uint block[4], const v4i& average )
- {
- uint err = 0x3FFFFFFF; // Big value to prevent negative values, but small enough to prevent overflow
- err -= block[0] * 2 * average[2];
- err -= block[1] * 2 * average[1];
- err -= block[2] * 2 * average[0];
- err += 8 * ( sq( average[0] ) + sq( average[1] ) + sq( average[2] ) );
- return err;
- }
- void ProcessAverages( v4i* a )
- {
- #ifdef __SSE4_1__
- for( int i=0; i<2; i++ )
- {
- __m128i d = _mm_loadu_si128((__m128i*)a[i*2].data());
- __m128i t = _mm_add_epi16(_mm_mullo_epi16(d, _mm_set1_epi16(31)), _mm_set1_epi16(128));
- __m128i c = _mm_srli_epi16(_mm_add_epi16(t, _mm_srli_epi16(t, 8)), 8);
- __m128i c1 = _mm_shuffle_epi32(c, _MM_SHUFFLE(3, 2, 3, 2));
- __m128i diff = _mm_sub_epi16(c, c1);
- diff = _mm_max_epi16(diff, _mm_set1_epi16(-4));
- diff = _mm_min_epi16(diff, _mm_set1_epi16(3));
- __m128i co = _mm_add_epi16(c1, diff);
- c = _mm_blend_epi16(co, c, 0xF0);
- __m128i a0 = _mm_or_si128(_mm_slli_epi16(c, 3), _mm_srli_epi16(c, 2));
- _mm_storeu_si128((__m128i*)a[4+i*2].data(), a0);
- }
- for( int i=0; i<2; i++ )
- {
- __m128i d = _mm_loadu_si128((__m128i*)a[i*2].data());
- __m128i t0 = _mm_add_epi16(_mm_mullo_epi16(d, _mm_set1_epi16(15)), _mm_set1_epi16(128));
- __m128i t1 = _mm_srli_epi16(_mm_add_epi16(t0, _mm_srli_epi16(t0, 8)), 8);
- __m128i t2 = _mm_or_si128(t1, _mm_slli_epi16(t1, 4));
- _mm_storeu_si128((__m128i*)a[i*2].data(), t2);
- }
- #else
- for( int i=0; i<2; i++ )
- {
- for( int j=0; j<3; j++ )
- {
- int32 c1 = mul8bit( a[i*2+1][j], 31 );
- int32 c2 = mul8bit( a[i*2][j], 31 );
- int32 diff = c2 - c1;
- if( diff > 3 ) diff = 3;
- else if( diff < -4 ) diff = -4;
- int32 co = c1 + diff;
- a[5+i*2][j] = ( c1 << 3 ) | ( c1 >> 2 );
- a[4+i*2][j] = ( co << 3 ) | ( co >> 2 );
- }
- }
- for( int i=0; i<4; i++ )
- {
- a[i][0] = g_avg2[mul8bit( a[i][0], 15 )];
- a[i][1] = g_avg2[mul8bit( a[i][1], 15 )];
- a[i][2] = g_avg2[mul8bit( a[i][2], 15 )];
- }
- #endif
- }
- void EncodeAverages( uint64& _d, const v4i* a, size_t idx )
- {
- uint64 d = _d;
- d |= ( idx << 24 );
- size_t base = idx << 1;
- if( ( idx & 0x2 ) == 0 )
- {
- for( int i=0; i<3; i++ )
- {
- d |= uint64( a[base+0][i] >> 4 ) << ( i*8 );
- d |= uint64( a[base+1][i] >> 4 ) << ( i*8 + 4 );
- }
- }
- else
- {
- for( int i=0; i<3; i++ )
- {
- d |= uint64( a[base+1][i] & 0xF8 ) << ( i*8 );
- int32 c = ( ( a[base+0][i] & 0xF8 ) - ( a[base+1][i] & 0xF8 ) ) >> 3;
- c &= ~0xFFFFFFF8;
- d |= ((uint64)c) << ( i*8 );
- }
- }
- _d = d;
- }
- uint64 CheckSolid( const uint8* src )
- {
- #ifdef __SSE4_1__
- __m128i d0 = _mm_loadu_si128(((__m128i*)src) + 0);
- __m128i d1 = _mm_loadu_si128(((__m128i*)src) + 1);
- __m128i d2 = _mm_loadu_si128(((__m128i*)src) + 2);
- __m128i d3 = _mm_loadu_si128(((__m128i*)src) + 3);
- __m128i c = _mm_shuffle_epi32(d0, _MM_SHUFFLE(0, 0, 0, 0));
- __m128i c0 = _mm_cmpeq_epi8(d0, c);
- __m128i c1 = _mm_cmpeq_epi8(d1, c);
- __m128i c2 = _mm_cmpeq_epi8(d2, c);
- __m128i c3 = _mm_cmpeq_epi8(d3, c);
- __m128i m0 = _mm_and_si128(c0, c1);
- __m128i m1 = _mm_and_si128(c2, c3);
- __m128i m = _mm_and_si128(m0, m1);
- if (!_mm_testc_si128(m, _mm_set1_epi32(-1)))
- {
- return 0;
- }
- #else
- const uint8* ptr = src + 4;
- for( int i=1; i<16; i++ )
- {
- if( memcmp( src, ptr, 4 ) != 0 )
- {
- return 0;
- }
- ptr += 4;
- }
- #endif
- return 0x02000000 |
- ( uint( src[0] & 0xF8 ) << 16 ) |
- ( uint( src[1] & 0xF8 ) << 8 ) |
- ( uint( src[2] & 0xF8 ) );
- }
- void PrepareAverages( v4i a[8], const uint8* src, uint err[4] )
- {
- Average( src, a );
- ProcessAverages( a );
- uint errblock[4][4];
- CalcErrorBlock( src, errblock );
- for( int i=0; i<4; i++ )
- {
- err[i/2] += CalcError( errblock[i], a[i] );
- err[2+i/2] += CalcError( errblock[i], a[i+4] );
- }
- }
- void FindBestFit( uint64 terr[2][8], uint16 tsel[16][8], v4i a[8], const uint32* id, const uint8* data )
- {
- for( size_t i=0; i<16; i++ )
- {
- uint16* sel = tsel[i];
- uint bid = id[i];
- uint64* ter = terr[bid%2];
- uint8 b = *data++;
- uint8 g = *data++;
- uint8 r = *data++;
- data++;
- int dr = a[bid][0] - r;
- int dg = a[bid][1] - g;
- int db = a[bid][2] - b;
- #ifdef __SSE4_1__
- // Reference implementation
- __m128i pix = _mm_set1_epi32(dr * 77 + dg * 151 + db * 28);
- // Taking the absolute value is way faster. The values are only used to sort, so the result will be the same.
- __m128i error0 = _mm_abs_epi32(_mm_add_epi32(pix, g_table256_SIMD[0]));
- __m128i error1 = _mm_abs_epi32(_mm_add_epi32(pix, g_table256_SIMD[1]));
- __m128i error2 = _mm_abs_epi32(_mm_sub_epi32(pix, g_table256_SIMD[0]));
- __m128i error3 = _mm_abs_epi32(_mm_sub_epi32(pix, g_table256_SIMD[1]));
- __m128i index0 = _mm_and_si128(_mm_cmplt_epi32(error1, error0), _mm_set1_epi32(1));
- __m128i minError0 = _mm_min_epi32(error0, error1);
- __m128i index1 = _mm_sub_epi32(_mm_set1_epi32(2), _mm_cmplt_epi32(error3, error2));
- __m128i minError1 = _mm_min_epi32(error2, error3);
- __m128i minIndex0 = _mm_blendv_epi8(index0, index1, _mm_cmplt_epi32(minError1, minError0));
- __m128i minError = _mm_min_epi32(minError0, minError1);
- // Squaring the minimum error to produce correct values when adding
- __m128i minErrorLow = _mm_shuffle_epi32(minError, _MM_SHUFFLE(1, 1, 0, 0));
- __m128i squareErrorLow = _mm_mul_epi32(minErrorLow, minErrorLow);
- squareErrorLow = _mm_add_epi64(squareErrorLow, _mm_loadu_si128(((__m128i*)ter) + 0));
- _mm_storeu_si128(((__m128i*)ter) + 0, squareErrorLow);
- __m128i minErrorHigh = _mm_shuffle_epi32(minError, _MM_SHUFFLE(3, 3, 2, 2));
- __m128i squareErrorHigh = _mm_mul_epi32(minErrorHigh, minErrorHigh);
- squareErrorHigh = _mm_add_epi64(squareErrorHigh, _mm_loadu_si128(((__m128i*)ter) + 1));
- _mm_storeu_si128(((__m128i*)ter) + 1, squareErrorHigh);
- // Taking the absolute value is way faster. The values are only used to sort, so the result will be the same.
- error0 = _mm_abs_epi32(_mm_add_epi32(pix, g_table256_SIMD[2]));
- error1 = _mm_abs_epi32(_mm_add_epi32(pix, g_table256_SIMD[3]));
- error2 = _mm_abs_epi32(_mm_sub_epi32(pix, g_table256_SIMD[2]));
- error3 = _mm_abs_epi32(_mm_sub_epi32(pix, g_table256_SIMD[3]));
- index0 = _mm_and_si128(_mm_cmplt_epi32(error1, error0), _mm_set1_epi32(1));
- minError0 = _mm_min_epi32(error0, error1);
- index1 = _mm_sub_epi32(_mm_set1_epi32(2), _mm_cmplt_epi32(error3, error2));
- minError1 = _mm_min_epi32(error2, error3);
- __m128i minIndex1 = _mm_blendv_epi8(index0, index1, _mm_cmplt_epi32(minError1, minError0));
- minError = _mm_min_epi32(minError0, minError1);
- // Squaring the minimum error to produce correct values when adding
- minErrorLow = _mm_shuffle_epi32(minError, _MM_SHUFFLE(1, 1, 0, 0));
- squareErrorLow = _mm_mul_epi32(minErrorLow, minErrorLow);
- squareErrorLow = _mm_add_epi64(squareErrorLow, _mm_loadu_si128(((__m128i*)ter) + 2));
- _mm_storeu_si128(((__m128i*)ter) + 2, squareErrorLow);
- minErrorHigh = _mm_shuffle_epi32(minError, _MM_SHUFFLE(3, 3, 2, 2));
- squareErrorHigh = _mm_mul_epi32(minErrorHigh, minErrorHigh);
- squareErrorHigh = _mm_add_epi64(squareErrorHigh, _mm_loadu_si128(((__m128i*)ter) + 3));
- _mm_storeu_si128(((__m128i*)ter) + 3, squareErrorHigh);
- __m128i minIndex = _mm_packs_epi32(minIndex0, minIndex1);
- _mm_storeu_si128((__m128i*)sel, minIndex);
- #else
- int pix = dr * 77 + dg * 151 + db * 28;
- for( int t=0; t<8; t++ )
- {
- const int64* tab = g_table256[t];
- uint idx = 0;
- uint64 err = sq( tab[0] + pix );
- for( int j=1; j<4; j++ )
- {
- uint64 local = sq( tab[j] + pix );
- if( local < err )
- {
- err = local;
- idx = j;
- }
- }
- *sel++ = idx;
- *ter++ += err;
- }
- #endif
- }
- }
- #ifdef __SSE4_1__
- // Non-reference implementation, but faster. Produces same results as the AVX2 version
- void FindBestFit( uint32 terr[2][8], uint16 tsel[16][8], v4i a[8], const uint32* id, const uint8* data )
- {
- for( size_t i=0; i<16; i++ )
- {
- uint16* sel = tsel[i];
- uint bid = id[i];
- uint32* ter = terr[bid%2];
- uint8 b = *data++;
- uint8 g = *data++;
- uint8 r = *data++;
- data++;
- int dr = a[bid][0] - r;
- int dg = a[bid][1] - g;
- int db = a[bid][2] - b;
- // The scaling values are divided by two and rounded, to allow the differences to be in the range of signed int16
- // This produces slightly different results, but is significant faster
- __m128i pixel = _mm_set1_epi16(dr * 38 + dg * 76 + db * 14);
- __m128i pix = _mm_abs_epi16(pixel);
- // Taking the absolute value is way faster. The values are only used to sort, so the result will be the same.
- // Since the selector table is symmetrical, we need to calculate the difference only for half of the entries.
- __m128i error0 = _mm_abs_epi16(_mm_sub_epi16(pix, g_table128_SIMD[0]));
- __m128i error1 = _mm_abs_epi16(_mm_sub_epi16(pix, g_table128_SIMD[1]));
- __m128i index = _mm_and_si128(_mm_cmplt_epi16(error1, error0), _mm_set1_epi16(1));
- __m128i minError = _mm_min_epi16(error0, error1);
- // Exploiting symmetry of the selector table and use the sign bit
- // This produces slightly different results, but is needed to produce same results as AVX2 implementation
- __m128i indexBit = _mm_andnot_si128(_mm_srli_epi16(pixel, 15), _mm_set1_epi8(-1));
- __m128i minIndex = _mm_or_si128(index, _mm_add_epi16(indexBit, indexBit));
- // Squaring the minimum error to produce correct values when adding
- __m128i squareErrorLo = _mm_mullo_epi16(minError, minError);
- __m128i squareErrorHi = _mm_mulhi_epi16(minError, minError);
- __m128i squareErrorLow = _mm_unpacklo_epi16(squareErrorLo, squareErrorHi);
- __m128i squareErrorHigh = _mm_unpackhi_epi16(squareErrorLo, squareErrorHi);
- squareErrorLow = _mm_add_epi32(squareErrorLow, _mm_loadu_si128(((__m128i*)ter) + 0));
- _mm_storeu_si128(((__m128i*)ter) + 0, squareErrorLow);
- squareErrorHigh = _mm_add_epi32(squareErrorHigh, _mm_loadu_si128(((__m128i*)ter) + 1));
- _mm_storeu_si128(((__m128i*)ter) + 1, squareErrorHigh);
- _mm_storeu_si128((__m128i*)sel, minIndex);
- }
- }
- #endif
- uint8_t convert6(float f)
- {
- int i = (std::min(std::max(static_cast<int>(f), 0), 1023) - 15) >> 1;
- return (i + 11 - ((i + 11) >> 7) - ((i + 4) >> 7)) >> 3;
- }
- uint8_t convert7(float f)
- {
- int i = (std::min(std::max(static_cast<int>(f), 0), 1023) - 15) >> 1;
- return (i + 9 - ((i + 9) >> 8) - ((i + 6) >> 8)) >> 2;
- }
- std::pair<uint64, uint64> Planar(const uint8* src)
- {
- int32 r = 0;
- int32 g = 0;
- int32 b = 0;
- for (int i = 0; i < 16; ++i)
- {
- b += src[i * 4 + 0];
- g += src[i * 4 + 1];
- r += src[i * 4 + 2];
- }
- int32 difRyz = 0;
- int32 difGyz = 0;
- int32 difByz = 0;
- int32 difRxz = 0;
- int32 difGxz = 0;
- int32 difBxz = 0;
- const int32 scaling[] = { -255, -85, 85, 255 };
- for (int i = 0; i < 16; ++i)
- {
- int32 difB = (static_cast<int>(src[i * 4 + 0]) << 4) - b;
- int32 difG = (static_cast<int>(src[i * 4 + 1]) << 4) - g;
- int32 difR = (static_cast<int>(src[i * 4 + 2]) << 4) - r;
- difRyz += difR * scaling[i % 4];
- difGyz += difG * scaling[i % 4];
- difByz += difB * scaling[i % 4];
- difRxz += difR * scaling[i / 4];
- difGxz += difG * scaling[i / 4];
- difBxz += difB * scaling[i / 4];
- }
- const float scale = -4.0f / ((255 * 255 * 8.0f + 85 * 85 * 8.0f) * 16.0f);
- float aR = difRxz * scale;
- float aG = difGxz * scale;
- float aB = difBxz * scale;
- float bR = difRyz * scale;
- float bG = difGyz * scale;
- float bB = difByz * scale;
- float dR = r * (4.0f / 16.0f);
- float dG = g * (4.0f / 16.0f);
- float dB = b * (4.0f / 16.0f);
- // calculating the three colors RGBO, RGBH, and RGBV. RGB = df - af * x - bf * y;
- float cofR = std::fma(aR, 255.0f, std::fma(bR, 255.0f, dR));
- float cofG = std::fma(aG, 255.0f, std::fma(bG, 255.0f, dG));
- float cofB = std::fma(aB, 255.0f, std::fma(bB, 255.0f, dB));
- float chfR = std::fma(aR, -425.0f, std::fma(bR, 255.0f, dR));
- float chfG = std::fma(aG, -425.0f, std::fma(bG, 255.0f, dG));
- float chfB = std::fma(aB, -425.0f, std::fma(bB, 255.0f, dB));
- float cvfR = std::fma(aR, 255.0f, std::fma(bR, -425.0f, dR));
- float cvfG = std::fma(aG, 255.0f, std::fma(bG, -425.0f, dG));
- float cvfB = std::fma(aB, 255.0f, std::fma(bB, -425.0f, dB));
- // convert to r6g7b6
- int32 coR = convert6(cofR);
- int32 coG = convert7(cofG);
- int32 coB = convert6(cofB);
- int32 chR = convert6(chfR);
- int32 chG = convert7(chfG);
- int32 chB = convert6(chfB);
- int32 cvR = convert6(cvfR);
- int32 cvG = convert7(cvfG);
- int32 cvB = convert6(cvfB);
- // Error calculation
- int32 ro0 = coR;
- int32 go0 = coG;
- int32 bo0 = coB;
- int32 ro1 = (ro0 >> 4) | (ro0 << 2);
- int32 go1 = (go0 >> 6) | (go0 << 1);
- int32 bo1 = (bo0 >> 4) | (bo0 << 2);
- int32 ro2 = (ro1 << 2) + 2;
- int32 go2 = (go1 << 2) + 2;
- int32 bo2 = (bo1 << 2) + 2;
- int32 rh0 = chR;
- int32 gh0 = chG;
- int32 bh0 = chB;
- int32 rh1 = (rh0 >> 4) | (rh0 << 2);
- int32 gh1 = (gh0 >> 6) | (gh0 << 1);
- int32 bh1 = (bh0 >> 4) | (bh0 << 2);
- int32 rh2 = rh1 - ro1;
- int32 gh2 = gh1 - go1;
- int32 bh2 = bh1 - bo1;
- int32 rv0 = cvR;
- int32 gv0 = cvG;
- int32 bv0 = cvB;
- int32 rv1 = (rv0 >> 4) | (rv0 << 2);
- int32 gv1 = (gv0 >> 6) | (gv0 << 1);
- int32 bv1 = (bv0 >> 4) | (bv0 << 2);
- int32 rv2 = rv1 - ro1;
- int32 gv2 = gv1 - go1;
- int32 bv2 = bv1 - bo1;
- uint64 error = 0;
- for (int i = 0; i < 16; ++i)
- {
- int32 cR = clampu8((rh2 * (i / 4) + rv2 * (i % 4) + ro2) >> 2);
- int32 cG = clampu8((gh2 * (i / 4) + gv2 * (i % 4) + go2) >> 2);
- int32 cB = clampu8((bh2 * (i / 4) + bv2 * (i % 4) + bo2) >> 2);
- int32 difB = static_cast<int>(src[i * 4 + 0]) - cB;
- int32 difG = static_cast<int>(src[i * 4 + 1]) - cG;
- int32 difR = static_cast<int>(src[i * 4 + 2]) - cR;
- int32 dif = difR * 38 + difG * 76 + difB * 14;
- error += dif * dif;
- }
- /**/
- uint32 rgbv = cvB | (cvG << 6) | (cvR << 13);
- uint32 rgbh = chB | (chG << 6) | (chR << 13);
- uint32 hi = rgbv | ((rgbh & 0x1FFF) << 19);
- uint32 lo = (chR & 0x1) | 0x2 | ((chR << 1) & 0x7C);
- lo |= ((coB & 0x07) << 7) | ((coB & 0x18) << 8) | ((coB & 0x20) << 11);
- lo |= ((coG & 0x3F) << 17) | ((coG & 0x40) << 18);
- lo |= coR << 25;
- const int32 idx = (coR & 0x20) | ((coG & 0x20) >> 1) | ((coB & 0x1E) >> 1);
- lo |= g_flags[idx];
- uint64 result = static_cast<uint32>(bx::endianSwap(lo));
- result |= static_cast<uint64>(static_cast<uint32>(bx::endianSwap(hi))) << 32;
- return std::make_pair(result, error);
- }
- template<class T, class S>
- uint64 EncodeSelectors( uint64 d, const T terr[2][8], const S tsel[16][8], const uint32* id, const uint64 value, const uint64 error)
- {
- size_t tidx[2];
- tidx[0] = GetLeastError( terr[0], 8 );
- tidx[1] = GetLeastError( terr[1], 8 );
- if ((terr[0][tidx[0]] + terr[1][tidx[1]]) >= error)
- {
- return value;
- }
- d |= tidx[0] << 26;
- d |= tidx[1] << 29;
- for( int i=0; i<16; i++ )
- {
- uint64 t = tsel[i][tidx[id[i]%2]];
- d |= ( t & 0x1 ) << ( i + 32 );
- d |= ( t & 0x2 ) << ( i + 47 );
- }
- return FixByteOrder(d);
- }
- }
- uint64 ProcessRGB( const uint8* src )
- {
- uint64 d = CheckSolid( src );
- if( d != 0 ) return d;
- v4i a[8];
- uint err[4] = {};
- PrepareAverages( a, src, err );
- size_t idx = GetLeastError( err, 4 );
- EncodeAverages( d, a, idx );
- #if defined __SSE4_1__ && !defined REFERENCE_IMPLEMENTATION
- uint32 terr[2][8] = {};
- #else
- uint64 terr[2][8] = {};
- #endif
- uint16 tsel[16][8];
- const uint32* id = g_id[idx];
- FindBestFit( terr, tsel, a, id, src );
- return FixByteOrder( EncodeSelectors( d, terr, tsel, id ) );
- }
- uint64 ProcessRGB_ETC2( const uint8* src )
- {
- std::pair<uint64, uint64> result = Planar( src );
- uint64 d = 0;
- v4i a[8];
- uint err[4] = {};
- PrepareAverages( a, src, err );
- size_t idx = GetLeastError( err, 4 );
- EncodeAverages( d, a, idx );
- uint64 terr[2][8] = {};
- uint16 tsel[16][8];
- const uint32* id = g_id[idx];
- FindBestFit( terr, tsel, a, id, src );
- return EncodeSelectors( d, terr, tsel, id, result.first, result.second );
- }
|