Searched defs:dstBuf (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libaudioprocessing/
H A DRecordBufferConverter.cpp230 void *dstBuf = mBuf != NULL ? mBuf : dst; local
232 upmix_to_stereo_float_from_mono_float((float *)dstBuf,
235 downmix_to_mono_float_from_stereo_float((float *)dstBuf,
246 void *dstBuf = mBuf != NULL ? mBuf : dst; local
247 memcpy_by_index_array(dstBuf, mDstChannelCount,
249 if (dstBuf == dst) {
/frameworks/base/media/java/android/media/
H A DMediaDescrambler.java168 * @param dstBuf ByteBuffer to hold the descrambled data, which starts at
169 * dstBuf.position().
180 @NonNull ByteBuffer srcBuf, @NonNull ByteBuffer dstBuf,
211 dstBuf, dstBuf.position(), dstBuf.limit());
242 ByteBuffer dstBuf, int dstOffset, int dstLimit);
179 descramble( @onNull ByteBuffer srcBuf, @NonNull ByteBuffer dstBuf, @NonNull MediaCodec.CryptoInfo cryptoInfo) argument
239 native_descramble( byte key, int numSubSamples, int[] numBytesOfClearData, int[] numBytesOfEncryptedData, @NonNull ByteBuffer srcBuf, int srcOffset, int srcLimit, ByteBuffer dstBuf, int dstOffset, int dstLimit) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaDescrambler.cpp293 jobject dstBuf, jint dstOffset, jint dstLimit) {
317 if (dstBuf == NULL) {
321 env, dstBuf, dstOffset, dstLimit, totalLength, &dstPtr, &dstArray);
289 android_media_MediaDescrambler_native_descramble( JNIEnv *env, jobject thiz, jbyte key, jint numSubSamples, jintArray numBytesOfClearDataObj, jintArray numBytesOfEncryptedDataObj, jobject srcBuf, jint srcOffset, jint srcLimit, jobject dstBuf, jint dstOffset, jint dstLimit) argument

Completed in 94 milliseconds