Searched refs:dst_width (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp264 JNIEnv *env, VideoFrame *videoFrame, jint dst_width, jint dst_height,
325 if (dst_width <= 0 || dst_height <= 0) {
326 dst_width = displayWidth;
329 float factor = std::min((float)dst_width / (float)displayWidth,
331 dst_width = std::round(displayWidth * factor);
335 if ((uint32_t)dst_width != width || (uint32_t)dst_height != height) {
337 width, height, dst_width, dst_height);
341 dst_width,
385 JNIEnv *env, jobject thiz, jlong timeUs, jint option, jint dst_width, jint dst_height)
388 (long long)timeUs, option, dst_width, dst_heigh
263 getBitmapFromVideoFrame( JNIEnv *env, VideoFrame *videoFrame, jint dst_width, jint dst_height, SkColorType outColorType) argument
384 android_media_MediaMetadataRetriever_getFrameAtTime( JNIEnv *env, jobject thiz, jlong timeUs, jint option, jint dst_width, jint dst_height) argument
449 jint dst_width = -1, dst_height = -1; local
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp595 float dst_width = frame.width(); local
597 if (src_width != dst_width || src_height != dst_height) {
598 float sx = dst_width / src_width;

Completed in 62 milliseconds