/frameworks/av/tools/resampler_tools/ |
Android.mk | 11 fir.cpp 13 LOCAL_MODULE := fir
|
/external/chromium_org/third_party/freetype/src/base/ |
ftlcdfil.c | 32 /* FIR filter used by the default and light filters */ 43 /* horizontal in-place FIR filter */ 51 FT_UInt fir[5]; local 56 fir[0] = weights[2] * val1; 57 fir[1] = weights[3] * val1; 58 fir[2] = weights[4] * val1; 59 fir[3] = 0; 60 fir[4] = 0; 63 fir[0] += weights[1] * val1; 64 fir[1] += weights[2] * val1 110 FT_UInt fir[5]; local [all...] |
/external/freetype/src/base/ |
ftlcdfil.c | 32 /* FIR filter used by the default and light filters */ 43 /* horizontal in-place FIR filter */ 51 FT_UInt fir[5]; local 56 fir[0] = weights[2] * val1; 57 fir[1] = weights[3] * val1; 58 fir[2] = weights[4] * val1; 59 fir[3] = 0; 60 fir[4] = 0; 63 fir[0] += weights[1] * val1; 64 fir[1] += weights[2] * val1 110 FT_UInt fir[5]; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
sample1a-expected-assistant1.txt | 1 Quick assistant in sample1a.xml for <Button android:text="Fir^stButton":
|
/external/srec/audio/AudioIn/UNIX/include/ |
filter.h | 26 typedef short typeCoeff; // FIR filter coefficients 27 typedef long typeAccum; // FIR filter accumulator 36 int state; // state of FIR delay line (index of next slot to fill) 42 unsigned int nTaps; // length of FIR filter 44 const typeCoeff *h; // pointer to FIR filter coefficients
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
re2c.1 | 169 \fIr\fP\fC\e\fP\fIs\fP 170 match any \fIr\fP which isn't an \fIs\fP. \fIr\fP and \fIs\fP must be regular expressions 173 \fIr\fP\fC*\fP 174 zero or more \fIr\fP's, where \fIr\fP is any regular expression 176 \fC\fIr\fP\fC+\fP 177 one or more \fIr\fP's 179 \fC\fIr\fP\fC?\fP 180 zero or one \fIr\fP's (that is, "an optional \fIr\fP" [all...] |
/external/srec/audio/AudioIn/UNIX/src/ |
filter.c | 28 * Apply FIR filter to 44 kHz raw 16-bit PCM linear audio then 41 * FIR FILTER * 69 * allocate and initialize FIR structure 72 * nTaps - length of FIR filter 73 * pCoeffs - pointer to FIR filter coefficients 77 * returns pointer to FIR structure; NULL if error 115 * deallocate FIR structure 118 * pFIR - pointer to FIR structure 143 * reset FIR state 146 * pFIR - pointer to FIR structur [all...] |
/development/ndk/samples/hello-neon/jni/ |
helloneon.c | 43 /* this is a FIR filter implemented in C */ 89 /* setup FIR input - whatever */ 98 /* Benchmark small FIR filter loop - C version */ 109 asprintf(&str, "FIR Filter benchmark:\nC version : %g ms\n", time_c); 133 /* Benchmark small FIR filter loop - Neon version */
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
context.h | 51 #define PTW32_PROGCTR(Context) ((Context).Fir) 55 #define PTW32_PROGCTR(Context) ((Context).Fir)
|
/development/samples/Support13Demos/src/com/example/android/supportv13/app/ |
_index.html | 3 package features of the static support library fir API 13 or later.
|
/frameworks/av/media/libstagefright/codecs/aacenc/inc/ |
block_switch.h | 30 #define BLOCK_SWITCHING_IIR_LEN 2 /* Length of HighPass-FIR-Filter for Attack-Detection */
|
/external/chromium_org/third_party/opus/src/silk/ |
resampler_private.h | 44 /* Description: Hybrid IIR/FIR polyphase implementation of resampling */ 52 /* Description: Hybrid IIR/FIR polyphase implementation of resampling */
|
resampler_rom.h | 52 /* Tables with IIR and FIR coefficients for fractional downsamplers */
|
resampler_rom.c | 32 /* Filter coefficients for IIR/FIR polyphase resampling * 42 /* Tables with IIR and FIR coefficients for fractional downsamplers (123 Words) */
|
/frameworks/base/media/java/android/media/ |
ResampleInputStream.java | 48 // length of 2:1 fir 147 // fir filter code JNI interface
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
lp_dec2.c | 20 * Description:Decimate a vector by 2 with 2nd order fir filter *
|
/external/chromium_org/third_party/skia/src/core/ |
SkScalerContext.cpp | 438 // An N tap FIR is defined by 443 // The strategy is to use one FIR (different coefficients) for each of r, g, and b. 444 // This means using every 4th FIR output value of each FIR and discarding the rest. 471 // TODO: this fir filter implementation is straight forward, but slow. 474 int fir[LCD_PER_PIXEL] = { 0 }; local 481 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value; 485 fir[subpxl_index] /= 0x100; 486 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255) [all...] |
/external/skia/src/core/ |
SkScalerContext.cpp | 438 // An N tap FIR is defined by 443 // The strategy is to use one FIR (different coefficients) for each of r, g, and b. 444 // This means using every 4th FIR output value of each FIR and discarding the rest. 471 // TODO: this fir filter implementation is straight forward, but slow. 474 int fir[LCD_PER_PIXEL] = { 0 }; local 481 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value; 485 fir[subpxl_index] /= 0x100; 486 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255) [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
ARTPSource.cpp | 173 // Send FIR requests at most every 5 secs. 180 ALOGW("RTCP buffer too small to accomodate FIR."); 213 ALOGV("Added FIR request.");
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
DownSampler.h | 68 // Used as delay-line (FIR filter history) for the input samples to account for the 0.5 term right in the middle of the kernel.
|
UpSampler.h | 69 // The source samples are delayed exactly to match the linear phase delay of the FIR filter (convolution)
|
/external/chromium_org/third_party/opus/src/silk/float/ |
LTP_analysis_filter_FLP.c | 60 /* LTP analysis FIR filter */
|
/external/valgrind/main/coregrind/m_gdbserver/ |
mips-fpu.xml | 44 <reg name="fir" bitsize="32" group="float"/>
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
constants.cc | 84 const char kRtcpFbCcmParamFir[] = "fir";
|
/external/chromium_org/third_party/opus/src/silk/fixed/ |
LTP_analysis_filter_FIX.c | 60 /* LTP analysis FIR filter */
|