mirror of
https://github.com/google/liblc3.git
synced 2026-05-02 11:28:01 +00:00
feature: Add High-Resolution LC3 plus mode
Duplicate interfaces for HR mode spec: Remove intermediate quantized table fix: legacy lc3_frame_bytes() and lc3_resolve_bitrate() Cosmetic: rename fast_xxx math function to lc3_xxx
This commit is contained in:
@@ -662,12 +662,12 @@ def check():
|
||||
ok = True
|
||||
|
||||
for dt in range(T.NUM_DT):
|
||||
for sr in range(T.NUM_SRATE):
|
||||
for sr in range(T.SRATE_8K, T.SRATE_48K + 1):
|
||||
ok = ok and check_resampler(rng, dt, sr)
|
||||
ok = ok and check_analysis(rng, dt, sr)
|
||||
ok = ok and check_synthesis(rng, dt, sr)
|
||||
|
||||
for dt in range(T.DT_7M5, T.NUM_DT):
|
||||
for dt in ( T.DT_7M5, T.DT_10M ):
|
||||
ok = ok and check_resampler_appendix_c(dt)
|
||||
ok = ok and check_analysis_appendix_c(dt)
|
||||
ok = ok and check_synthesis_appendix_c(dt)
|
||||
|
||||
Reference in New Issue
Block a user