Lines Matching refs:output

33      * YUV to RGB conversion is done using the ITU-R BT.601 transformation. The output buffer must
37 * @param output buffer to hold RGBA8888 data.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
52 * buffer must be large enough to hold the data. The output buffer may be the same as the
56 * @param output buffer to hold RGBA8888 data.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
63 expectOutputSize(output, 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
71 * buffer must be large enough to hold the data. The output buffer may be the same as the
75 * @param output buffer to hold HSVA8888 data.
80 ByteBuffer input, ByteBuffer output, int width, int height) {
82 expectOutputSize(output, 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
90 * buffer must be large enough to hold the data. The output buffer may be the same as the
94 * @param output buffer to hold YCbCrA8888 data.
99 ByteBuffer input, ByteBuffer output, int width, int height) {
101 expectOutputSize(output, width * height * 4);
102 nativeRgba8888ToYcbcra8888(input, output, width, height);
113 private static void expectOutputSize(ByteBuffer output, int expectedSize) {
114 if (output.remaining() < expectedSize) {
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);