Lines Matching refs:height

31      * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
39 * @param height the height of the image (must be a multiple of 2)
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
58 * @param height the height of the image
61 ByteBuffer input, ByteBuffer output, int width, int height) {
62 expectInputSize(input, width * height * 4);
63 expectOutputSize(output, width * height * 4);
64 nativeArgb8888ToRgba8888(input, output, width, height);
77 * @param height the height of the image
80 ByteBuffer input, ByteBuffer output, int width, int height) {
81 expectInputSize(input, width * height * 4);
82 expectOutputSize(output, width * height * 4);
83 nativeRgba8888ToHsva8888(input, output, width, height);
96 * @param height the height of the image
99 ByteBuffer input, ByteBuffer output, int width, int height) {
100 expectInputSize(input, width * height * 4);
101 expectOutputSize(output, width * height * 4);
102 nativeRgba8888ToYcbcra8888(input, output, width, height);
108 + "and height! Expected: " + expectedSize + ", Got: " + input.remaining()
116 + "and height! Expected: " + expectedSize + ", Got: " + output.remaining()
122 ByteBuffer input, ByteBuffer output, int width, int height);
125 ByteBuffer input, ByteBuffer output, int width, int height);
128 ByteBuffer input, ByteBuffer output, int width, int height);
131 ByteBuffer input, ByteBuffer output, int width, int height);