Lines Matching refs:input

31      * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
36 * @param input data encoded in YUV420-Planar.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
53 * input buffer.
55 * @param input data encoded in ARGB8888.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
62 expectInputSize(input, width * height * 4);
64 nativeArgb8888ToRgba8888(input, output, width, height);
70 * The input data is expected to be encoded in 8-bit interleaved RGBA channels. The output
72 * input buffer.
74 * @param input data encoded in RGBA8888.
80 ByteBuffer input, ByteBuffer output, int width, int height) {
81 expectInputSize(input, width * height * 4);
83 nativeRgba8888ToHsva8888(input, output, width, height);
89 * The input data is expected to be encoded in 8-bit interleaved RGBA channels. The output
91 * input buffer.
93 * @param input data encoded in RGBA8888.
99 ByteBuffer input, ByteBuffer output, int width, int height) {
100 expectInputSize(input, width * height * 4);
102 nativeRgba8888ToYcbcra8888(input, output, width, height);
105 private static void expectInputSize(ByteBuffer input, int expectedSize) {
106 if (input.remaining() < expectedSize) {
108 + "and height! Expected: " + expectedSize + ", Got: " + input.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);