Home
last modified time | relevance | path

Searched refs:in (Results 1 – 12 of 12) sorted by relevance

/liblc3-latest/include/
Dlc3_cpp.h203 int DecodeImpl(const uint8_t *in, int block_size, PcmFormat fmt, T *pcm) { in DecodeImpl() argument
209 const uint8_t *in_ptr = in; in DecodeImpl()
268 int Decode(const uint8_t *in, int block_size, int16_t *pcm) { in Decode() argument
269 return DecodeImpl(in, block_size, PcmFormat::kS16, pcm); in Decode()
272 int Decode(const uint8_t *in, int block_size, int32_t *pcm) { in Decode() argument
273 return DecodeImpl(in, block_size, PcmFormat::kS24In3Le, pcm); in Decode()
276 int Decode(const uint8_t *in, int block_size, float *pcm) { in Decode() argument
277 return DecodeImpl(in, block_size, PcmFormat::kF32, pcm); in Decode()
280 int Decode(const uint8_t *in, int block_size, PcmFormat fmt, void *pcm) { in Decode() argument
286 return DecodeImpl(in, block_size, fmt, in Decode()
[all …]
Dlc3.h415 lc3_decoder_t decoder, const void *in, int nbytes,
/liblc3-latest/
DREADME.md34 Compiled library `liblc3.so` will be found in `bin` directory.
53 prevent link with `pthread` and `rt` libraries, that is included in the
62 Compiled library will be found in `bin` directory.
101 $ elc3 <in.wav> -b <bitrate> | dlc3 > <out.wav>
109 $ elc3 <in.wav> -b <bitrate> | dlc3 | aplay -D pipewire
114 A python implementation of the encoder is provided in `test` diretory.
116 intermediate values given in Appendix C of the LC3 specification.
133 Roundtrip fuzz testing harness is available in `fuzz` directory.
142 $ make fuzz -j # Run encoder and decoder fuzzers in parallel
154 subjectively evaluated in a blind listening test.
[all …]
DLICENSE36 "Work" shall mean the work of authorship, whether in Source or
38 copyright notice that is included in or attached to the work
39 (an example is provided in the Appendix below).
41 "Derivative Works" shall mean any work, whether in Source or Object
52 submitted to Licensor for inclusion in the Work by the copyright owner
61 designated in writing by the copyright owner as "Not a Contribution."
72 Work and such Derivative Works in Source or Object form.
77 (except as stated in this section) patent license to make, have made,
84 cross-claim or counterclaim in a lawsuit) alleging that the Work
91 Work or Derivative Works thereof in any medium, with or without
[all …]
Dmeson_options.txt4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
Dmeson.build4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/liblc3-latest/python/
DLICENSE36 "Work" shall mean the work of authorship, whether in Source or
38 copyright notice that is included in or attached to the work
39 (an example is provided in the Appendix below).
41 "Derivative Works" shall mean any work, whether in Source or Object
52 submitted to Licensor for inclusion in the Work by the copyright owner
61 designated in writing by the copyright owner as "Not a Contribution."
72 Work and such Derivative Works in Source or Object form.
77 (except as stated in this section) patent license to make, have made,
84 cross-claim or counterclaim in a lawsuit) alleging that the Work
91 Work or Derivative Works thereof in any medium, with or without
[all …]
/liblc3-latest/tools/
Dmeson.build4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
Ddlc3.c195 uint8_t in[2 * LC3_HR_MAX_FRAME_BYTES]; in main() local
224 int block_bytes = lc3bin_read_data(fp_in, nchannels, in); in main()
240 const uint8_t *in_ptr = in; in main()
/liblc3-latest/src/
Dmeson.build4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
Dlc3.c247 int32_t in = ((uint32_t)pcm[0] << 8) | in load_s24_3le() local
251 xt[i] = in >> 16; in load_s24_3le()
252 xs[i] = lc3_ldexpf(in, -16); in load_s24_3le()
735 const void *in, int nbytes, enum lc3_pcm_format fmt, void *pcm, int stride) in lc3_decode() argument
749 if (in && (nbytes < LC3_MIN_FRAME_BYTES || in lc3_decode()
757 int ret = !in || (decode(decoder, in, nbytes, &side) < 0); in lc3_decode()
/liblc3-latest/test/
Dlc3_py.c109 char *in = in_obj == Py_None ? NULL : PyBytes_AsString(in_obj); in decode_py() local
120 lc3_decode(decoder, in, nbytes, LC3_PCM_FORMAT_S16, pcm, 1); in decode_py()