Searched defs:complexity (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/opus/src/celt/
H A Dopus_custom_demo.c54 int complexity; local
65 " <bytes per packet> [<complexity> [packet loss rate]] "
124 complexity=atoi(argv[5]);
125 opus_custom_encoder_ctl(enc,OPUS_SET_COMPLEXITY(complexity));
H A Dcelt.c150 int complexity; member in struct:OpusCustomEncoder
278 st->complexity = 5;
1126 if (nbAvailableBytes>12*C && st->start==0 && !silence && !st->disable_pf && st->complexity >= 5)
1236 if (st->complexity > 1)
1286 &st->delayedIntra, st->complexity >= 4, st->loss_rate);
1292 if (shortBlocks || st->complexity < 3
1295 if (st->complexity == 0)
1774 st->complexity = value;
/external/chromium_org/third_party/opus/src/silk/
H A Dcontrol.h74 /* I: Complexity mode; 0 is lowest, 10 is highest complexity */
75 opus_int complexity; member in struct:__anon13282
/external/speex/libspeex/
H A Dcb_search.c254 int complexity,
288 N=complexity;
584 int complexity,
242 split_cb_search_shape_sign( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
572 noise_codebook_quant( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
H A Dsb_celp.h92 int complexity; member in struct:SBEncState
H A Dnb_celp.h111 int complexity; /**< Complexity setting (0-10 from least complex to most complex) */ member in struct:EncState
H A Dltp.c545 int complexity,
570 N=complexity;
772 int complexity,
528 pitch_search_3tap( spx_word16_t target[], spx_word16_t *sw, spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], spx_sig_t exc[], const void *par, int start, int end, spx_word16_t pitch_coef, int p, int nsf, SpeexBits *bits, char *stack, spx_word16_t *exc2, spx_word16_t *r, int complexity, int cdbk_offset, int plc_tuning, spx_word32_t *cumul_gain ) argument
755 forced_pitch_quant( spx_word16_t target[], spx_word16_t *sw, spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], spx_sig_t exc[], const void *par, int start, int end, spx_word16_t pitch_coef, int p, int nsf, SpeexBits *bits, char *stack, spx_word16_t *exc2, spx_word16_t *r, int complexity, int cdbk_offset, int plc_tuning, spx_word32_t *cumul_gain ) argument
/external/chromium_org/third_party/opus/src/silk/float/
H A Dpitch_analysis_core_FLP.c51 opus_int complexity /* I Complexity setting */
60 opus_int complexity /* I Complexity setting */
76 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
111 /* Check for valid complexity setting */
112 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
113 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
211 length_d_srch = 4 + 2 * complexity;
329 if( Fs_kHz == 8 && complexity > SILK_PE_MIN_COMPLEX ) {
415 silk_P_Ana_calc_corr_st3( cross_corr_st3, frame, start_lag, sf_length, nb_subfr, complexity );
416 silk_P_Ana_calc_energy_st3( energies_st3, frame, start_lag, sf_length, nb_subfr, complexity );
66 silk_pitch_analysis_core_FLP( const silk_float *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, silk_float *LTPCorr, opus_int prevLag, const silk_float search_thres1, const silk_float search_thres2, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr ) argument
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Dopus_demo.c59 fprintf(stderr, "-complexity <comp> : complexity, 0 (lowest) ... 10 (highest); default: 10\n" );
211 int complexity; local
304 complexity = 10;
362 } else if( strcmp( argv[ args ], "-complexity" ) == 0 ) {
363 check_encoder_option(decode_only, "-complexity");
364 complexity = atoi( argv[ args + 1 ] );
494 opus_encoder_ctl(enc, OPUS_SET_COMPLEXITY(complexity));
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dpitch_analysis_core_FIX.c50 opus_int complexity /* I Complexity setting */
59 opus_int complexity /* I Complexity setting */
81 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
112 /* Check for valid complexity setting */
113 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
114 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
236 length_d_srch = silk_ADD_LSHIFT32( 4, complexity, 1 );
382 if( Fs_kHz == 8 && complexity > SILK_PE_MIN_COMPLEX ) {
496 silk_P_Ana_calc_corr_st3( crosscorr_st3, input_frame_ptr, start_lag, sf_length, nb_subfr, complexity );
497 silk_P_Ana_calc_energy_st3( energies_st3, input_frame_ptr, start_lag, sf_length, nb_subfr, complexity );
71 silk_pitch_analysis_core( const opus_int16 *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, opus_int *LTPCorr_Q15, opus_int prevLag, const opus_int32 search_thres1_Q16, const opus_int search_thres2_Q15, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr ) argument
[all...]
/external/skia/bench/
H A DPathBench.cpp43 virtual int complexity() { return 0; } function in class:PathBench
70 count >>= (3 * complexity());
171 virtual int complexity() SK_OVERRIDE { return 1; }
196 virtual int complexity() SK_OVERRIDE { return 2; }
217 virtual int complexity() SK_OVERRIDE { return 2; }
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp712 UInt64 complexity = 0; local
761 complexity += db->GetFolderFullPackSize(i);
764 complexity += repackSize;
781 complexity += ui.Size;
796 RINOK(updateCallback->SetTotal(complexity));
/external/opencv/ml/include/
H A Dml.h691 int complexity; member in struct:CvDTreeNode
/external/webrtc/src/
H A Dcommon_types.h491 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecH264
507 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecVP8
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine.cc3153 static std::string ToString(webrtc::VideoCodecComplexity complexity) { argument
3154 switch (complexity) {
3205 << ", complexity = "
3206 << ToString(vie_codec.codecSpecific.VP8.complexity)
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 554 milliseconds