Lines Matching refs:encoding

5 … microphone to record audio data or import edited PCM data. After audio encoding, you can output s…
7 …details about the supported encoding capabilities, see [AVCodec Supported Formats](avcodec-support…
25 … snippet below to complete the entire audio encoding process, including creating an encoder, setti…
29 The figure below shows the call relationship of audio encoding.
35 ![Call relationship of audio encoding](figures/audio-codec.png)
72 // Specify whether encoding is used. The value true means encoding.
103 …putBuffer**, a callback used to report output data generated, which means that encoding is complete
159 For FLAC encoding, the compliance level and sampling precision are also mandatory.
161 The sample below lists the value range of each audio encoding type.
170 …The code snippet below shows the API call process, where AAC encoding at the bit rate of 32000 bit…
203 The following shows the API call process in the case of FLAC encoding.
215 … Configure the audio bit depth. Only SAMPLE_S16LE and SAMPLE_S32LE are available for FLAC encoding.
257 // Start encoding.
266 …For AAC encoding, set **SAMPLES_PER_FRAME** to the number of PCM samples every 20 ms, that is, sam…
268 For FLAC encoding, set **SAMPLES_PER_FRAME** based on the table below.
284 …S_PER_FRAME** in AAC encoding be the number of PCM samples every 20 ms, that is, sampling rate x 0…
289 // Number of audio channels. For AMR encoding, only mono audio input is supported.
305 // Send the data to the input queue for encoding. The index is the subscript of the queue.
345 After **OH_AudioCodec_Flush()** is called, the current encoding queue is cleared.
347 To continue encoding, you must call **OH_AudioCodec_Start()** again.
360 // Start encoding again.
369 …** is called, the encoder returns to the initialized state. To continue encoding, you must call **…