HomeSort by relevance Sort by last modified time
    Searched refs:complexity (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/speex/libspeex/
cb_search.h 63 int complexity,
89 int complexity,
ltp.h 75 int complexity,
118 int complexity,
sb_celp.h 92 int complexity; member in struct:SBEncState
nb_celp.h 111 int complexity; /**< Complexity setting (0-10 from least complex to most complex) */ member in struct:EncState
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
opus_speed_test.cc 85 #define ADD_TEST(complexity) \
86 TEST_P(OpusSpeedTest, OpusSetComplexityTest##complexity) { \
89 /* Set complexity. */ \
90 printf("Setting complexity to %d ...\n", complexity); \
91 EXPECT_EQ(0, WebRtcOpus_SetComplexity(opus_encoder_, complexity)); \
  /external/chromium_org/third_party/opus/src/silk/
check_control_input.c 100 if( encControl->complexity < 0 || encControl->complexity > 10 ) {
control.h 74 /* I: Complexity mode; 0 is lowest, 10 is highest complexity */
75 opus_int complexity; member in struct:__anon18585
  /external/libopus/silk/
check_control_input.c 100 if( encControl->complexity < 0 || encControl->complexity > 10 ) {
control.h 74 /* I: Complexity mode; 0 is lowest, 10 is highest complexity */
75 opus_int complexity; member in struct:__anon28343
  /external/chromium_org/third_party/opus/src/silk/float/
pitch_analysis_core_FLP.c 51 opus_int complexity, /* I Complexity setting */
61 opus_int complexity /* I Complexity setting */
77 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
114 /* Check for valid complexity setting */
115 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
116 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
217 length_d_srch = 4 + 2 * complexity;
    [all...]
SigProc_FLP.h 96 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
  /external/libopus/silk/float/
pitch_analysis_core_FLP.c 51 opus_int complexity, /* I Complexity setting */
61 opus_int complexity /* I Complexity setting */
77 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
114 /* Check for valid complexity setting */
115 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
116 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
217 length_d_srch = 4 + 2 * complexity;
    [all...]
SigProc_FLP.h 96 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
complexityMeasures.m 35 % Compute each function's mean complexity
38 % Compute each function's maximum complexity in encoding
46 % Compute maximum complexity for a single frame (enc/dec separately and together)
  /external/chromium_org/third_party/opus/src/silk/fixed/
pitch_analysis_core_FIX.c 65 opus_int complexity, /* I Complexity setting */
75 opus_int complexity /* I Complexity setting */
91 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
124 /* Check for valid complexity setting */
125 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
126 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
245 length_d_srch = silk_ADD_LSHIFT32( 4, complexity, 1 )
    [all...]
  /external/libopus/silk/fixed/
pitch_analysis_core_FIX.c 65 opus_int complexity, /* I Complexity setting */
75 opus_int complexity /* I Complexity setting */
91 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
124 /* Check for valid complexity setting */
125 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
126 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
245 length_d_srch = silk_ADD_LSHIFT32( 4, complexity, 1 )
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 54 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));
  /external/libopus/celt/
opus_custom_demo.c 54 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));
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vop.cpp 548 mp4dec_log("DecodeVOLHeader(): Shape Complexity estimation is not supported.\n");
555 currVol->complexity.text_1 = BitstreamReadBits16(stream, 4);
563 currVol->complexity.text_2 = BitstreamReadBits16(stream, 4);
569 currVol->complexity.mc = BitstreamReadBits16(stream, 6);
908 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */
910 if (currVol->complexity.text_1 & 0x1) /* not_coded */
912 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */
914 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */
916 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */
918 if (currVol->complexity.text_2 & 0x1) /* vlc_bits *
    [all...]
mp4lib_int.h 27 #define FAST_IDCT /* , for fast Variable complexity IDCT */
47 /* complexity estimation parameters */
92 int complexity_estDisable; /* VOL disable complexity estimation */
93 int complexity_estMethod; /* VOL complexity estimation method */
94 Complexity_Est complexity; /* complexity estimation flags */ member in struct:tagVol
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/interface/
opus_interface.h 108 * This function adjusts the computational complexity. The effect is the same as
109 * calling the complexity setting of Opus as an Opus encoder related CTL.
113 * - complexity : New target complexity (0-10, inclusive)
118 int16_t WebRtcOpus_SetComplexity(OpusEncInst* inst, int32_t complexity);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_codec_unittest.cc 36 video_codec->codecSpecific.VP8.complexity = kComplexityNormal;
139 // complexity
141 codec2.codecSpecific.VP8.complexity = kComplexityHigh;
  /external/webrtc/src/
common_types.h 491 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecH264
507 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecVP8
  /external/chromium_org/third_party/webrtc/
common_types.h 563 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecVP8
575 complexity == other.complexity &&
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 517 int complexity = aLen <= 8 ? 1 : 2; local
519 int width = 1 << complexity;
520 int shifts = (32 >>> complexity);
532 interleave(A.m_ints, 0, c, bExt, aLen, complexity);

Completed in 607 milliseconds

1 2 3