Searched defs:OpusEncoder (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/opus/src/include/
H A Dopus.h85 * OpusEncoder *enc;
99 * OpusEncoder *enc;
164 typedef struct OpusEncoder OpusEncoder; typedef in typeref:struct:OpusEncoder
166 /** Gets the size of an <code>OpusEncoder</code> structure.
208 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder *opus_encoder_create(
220 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
229 OpusEncoder *st,
236 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
264 OpusEncoder *s
[all...]
/external/libopus/include/
H A Dopus.h85 * OpusEncoder *enc;
99 * OpusEncoder *enc;
164 typedef struct OpusEncoder OpusEncoder; typedef in typeref:struct:OpusEncoder
166 /** Gets the size of an <code>OpusEncoder</code> structure.
208 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder *opus_encoder_create(
220 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
229 OpusEncoder *st,
236 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
264 OpusEncoder *s
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Dopus_encoder.c61 struct OpusEncoder { struct
159 return align(sizeof(OpusEncoder))+silkEncSizeBytes+celtEncSizeBytes;
162 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application)
180 st->silk_enc_offset = align(sizeof(OpusEncoder));
476 OpusEncoder *opus_encoder_create(opus_int32 Fs, int channels, int application, int *error)
479 OpusEncoder *st;
488 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels));
506 static opus_int32 user_bitrate_to_bitrate(OpusEncoder *st, int frame_size, int max_data_bytes)
925 opus_int32 opus_encode_native(OpusEncoder *st, const opus_val16 *pcm, int frame_size,
1937 opus_int32 opus_encode_float(OpusEncoder *s
[all...]
/external/libopus/src/
H A Dopus_encoder.c61 struct OpusEncoder { struct
159 return align(sizeof(OpusEncoder))+silkEncSizeBytes+celtEncSizeBytes;
162 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application)
180 st->silk_enc_offset = align(sizeof(OpusEncoder));
476 OpusEncoder *opus_encoder_create(opus_int32 Fs, int channels, int application, int *error)
479 OpusEncoder *st;
488 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels));
506 static opus_int32 user_bitrate_to_bitrate(OpusEncoder *st, int frame_size, int max_data_bytes)
925 opus_int32 opus_encode_native(OpusEncoder *st, const opus_val16 *pcm, int frame_size,
1937 opus_int32 opus_encode_float(OpusEncoder *s
[all...]

Completed in 5332 milliseconds