/external/libvpx/libvpx/vp9/common/ |
vp9_default_coef_probs.h | 15 { /* Coeff Band 0 */ 19 }, { /* Coeff Band 1 */ 26 }, { /* Coeff Band 2 */ 33 }, { /* Coeff Band 3 */ 40 }, { /* Coeff Band 4 */ 47 }, { /* Coeff Band 5 */ 56 { /* Coeff Band 0 */ 60 }, { /* Coeff Band 1 */ 67 }, { /* Coeff Band 2 */ 74 }, { /* Coeff Band 3 * [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioEqualizer.cpp | 105 void AudioEqualizer::setGain(int band, int32_t millibel) { 106 ALOGV("AudioEqualizer::setGain(band=%d, millibel=%d)", band, millibel); 107 assert(band >= 0 && band < mNumPeaking + 2); 108 if (band == 0) { 110 } else if (band == mNumPeaking + 1) { 113 mpPeakingFilters[band - 1].setGain(millibel); 118 void AudioEqualizer::setFrequency(int band, uint32_t millihertz) { 119 ALOGV("AudioEqualizer::setFrequency(band=%d, millihertz=%d)", band 264 int band = mNumPeaking; local [all...] |
AudioEqualizer.h | 30 // shelf, where each band has frequency and gain controls, and the peaking 34 // Configuration of a single band. 49 // corresponding band. 107 // band The band to set the gain for. 109 void setGain(int band, int32_t millibel); 111 // Gets gain of a certain band. This is always the last value set (or 113 // band The band to get the gain for. 115 int32_t getGain(int band) const [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
WifiAssociationTestRunner.java | 33 * The instrument will set frequency band if it is necessary 38 * -e security-type [OPEN|WEP64|WEP128|WPA_TKIP|WPA2_AES] -e frequency-band [2.4|5.0|auto] 61 String mFrequencyBand = arguments.getString("frequency-band"); 67 private void setFrequencyBand(String band) { 69 if (band.equals("2.4")) { 70 Log.v(TAG, "set frequency band to 2.4"); 72 } else if (band.equals("5.0")) { 73 Log.v(TAG, "set frequency band to 5.0"); 75 } else if (band.equals("auto")) { 76 Log.v(TAG, "set frequency band to auto") [all...] |
/frameworks/wilhelm/src/itf/ |
IEqualizer.c | 145 static SLresult IEqualizer_SetBandLevel(SLEqualizerItf self, SLuint16 band, SLmillibel level) 151 (band >= thiz->mNumBands)) { 156 thiz->mLevels[band] = level; 164 android_eq_setParam(thiz->mEqEffect, EQ_PARAM_BAND_LEVEL, band, &level); 175 static SLresult IEqualizer_GetBandLevel(SLEqualizerItf self, SLuint16 band, SLmillibel *pLevel) 184 if (band >= thiz->mNumBands) { 190 level = thiz->mLevels[band]; 197 android_eq_getParam(thiz->mEqEffect, EQ_PARAM_BAND_LEVEL, band, &level); 210 static SLresult IEqualizer_GetCenterFreq(SLEqualizerItf self, SLuint16 band, SLmilliHertz *pCenter) 218 if (band >= thiz->mNumBands) 302 const struct EqualizerBand *band; local 321 uint16_t band = 0; local 388 SLuint16 band; local [all...] |
/external/libvpx/libvpx/vp8/common/ |
default_coef_probs.h | 21 { /* Coeff Band ( 0 )*/ 26 { /* Coeff Band ( 1 )*/ 31 { /* Coeff Band ( 2 )*/ 36 { /* Coeff Band ( 3 )*/ 41 { /* Coeff Band ( 4 )*/ 46 { /* Coeff Band ( 5 )*/ 51 { /* Coeff Band ( 6 )*/ 56 { /* Coeff Band ( 7 )*/ 63 { /* Coeff Band ( 0 )*/ 68 { /* Coeff Band ( 1 )* [all...] |
context.c | 24 // Coeff Band ( 0 ) 30 // Coeff Band ( 1 ) 36 // Coeff Band ( 2 ) 42 // Coeff Band ( 3 ) 48 // Coeff Band ( 4 ) 54 // Coeff Band ( 5 ) 60 // Coeff Band ( 6 ) 66 // Coeff Band ( 7 ) 75 // Coeff Band ( 0 ) 81 // Coeff Band ( 1 [all...] |
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/ |
InBandBytestreamRequest.java | 23 * InBandBytestreamRequest class handles incoming In-Band Bytestream requests.
33 * In-Band Bytestream manager containing the XMPP connection and helper
45 * Returns the sender of the In-Band Bytestream open request.
47 * @return the sender of the In-Band Bytestream open request
54 * Returns the session ID of the In-Band Bytestream open request.
56 * @return the session ID of the In-Band Bytestream open request
63 * Accepts the In-Band Bytestream open request and returns the session to
72 // create In-Band Bytestream session and store it
85 * Rejects the In-Band Bytestream request by sending a reject error to the
|
InBandBytestreamListener.java | 20 * InBandBytestreamListener are informed if a remote user wants to initiate an In-Band Bytestream.
21 * Implement this interface to handle incoming In-Band Bytestream requests.
39 * This listener is notified if an In-Band Bytestream request from another user has been
42 * @param request the incoming In-Band Bytestream request
|
DataListener.java | 24 * DataListener handles all In-Band Bytestream IQ stanzas containing a data
27 * If a data packet is received it looks if a stored In-Band Bytestream session
31 * Data packets belonging to a running In-Band Bytestream session are processed
42 /* packet filter for all In-Band Bytestream data packets */
49 * @param manager the In-Band Bytestream manager
65 * Returns the packet filter for In-Band Bytestream data packets.
67 * @return the packet filter for In-Band Bytestream data packets
|
CloseListener.java | 26 * CloseListener handles all In-Band Bytestream close requests.
28 * If a close request is received it looks if a stored In-Band Bytestream
39 /* packet filter for all In-Band Bytestream close requests */
46 * @param manager the In-Band Bytestream manager
67 * Returns the packet filter for In-Band Bytestream close requests.
69 * @return the packet filter for In-Band Bytestream close requests
|
InBandBytestreamManager.java | 37 * The InBandBytestreamManager class handles establishing In-Band Bytestreams as specified in the <a
40 * The In-Band Bytestreams (IBB) enables two entities to establish a virtual bytestream over which
44 * There are two ways to send data over an In-Band Bytestream. It could either use IQ stanzas to
51 * To establish an In-Band Bytestream invoke the {@link #establishSession(String)} method. This will
52 * negotiate an in-band bytestream with the given target JID and return a session.
54 * If a session ID for the In-Band Bytestream was already negotiated (e.g. while negotiating a file
57 * To handle incoming In-Band Bytestream requests add an {@link InBandBytestreamListener} to the
59 * In-Band Bytestreams from a specific user add the listener by invoking
61 * respond to all In-Band Bytestream requests invoke
65 * In-Band bytestream requests sent in the context of <a [all...] |
/external/aac/libAACdec/src/ |
stereo.cpp | 113 int group,band; local 129 for (band=0; band<scaleFactorBandsTransmitted; band++) 131 pJointStereoData->MsUsed[band] |= (FDKreadBits(bs,1) << group); 138 for (band=0; band<scaleFactorBandsTransmitted; band++) 140 pJointStereoData->MsUsed[band] = 255 ; /* set all flags to 1 */ 168 int band; local 246 int band; local [all...] |
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/ |
Close.java | 20 * Represents a request to close an In-Band Bytestream.
26 /* unique session ID identifying this In-Band Bytestream */
30 * Creates a new In-Band Bytestream close request packet.
32 * @param sessionID unique session ID identifying this In-Band Bytestream
43 * Returns the unique session ID identifying this In-Band Bytestream.
45 * @return the unique session ID identifying this In-Band Bytestream
|
Open.java | 21 * Represents a request to open an In-Band Bytestream.
27 /* unique session ID identifying this In-Band Bytestream */
37 * Creates a new In-Band Bytestream open request packet.
39 * The data sent over this In-Band Bytestream will be fragmented in blocks
45 * @param sessionID unique session ID identifying this In-Band Bytestream
64 * Creates a new In-Band Bytestream open request packet.
66 * The data sent over this In-Band Bytestream will be fragmented in blocks
72 * @param sessionID unique session ID identifying this In-Band Bytestream
80 * Returns the unique session ID identifying this In-Band Bytestream.
82 * @return the unique session ID identifying this In-Band Bytestream [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
defaultcoefcounts.h | 22 /* Coeff Band ( 0 ) */ 28 /* Coeff Band ( 1 ) */ 34 /* Coeff Band ( 2 ) */ 40 /* Coeff Band ( 3 ) */ 46 /* Coeff Band ( 4 ) */ 52 /* Coeff Band ( 5 ) */ 58 /* Coeff Band ( 6 ) */ 64 /* Coeff Band ( 7 ) */ 73 /* Coeff Band ( 0 ) */ 79 /* Coeff Band ( 1 ) * [all...] |
tokenize.c | 118 int band, rc, v, token; local 130 /* c = band for this case */ 157 band = vp8_coef_bands[c]; 164 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt]; 168 ++x->coef_counts [1] [band] [pt] [token]; 175 band = vp8_coef_bands[c]; 177 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt]; 181 ++x->coef_counts [1] [band] [pt] [DCT_EOB_TOKEN]; 209 int band, rc, v; local 228 /* c = band for this case * 426 int type, band, pt, t; local 525 int band; local [all...] |
/frameworks/base/media/tests/EffectsTest/res/values/ |
strings.xml | 22 <string name="eq_param_1_name">Band 1 Level</string> 23 <string name="eq_param_2_name">Band 2 Level</string> 24 <string name="eq_param_3_name">Band 3 Level</string> 25 <string name="eq_param_4_name">Band 4 Level</string> 26 <string name="eq_param_5_name">Band 5 Level</string>
|
/system/media/audio_effects/include/audio_effects/ |
effect_equalizer.h | 37 EQ_PARAM_LEVEL_RANGE, // Returns the minimum and maximum band levels supported. 38 EQ_PARAM_BAND_LEVEL, // Gets/Sets the gain set for the given equalizer band. 39 EQ_PARAM_CENTER_FREQ, // Gets the center frequency of the given band. 40 EQ_PARAM_BAND_FREQ_RANGE, // Gets the frequency range of the given frequency band. 41 EQ_PARAM_GET_BAND, // Gets the band that has the most effect on the given
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
ControlPanelEffect.java | 221 for (short band = 0; band < mEQNumBands; band++) { 222 mEQCenterFreq[band] = equalizerEffect.getCenterFreq(band); 230 for (short band = 0; band < mEQNumBands; band++) { 231 mEQPresetOpenSLESBandLevel[preset][band] = equalizerEffect 232 .getBandLevel(band); 594 final short band = (short) arg1; local 657 final short band = (short) arg1; local 694 final short band = (short) arg1; local 743 final short band = (short) arg1; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterGradRepresentation.java | 54 mBands.add(new Band()); 61 Vector<Band> mBands = new Vector<Band>(); 62 Band mCurrentBand; 64 static class Band { 76 public Band() { 79 public Band(int x, int y) { 86 public Band(Band copy) { 102 for (Band point : mBands) [all...] |
/frameworks/base/media/java/android/media/audiofx/ |
Equalizer.java | 37 * precise control of the gain in each frequency band controlled by the equalizer. 60 * Band level range. Parameter ID for OnParameterChangeListener 64 * Band level. Parameter ID for OnParameterChangeListener 68 * Band center frequency. Parameter ID for OnParameterChangeListener 72 * Band frequency range. Parameter ID for 77 * Band for a given frequency. Parameter ID for OnParameterChangeListener 198 * @return the band level range in an array of short integers. The first element is the lower 212 * Sets the given equalizer band to the given gain value. 213 * @param band frequency band that will have the new gain. The numbering of the bands start [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_detokenize.c | 68 coef_counts[type][ref][band][pt] \ 98 int band, c = 0; local 119 band = get_coef_band(band_translate, c); 120 prob = coef_probs[band][pt]; 121 counts->eob_branch[tx_size][type][ref][band][pt]++; 130 band = get_coef_band(band_translate, c); 131 prob = coef_probs[band][pt]; 144 if (!load_map[band][pt]) { 145 vp9_model_to_full_probs(coef_probs[band][pt], 146 coef_probs_full[band][pt]) [all...] |
/external/speex/libspeex/ |
sb_celp.h | 4 @brief Sub-band CELP mode used for wideband encoding 43 /**Structure representing the full state of the sub-band encoder*/ 46 void *st_low; /**< State of the low-band (narrowband) encoder */ 47 int full_frame_size; /**< Length of full-band frames*/ 48 int frame_size; /**< Length of high-band frames*/ 49 int subframeSize; /**< Length of high-band sub-frames*/ 50 int nbSubframes; /**< Number of high-band sub-frames*/ 51 int windowSize; /**< Length of high-band LPC window*/ 52 int lpcSize; /**< Order of high-band LPC analysis */ 59 spx_word16_t *high; /**< High-band signal (buffer) * [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
codec.h | 59 * Internal function to perform a rate-allocation for upper and lower-band, 66 * - rateLBBitPerSec : a bit-rate allocated to the lower-band 68 * - rateUBBitPerSec : a bit-rate allocated to the upper-band 84 * Decode the upper-band if the codec is in 0-16 kHz mode. 87 * -ISACdec_obj : pointer to the upper-band decoder object. The 103 * Decode the upper-band if the codec is in 0-12 kHz mode. 106 * -ISACdec_obj : pointer to the upper-band decoder object. The 122 * Encode the upper-band if the codec is in 0-16 kHz mode. 125 * -in : upper-band audio, 160 samples (10 ms). 128 * -ISACdec_obj : pointer to the upper-band encoder object. Th [all...] |