- Feb 27, 2024
-
-
Jean-Marc Valin authored
-fargan-synthesis not -fargan_synthesis
-
Jean-Marc Valin authored
Used to be disabled for LM==0 because of the unreliable energy in one-bin bands. Now we just used the max with the previous energy to stabilize things.
-
- Feb 25, 2024
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Feb 24, 2024
-
-
Jean-Marc Valin authored
-
- Feb 23, 2024
-
-
Jean-Marc Valin authored
-
Signed-off-by:
Jean-Marc Valin <jmvalin@jmvalin.ca>
-
The existing code in vec_avx.h produced warning: dereferencing type-punned pointer will break strict-aliasing rules with gcc 6.4.0. We already had a macro to work around this within the rules of the C standard, but trying to use that here does not get optimized into a single MOVD like we were hoping. Replacing it with memcpy() instead does get optimized correctly, but requires switching from a macro to an inline function in order to be able to declare a local variable and return a value. We already have such an inline function in NSQ_del_dec_avx2.c, so hoist that out and use it everywhere, and then convert vec_avx.h to use it also.
-
Jean-Marc Valin authored
Also, remove -march=native because of AVX512VNNI and valgrind
-
- Feb 22, 2024
-
-
Jean-Marc Valin authored
Fixes regression in 83368e6. vcgez_s16() is A64-only, but vcge_s16(..., vdup_n_s16(0)) works everywhere.
-
Jean-Marc Valin authored
broken in 9cf12e92
-
Jean-Marc Valin authored
-
Since any value of dQ > 0 will cause the initial quantizer to degrade to the format-implied maximum (15) with a sufficient number of DRED frames, allow signaling a maximum smaller than 15. This allows encoders to improve the minimum quality of long DRED sequences (at the expense of bitrate) without requiring a constant quantizer for all frames (dQ == 0).
-
-
Timothy B. Terriberry authored
-
Timothy B. Terriberry authored
Commit 735c4070 added uses of intrinsics that require at least gcc 9.0 (cf. <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78782>), even though AVX2 support may appear to be available in earlier gcc versions. We were not testing for this. Update the compiler test in configure.ac to use these intrinsics explicitly, so it will error out and disable AVX2 if they are not available.
-
- Feb 21, 2024
-
-
Jan Buethe authored
-
Jean-Marc Valin authored
Also, fix documentation about return value of zero.
-
- Feb 20, 2024
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
Trying to add padding in-place breaks when we have extensions, which causes a memcpy() with overlapping data. Just doing a copy instead.
-
Jean-Marc Valin authored
Silences NONTHREADSAFE_PSEUDOSTACK warnings
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
warning: expression does not compute the number of elements in this array Seems like gcc thinks we're trying to get the number of elements in our array or something like that. It then suggests adding parentheses to silence the warning.
-
- Feb 18, 2024
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Feb 17, 2024
-
-
Jean-Marc Valin authored
Also skip the first loss values being generated since they're biased towards "not lost" due to the initialization.
-
- Feb 16, 2024
-
-
They timeout on GitHub actions because those runners are slower.
-
Signed-off-by:
Jean-Marc Valin <jmvalin@jmvalin.ca>
-
Signed-off-by:
Jean-Marc Valin <jmvalin@jmvalin.ca>
-
Signed-off-by:
Jean-Marc Valin <jmvalin@jmvalin.ca>
-
Jan Buethe authored
-
Jean-Marc Valin authored
We don't need redundancy for the first active frame since we already have the main Opus payload.
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
Allows us to exclude the most recent silence from DRED
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Feb 15, 2024
-
-
Jean-Marc Valin authored
Use the neon version of silk_noise_shape_quantizer_short_prediction()
-
Jan Buethe authored
-