Lines Matching refs:encoder

31 …e](#oh_audioencoder_createbymime) (const char \*mime) | Creates an audio encoder instance based on…
32 …oder_createbyname) (const char \*name) | Creates an audio encoder instance based on an encoder nam…
33 …VCodec \*codec) | Clears the internal resources of an audio encoder and destroys the encoder insta…
34 …ynchronous callback so that your application can respond to events generated by an audio encoder.|
35 …figure) (OH_AVCodec \*codec, OH_AVFormat \*format) | Configures an audio encoder. Typically, you n…
36 …oh_audioencoder_prepare) (OH_AVCodec \*codec) | Prepares internal resources for an audio encoder.|
37 …er_Start](#oh_audioencoder_start) (OH_AVCodec \*codec) | Starts an audio encoder after it is prepa…
38 …ode) [OH_AudioEncoder_Stop](#oh_audioencoder_stop) (OH_AVCodec \*codec) | Stops an audio encoder.|
39 …H_AVCodec \*codec) | Clears the input and output data in the internal buffer of an audio encoder.|
40 …) [OH_AudioEncoder_Reset](#oh_audioencoder_reset) (OH_AVCodec \*codec) | Resets an audio encoder.|
41 …AVCodec \*codec) | Obtains the description information about the output data of an audio encoder.|
42 …meter) (OH_AVCodec \*codec, OH_AVFormat \*format) | Sets dynamic parameters for an audio encoder.|
43 …__a_v_codec_buffer_attr.md) attr) | Pushes the input buffer filled with data to an audio encoder.|
44 …reeoutputdata) (OH_AVCodec \*codec, uint32_t index) | Frees an output buffer of an audio encoder.|
45 …bool \*isValid) | Checks whether an audio encoder instance is valid. This function is used to chec…
59 Configures an audio encoder. Typically, you need to configure the description information about the…
89 Creates an audio encoder instance based on a MIME type. This function is recommended in most cases.
118 Creates an audio encoder instance based on an encoder name. To use this function, you must know the…
132 | name | Pointer to an audio encoder name.|
147 Clears the internal resources of an audio encoder and destroys the encoder instance.
176 Clears the input and output data in the internal buffer of an audio encoder.
207 Frees an output buffer of an audio encoder.
237 Obtains the description information about the output data of an audio encoder. The caller must manu…
266 Checks whether an audio encoder instance is valid. This function is used to check the encoder valid…
281 | isValid | Pointer of the Boolean type. The value **true** means that the encoder instance is vali…
296 Prepares internal resources for an audio encoder. This function must be called after **Configure**.
325 Pushes the input buffer filled with data to an audio encoder.
327 …orts the available input buffer and the index. After being pushed to the encoder, a buffer is not …
360 Resets an audio encoder. To continue encoding, you must call **Configure** to configure the encoder
389 …ack so that your application can respond to events generated by an audio encoder. This function mu…
420 Sets dynamic parameters for an audio encoder.
422 This function can be called only after the encoder is started. Incorrect parameter settings may cau…
452 Starts an audio encoder after it is prepared successfully. After being started, the encoder starts …
481 Stops an audio encoder. After the encoder is stopped, you can call **Start** to start it again.