Home | History | Annotate | Download | only in jni

Lines Matching refs:imageSize

577     int imageSize = width * height;
584 LOGV("MosBytes: %d, W = %d, H = %d", imageSize, width, height);
586 int* image = new int[imageSize];
603 jintArray bytes = env->NewIntArray(imageSize+2);
609 env->SetIntArrayRegion(bytes, 0, imageSize, (jint*) image);
610 env->SetIntArrayRegion(bytes, imageSize, 2, (jint*) dims);
626 int imageSize = 1.5*width * height;
640 LOGV("MosBytes: %d, W = %d, H = %d", imageSize, width, height);
654 jbyteArray bytes = env->NewByteArray(imageSize+8);
660 env->SetByteArrayRegion(bytes, 0, imageSize, (jbyte*) resultYVU);
661 env->SetByteArrayRegion(bytes, imageSize, 8, (jbyte*) dims);