Home
last modified time | relevance | path

Searched refs:max_lpc_order (Results 1 – 3 of 3) sorted by relevance

/external/flac/test/
Dtest_streams.sh129 max_lpc_order=32
131 max_lpc_order=16
138 test_file test01 1 16 "-0 -l $max_lpc_order --lax -m -e -p"
139 test_file test02 2 16 "-0 -l $max_lpc_order --lax -m -e -p"
140 test_file test03 1 16 "-0 -l $max_lpc_order --lax -m -e -p"
141 test_file test04 2 16 "-0 -l $max_lpc_order --lax -m -e -p"
146 test_file fsd$bps-$b 1 $bps "-0 -l $max_lpc_order --lax -m -e -p"
152 test_file wbps16-$b 1 16 "-0 -l $max_lpc_order --lax -m -e -p"
158 test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order --lax -m -e --sample-rate=48000"
161 test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order --lax -m -e --sample-rate=96000"
[all …]
/external/flac/src/libFLAC/
Dstream_encoder.c105 uint32_t max_lpc_order; member
662 if(encoder->protected_->max_lpc_order == 0) in init_stream_internal_()
671 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER) in init_stream_internal_()
674 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order) in init_stream_internal_()
731 encoder->protected_->max_lpc_order > FLAC__SUBSET_MAX_LPC_ORDER_48000HZ in init_stream_internal_()
892 if(encoder->protected_->max_lpc_order < 4) in init_stream_internal_()
894 else if(encoder->protected_->max_lpc_order < 8) in init_stream_internal_()
896 else if(encoder->protected_->max_lpc_order < 12) in init_stream_internal_()
898 else if(encoder->protected_->max_lpc_order < 16) in init_stream_internal_()
905 if(encoder->protected_->max_lpc_order < 4) in init_stream_internal_()
[all …]
/external/flac/src/libFLAC/include/protected/
Dstream_encoder.h101 uint32_t max_lpc_order; member