diff options
Diffstat (limited to 'src/dsp/inverse_transform.cc')
-rw-r--r-- | src/dsp/inverse_transform.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dsp/inverse_transform.cc b/src/dsp/inverse_transform.cc index a03fad2..ed984d8 100644 --- a/src/dsp/inverse_transform.cc +++ b/src/dsp/inverse_transform.cc @@ -1184,9 +1184,10 @@ void TransformLoop_C(TransformType tx_type, TransformSize tx_size, Residual tx_buffer[64]; for (int j = 0; j < tx_width; ++j) { const int flipped_j = flip_columns ? tx_width - j - 1 : j; - for (int i = 0; i < tx_height; ++i) { + int i = 0; + do { tx_buffer[i] = residual[i][flipped_j]; - } + } while (++i != tx_height); if (adjusted_tx_height == 1) { dconly_transform1d(tx_buffer, column_clamp_range, false, 0, false); } else { @@ -1211,6 +1212,7 @@ void TransformLoop_C(TransformType tx_type, TransformSize tx_size, //------------------------------------------------------------------------------ +#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS template <int bitdepth, typename Residual, typename Pixel> void InitAll(Dsp* const dsp) { // Maximum transform size for Dct is 64. @@ -1325,6 +1327,7 @@ void InitAll(Dsp* const dsp) { Wht4DcOnly_C<bitdepth, Residual>, Wht4_C<Residual>, /*is_row=*/false>; } +#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS void Init8bpp() { Dsp* const dsp = dsp_internal::GetWritableDspTable(8); |