Searched refs:input (Results 376 - 400 of 431) sorted by last modified time

<<1112131415161718

/frameworks/base/core/java/android/widget/
H A DScroller.java589 public float getInterpolation(float input) { argument
590 final float interpolated = VISCOUS_FLUID_NORMALIZE * viscousFluid(input);
H A DTextView.java1153 Log.w(LOG_TAG, "Failure reading input extras", e);
1155 Log.w(LOG_TAG, "Failure reading input extras", e);
1256 // If no input type was specified, we will default to generic
1263 // If set, the input type overrides what was set using the deprecated singleLine flag.
1447 * However, TextViews that have input or movement methods *are*
1602 // Hide the soft input if the currently active TextView is disabled
1792 * to disallow user input. Note that this method has significant and
1793 * subtle interactions with soft keyboards and other input method:
1812 public void setKeyListener(KeyListener input) { argument
1813 setKeyListenerOnly(input);
1834 setKeyListenerOnly(KeyListener input) argument
[all...]
/frameworks/av/include/media/
H A DAudioSystem.h123 // For output threads without a fast mixer, or for input, this is same as getFrameCountHAL().
150 // return the number of input frames lost by HAL implementation, or 0 if the handle is invalid
172 // Corresponds to audio_stream->get_buffer_size()/audio_stream_in_frame_size() for input.
239 audio_io_handle_t *input,
249 static status_t startInput(audio_io_handle_t input,
251 static status_t stopInput(audio_io_handle_t input,
253 static void releaseInput(audio_io_handle_t input,
395 // indicate a change in the configuration of an output or input: keeps the cached
396 // values for output/input parameters up-to-date in client process
H A DCharacterEncodingDetector.h44 const char *input, size_t len,
H A DDrm.h101 Vector<uint8_t> const &input,
107 Vector<uint8_t> const &input,
H A DIAudioFlinger.h86 audio_io_handle_t input,
102 // FIXME Surprisingly, format/latency don't work for input handles
149 // Register an object to receive audio input/output change and track notifications.
173 audio_io_handle_t *input,
179 virtual status_t closeInput(audio_io_handle_t input) = 0;
H A DIAudioPolicyService.h82 audio_io_handle_t *input,
91 virtual status_t startInput(audio_io_handle_t input,
93 virtual status_t stopInput(audio_io_handle_t input,
95 virtual void releaseInput(audio_io_handle_t input,
H A DIDrm.h96 Vector<uint8_t> const &input,
102 Vector<uint8_t> const &input,
/frameworks/av/include/ndk/
H A DNdkMediaDrm.h406 * Encrypt the data referenced by input of length dataSize using algorithm specified
414 const uint8_t *input, uint8_t *output, size_t dataSize);
417 * Decrypt the data referenced by input of length dataSize using algorithm specified
425 const uint8_t *input, uint8_t *output, size_t dataSize);
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DScalarArithmetic.h37 LVM_INT32 Abs_32(LVM_INT32 input);
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DAbs_32.c33 LVM_INT32 Abs_32(LVM_INT32 input) argument
35 if(input < 0)
37 if (input == (LVM_INT32)(0x80000000U))
40 input=(LVM_INT32) 0x7fffffff;
44 /* Negative input, so invert */
45 input = (LVM_INT32)(-input);
48 return input;
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp49 ALOGE("AudioSystem could not query the input buffer size for sampleRate %u, format %#x, "
54 // We double the size of input buffer for ping pong use of record buffer.
273 // TODO: add audio hardware input latency here
519 audio_io_handle_t input; local
533 status = AudioSystem::getInputForAttr(&mAttributes, &input,
541 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE) {
542 ALOGE("Could not get audio input for session %d, record source %d, sample rate %u, "
553 status = AudioSystem::getFrameCount(input, &afFrameCount);
555 ALOGE("getFrameCount(input=%d) status %d", input, statu
[all...]
H A DAudioSystem.cpp517 "frameCount %zu deviceId %d", event == AUDIO_OUTPUT_OPENED ? "output" : "input",
525 event == AUDIO_OUTPUT_CLOSED ? "output" : "input", ioDesc->mIoHandle);
529 event == AUDIO_OUTPUT_CLOSED ? "output" : "input", ioDesc->mIoHandle);
555 event == AUDIO_OUTPUT_CONFIG_CHANGED ? "output" : "input",
577 // Do we have a stale mInBuffSize or are we requesting the input buffer size for new values
837 audio_io_handle_t *input,
850 attr, input, session, pid, uid,
854 status_t AudioSystem::startInput(audio_io_handle_t input, argument
859 return aps->startInput(input, session);
862 status_t AudioSystem::stopInput(audio_io_handle_t input, argument
836 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, pid_t pid, uid_t uid, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, audio_port_handle_t selectedDeviceId) argument
870 releaseInput(audio_io_handle_t input, audio_session_t session) argument
[all...]
H A DCharacterEncodingDetector.cpp272 * - decode the input using each of the matches found
281 const char *input, size_t len,
311 // keep track of how many "special" characters result when converting the input using each
346 const char *source = input;
347 const char *sourceLimit = input + len;
280 getPreferred( const char *input, size_t len, const UCharsetMatch** ucma, size_t nummatches, bool *goodmatch, int *highestmatch) argument
H A DIAudioFlinger.cpp177 audio_io_handle_t input,
196 data.writeInt32((int32_t) input);
527 audio_io_handle_t *input,
534 if (input == NULL || config == NULL || device == NULL) {
540 data.writeInt32(*input);
548 *input = AUDIO_IO_HANDLE_NONE;
553 *input = AUDIO_IO_HANDLE_NONE;
556 *input = (audio_io_handle_t)reply.readInt32();
562 virtual status_t closeInput(int input) argument
566 data.writeInt32(input);
176 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, const String16& opPackageName, size_t *pFrameCount, track_flags_t *flags, pid_t pid, pid_t tid, int clientUid, audio_session_t *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
526 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
983 audio_io_handle_t input = (audio_io_handle_t) data.readInt32(); local
1179 audio_io_handle_t input = (audio_io_handle_t)data.readInt32(); local
[all...]
H A DIAudioPolicyService.cpp281 audio_io_handle_t *input,
297 if (input == NULL) {
298 ALOGE("getInputForAttr NULL input - shouldn't happen");
318 *input = (audio_io_handle_t)reply.readInt32();
322 virtual status_t startInput(audio_io_handle_t input, argument
327 data.writeInt32(input);
333 virtual status_t stopInput(audio_io_handle_t input, argument
338 data.writeInt32(input);
344 virtual void releaseInput(audio_io_handle_t input, argument
349 data.writeInt32(input);
280 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, pid_t pid, uid_t uid, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, audio_port_handle_t selectedDeviceId) argument
971 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; local
984 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
992 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
1000 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
[all...]
H A DIDrm.cpp425 Vector<uint8_t> const &input,
433 writeVector(data, input);
447 Vector<uint8_t> const &input,
455 writeVector(data, input);
848 Vector<uint8_t> sessionId, keyId, input, iv, output; local
851 readVector(data, input);
853 uint32_t result = encrypt(sessionId, keyId, input, iv, output);
862 Vector<uint8_t> sessionId, keyId, input, iv, output; local
865 readVector(data, input);
867 uint32_t result = decrypt(sessionId, keyId, input, i
423 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
445 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c66 void AutoCorrelation(const Word16 input[], Word32 corr[],
504 static void CalcWeightedSpectrum(const Word32 spectrum[], /*!< input spectrum */
601 * input: signal spectrum, acf window, no. of spectral lines,
642 * input: input values, no. of input values, no. of acf values
647 void AutoCorrelation(const Word16 input[], argument
661 accu = L_add(accu, ((input[j] * input[j]) >> scf));
673 accu = L_add(accu, ((input[
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.cpp276 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncSetInput(AVCHandle *avcHandle, AVCFrameIO *input) argument
299 if (input->pitch > 0xFFFF)
308 if (AVCENC_SUCCESS != RCDetermineFrameNum(encvid, rateCtrl, input->coding_timestamp, &frameNum))
317 encvid->currInput = input;
H A Davcenc_api.h99 int width; /* width of an input frame in pixel */
100 int height; /* height of an input frame in pixel */
215 Users call this function to provide an input structure to the encoder library which will keep
216 a list of input structures it receives in case the users call this function many time before
221 \param "input" "Pointer to the input structure."
223 AVCENC_FAIL if the encoder is not in the right state to take a new input frame.
226 AVCENC_NO_PICTURE if the input frame coding timestamp is too early, users must
229 OSCL_IMPORT_REF AVCEnc_Status PVAVCEncSetInput(AVCHandle *avcHandle, AVCFrameIO *input);
235 maximum number of macroblocks fitted into the given input argumen
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp43 -ncoefblck[] as input, to keep position of last non-zero coeff*/
74 VideoEncFrameIO *inputFrame = video->input;
79 UChar *rec, *input, *pred; local
130 input = inputFrame->yChan + offset;
131 if (lx != width) input -= (ind_y << 9); /* non-padded offset */
147 input += 8;
152 input += dctMode;
162 input = inputFrame->uChan + offsetc;
163 if (lx != width) input -= (ind_y << 7);
168 sad = getBlockSum(input, widt
310 UChar *rec, *input, *pred; local
[all...]
H A Dmotion_est.cpp141 VideoEncFrameIO *currFrame = video->input;
H A Dmp4enc_api.cpp191 /* 12/12/05, add encoding option as input argument */
245 /* Check whether the input packetsize is valid (Note: put code here (before any memory allocation) in order to avoid memory leak */
433 /* Set the constraints (maximum values) according to the input profile and level */
1383 /* Finishing new timestamp 32-bit input */
1488 width = encParams->LayerWidth[currLayer]; /* Get input width */
1489 height = encParams->LayerHeight[currLayer]; /* Get input height */
1495 video->input = vid_in; /* point to the frame input */
1758 width = encParams->LayerWidth[currLayer]; /* Get input width */
1759 height = encParams->LayerHeight[currLayer]; /* Get input heigh
[all...]
H A Dmp4enc_lib.h60 void blockIdct_SSE(Short *input);
190 PV_STATUS RC_UpdateBXRCParams(void *input);
H A Dmp4lib_int.h86 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */
326 VideoEncFrameIO *input; /* original input frame */ member in struct:tagVideoEncData

Completed in 346 milliseconds

<<1112131415161718