Lines Matching refs:width

31      * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
38 * @param width the width 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);
57 * @param width the width 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);
76 * @param width the width 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);
95 * @param width the width 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);
107 throw new IllegalArgumentException("Input buffer's size does not fit given width "
115 throw new IllegalArgumentException("Output buffer's size does not fit given width "
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);