Searched refs:right (Results 1 - 25 of 772) sorted by path

1234567891011>>

/frameworks/av/include/media/
H A DAudioResampler.h61 virtual void setVolume(float left, float right);
H A DAudioTrack.h416 * left and right volumes. Levels must be >= 0.0 and <= 1.0.
419 status_t setVolume(float left, float right);
/frameworks/av/include/media/audiohal/
H A DStreamHalInterface.h107 virtual status_t setVolume(float left, float right) = 0;
/frameworks/av/include/media/stagefright/
H A DMetaData.h247 int32_t right, int32_t bottom);
258 int32_t *right, int32_t *bottom);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h111 int32_t left, int32_t top, int32_t right, int32_t bottom);
134 int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) const;
/frameworks/av/include/ndk/
H A DNdkImage.h506 * <p>Note that the right and bottom coordinates are exclusive, so the width of the rectangle is
507 * (right - left) and the height of the rectangle is (bottom - top).</p>
512 int32_t right; member in struct:AImageCropRect
/frameworks/av/media/img_utils/include/img_utils/
H A DDngUtils.h97 uint32_t right,
158 * badRectCount - number of (top, left, bottom, right) tuples are given in
/frameworks/av/media/img_utils/src/
H A DDngUtils.cpp148 /*right*/activeAreaWidth - 1,
166 /*right*/activeAreaWidth - 1,
184 /*right*/activeAreaWidth - 1,
202 /*right*/activeAreaWidth - 1,
221 uint32_t right,
257 right,
218 addGainMap(uint32_t top, uint32_t left, uint32_t bottom, uint32_t right, uint32_t plane, uint32_t planes, uint32_t rowPitch, uint32_t colPitch, uint32_t mapPointsV, uint32_t mapPointsH, double mapSpacingV, double mapSpacingH, double mapOriginV, double mapOriginH, uint32_t mapPlanes, const float* mapGains) argument
/frameworks/av/media/libaudioclient/
H A DAudioTrack.cpp783 status_t AudioTrack::setVolume(float left, float right) argument
787 isnanf(right) || right < GAIN_FLOAT_ZERO || right > GAIN_FLOAT_UNITY) {
793 mVolume[AUDIO_INTERLEAVE_RIGHT] = right;
795 mProxy->setVolumeLR(gain_minifloat_pack(gain_from_float(left), gain_from_float(right)));
2525 // right after AudioTrack is started, one may not find a timestamp
2723 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType,
/frameworks/av/media/libaudioclient/include/media/
H A DAudioTrack.h416 * left and right volumes. Levels must be >= 0.0 and <= 1.0.
419 status_t setVolume(float left, float right);
/frameworks/av/media/libaudiohal/
H A DStreamHalHidl.cpp294 status_t StreamOutHalHidl::setVolume(float left, float right) { argument
296 return processReturn("setVolume", mStream->setVolume(left, right));
H A DStreamHalHidl.h121 virtual status_t setVolume(float left, float right);
H A DStreamHalLocal.cpp127 status_t StreamOutHalLocal::setVolume(float left, float right) { argument
129 return mStream->set_volume(mStream, left, right);
H A DStreamHalLocal.h99 virtual status_t setVolume(float left, float right);
/frameworks/av/media/libaudiohal/include/
H A DStreamHalInterface.h107 virtual status_t setVolume(float left, float right) = 0;
/frameworks/av/media/libaudioprocessing/
H A DAudioResampler.cpp303 void AudioResampler::setVolume(float left, float right) {
308 mVolume[1] = u4_12_from_float(clampFloatVol(right));
544 * vl, vr : left and right gain
665 * vl, vr : left and right gain
H A DAudioResamplerCubic.cpp32 memset(&right, 0, sizeof(state));
83 out[outputIndex++] += vr * interp(&right, x);
109 advance(&right, in[inputIndex*2+1]);
H A DAudioResamplerCubic.h62 state left, right; member in class:android::AudioResamplerCubic
H A DAudioResamplerDyn.cpp204 void AudioResamplerDyn<TC, TI, TO>::setVolume(float left, float right) argument
206 AudioResampler::setVolume(left, right);
209 mVolumeSimd[1] = static_cast<TO>(right);
214 mVolumeSimd[1] = u4_28_from_float(clampFloatVol(right));
H A DAudioResamplerDyn.h53 virtual void setVolume(float left, float right);
69 int mShift; // right shift to get polyphase index
H A DAudioResamplerSinc.cpp259 void AudioResamplerSinc::setVolume(float left, float right) { argument
260 AudioResampler::setVolume(left, right);
264 mVolumeSIMD[1] = u4_28_from_float(clampFloatVol(right));
H A DAudioResamplerSinc.h47 virtual void setVolume(float left, float right);
/frameworks/av/media/libaudioprocessing/include/
H A DAudioResampler.h61 virtual void setVolume(float left, float right);
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c97 ALOGE("Unsupported channels (top or front left/right of center)");
136 const int indexBR = hasBacks ? indexBL + 1 : indexBL; // back right
139 const int indexSR = hasSides ? indexSL + 1 : indexSL; // side right
154 ALOGE("Unsupported channels (top or front left/right of center)");
504 float right = (float)(*((uint32_t *)pCmdData + 1)) / (1 << 24); local
505 ALOGV("Downmix_Command EFFECT_CMD_SET_VOLUME: left %f, right %f ", left, right);
984 * - if using AUDIO_CHANNEL_OUT_SIDE*, it contains both left and right
985 * - if using AUDIO_CHANNEL_OUT_BACK*, it contains both left and right
1026 const int indexBR = hasBacks ? indexBL + 1 : indexBL; // back right
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DFrom2iToMS_16x16.c33 LVM_INT32 temp1,left,right; local
40 right = (LVM_INT32)*src;
44 temp1 = (left+right)>>1;
49 temp1 = (left-right)>>1;

Completed in 2841 milliseconds

1234567891011>>