HomeSort by relevance Sort by last modified time
    Searched refs:vbr (Results 1 - 8 of 8) sorted by null

  /external/speex/libspeex/
vbr.c 2 File: vbr.c
4 VBR-related routines
39 #include "vbr.h"
76 void vbr_init(VBRState *vbr)
80 vbr->average_energy=0;
81 vbr->last_energy=1;
82 vbr->accum_sum=0;
83 vbr->energy_alpha=.1;
84 vbr->soft_pitch=0;
85 vbr->last_pitch_coef=0
    [all...]
vbr.h 3 @file vbr.h
4 @brief Variable Bit-Rate (VBR) related routines
48 /** VBR state. */
64 void vbr_init(VBRState *vbr);
66 float vbr_analysis(VBRState *vbr, spx_word16_t *sig, int len, int pitch, float pitch_coef);
68 void vbr_destroy(VBRState *vbr);
speex_callbacks.c 102 spx_int32_t vbr; local
103 vbr = speex_bits_unpack_unsigned(bits, 1);
104 speex_encoder_ctl(data, SPEEX_SET_VBR, &vbr);
speex_header.c 78 int vbr;
113 header->vbr = 0;
137 ENDIAN_SWITCH(le_header->vbr);
177 ENDIAN_SWITCH(le_header->vbr);
nb_celp.h 42 #include "vbr.h"
97 VBRState *vbr; /**< State of the VBR data */ member in struct:EncState
98 float vbr_quality; /**< Quality setting for VBR encoding */
99 float relative_quality; /**< Relative quality that will be needed by VBR */
100 spx_int32_t vbr_enabled; /**< 1 for enabling VBR, 0 otherwise */
101 spx_int32_t vbr_max; /**< Max bit-rate allowed in VBR mode */
nb_celp.c 47 #include "vbr.h"
189 st->vbr = (VBRState*)speex_alloc(sizeof(VBRState));
190 vbr_init(st->vbr);
237 vbr_destroy(st->vbr);
238 speex_free (st->vbr);
422 /*VBR stuff*/
424 if (st->vbr && (st->vbr_enabled||st->vad_enabled))
450 st->relative_quality = vbr_analysis(st->vbr, in, st->frameSize, ol_pitch, GAIN_SCALING_1*ol_pitch_coef);
    [all...]
  /external/speex/include/speex/
speex_header.h 70 spx_int32_t vbr; /**< 1 for a VBR encoding, 0 otherwise */ member in struct:SpeexHeader
  /external/qemu/
gdbstub.c 1103 case 19: GET_REGL(env->vbr);
1145 case 19: env->vbr = tmp;
    [all...]

Completed in 455 milliseconds