Home
last modified time | relevance | path

Searched refs:decoders (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/media/jni/
Dandroid_media_MediaProfiles.cpp350 Vector<video_decoder> decoders = sProfiles->getVideoDecoders(); in android_media_MediaProfiles_native_get_video_decoder_type() local
351 int nSize = decoders.size(); in android_media_MediaProfiles_native_get_video_decoder_type()
357 return static_cast<jint>(decoders[index]); in android_media_MediaProfiles_native_get_video_decoder_type()
372 Vector<audio_decoder> decoders = sProfiles->getAudioDecoders(); in android_media_MediaProfiles_native_get_audio_decoder_type() local
373 int nSize = decoders.size(); in android_media_MediaProfiles_native_get_audio_decoder_type()
379 return static_cast<jint>(decoders[index]); in android_media_MediaProfiles_native_get_audio_decoder_type()
/frameworks/av/media/tests/SampleVideoEncoder/app/src/main/java/com/android/media/samplevideoencoder/
DMediaCodecSurfaceEncoder.java93 ArrayList<String> decoders = in startEncodingSurface() local
95 if (decoders.isEmpty()) { in startEncodingSurface()
99 mDecoder = MediaCodec.createByCodecName(decoders.get(0)); in startEncodingSurface()
/frameworks/av/media/libmedia/
DMediaProfiles.cpp1345 Vector<video_decoder> decoders; in getVideoDecoders() local
1347 decoders.add(mVideoDecoders[i]->mCodec); in getVideoDecoders()
1349 return decoders; // copy out in getVideoDecoders()
1354 Vector<audio_decoder> decoders; in getAudioDecoders() local
1356 decoders.add(mAudioDecoders[i]->mCodec); in getAudioDecoders()
1358 return decoders; // copy out in getAudioDecoders()
/frameworks/base/native/graphics/jni/
DAndroid.bp107 // Image decoders may attempt to allocate a large amount of memory
/frameworks/av/media/tests/benchmark/
DREADME.md62 The test decodes input stream and benchmarks the decoders available in NDK.
141 The test decodes input stream and benchmarks the decoders available in SDK and NDK.
183 The test decodes input stream and benchmarks the codec2 decoders available in device.