我正在编写一些代码,用于将android位图转换为NV12格式。
我发现代码从android位图给我NV21,似乎代码有效。 (Convert bitmap array to YUV (YCbCr NV21))
我发现的唯一区别是根据参考在NV12和NV21之间切换U和V字节。 (http://www.fourcc.org/yuv.php)
所以我从原始代码改变了U和V的位置,然后结果如下。
byte [] getNV12(int inputWidth, int inputHeight, Bitmap scaled) {
// Reference (Variation) : https://gist.github.com/wobbals/5725412
int [] argb = new int[inputWidth * inputHeight];
//Log.i(TAG, "scaled : " + scaled);
scaled.getPixels(argb, 0, inputWidth, 0, 0, inputWidth, inputHeight);
byte [] yuv = new byte[inputWidth*inputHeight*3/2];
encodeYUV420SP(yuv, argb, inputWidth, inputHeight);
scaled.recycle();
return yuv;
}
void encodeYUV420SP(byte[] yuv420sp, int[] argb, int width, int height) {
final int frameSize = width * height;
int yIndex = 0;
int uvIndex = frameSize;
int a, R, G, B, Y, U, V;
int index = 0;
for (int j = 0; j < height; j++) {
for (int i = 0; i < width; i++) {
a = (argb[index] & 0xff000000) >> 24; // a is not used obviously
R = (argb[index] & 0xff0000) >> 16;
G = (argb[index] & 0xff00) >> 8;
B = (argb[index] & 0xff) >> 0;
// well known RGB to YUV algorithm
Y = ( ( 66 * R + 129 * G + 25 * B + 128) >> 8) + 16;
V = ( ( -38 * R - 74 * G + 112 * B + 128) >> 8) + 128; // Previously U
U = ( ( 112 * R - 94 * G - 18 * B + 128) >> 8) + 128; // Previously V
yuv420sp[yIndex++] = (byte) ((Y < 0) ? 0 : ((Y > 255) ? 255 : Y));
if (j % 2 == 0 && index % 2 == 0) {
yuv420sp[uvIndex++] = (byte)((V<0) ? 0 : ((V > 255) ? 255 : V));
yuv420sp[uvIndex++] = (byte)((U<0) ? 0 : ((U > 255) ? 255 : U));
}
index ++;
}
}
}
转换图片时我错了吗? (我很确定编码器没问题。)
答案 0 :(得分:1)
替换
a = (argb[index] & 0xff000000) >> 24; // a is not used obviously
R = (argb[index] & 0xff0000) >> 16;
G = (argb[index] & 0xff00) >> 8;
B = (argb[index] & 0xff) >> 0;
用,
R = (argb[index] & 0xff000000) >>> 24;
G = (argb[index] & 0xff0000) >> 16;
B = (argb[index] & 0xff00) >> 8;
答案 1 :(得分:0)
你可以使用
R = Color.red(argb[index]);
G = Color.green(argb[index]);
B = Color.blue(argb[index]);
其余代码效果很好。
答案 2 :(得分:0)
我使用相同的代码使用 mediaEncoder 从相机图像创建视频。生成的视频中存在颜色问题(example images look here)。似乎 mediaEncoder 支持的格式很少(Ref - Q5)
所以不得不将其转换为 N12(或 I420 格式),我根据 wikipedia article
像这样修改了上面的代码int uIndex = frameSize;
int vIndex = frameSize + frameSize/4;
....
yuv420sp[uIndex++] = (byte)((U<0) ? 0 : ((U > 255) ? 255 : U));
yuv420sp[vIndex++] = (byte)((V<0) ? 0 : ((V > 255) ? 255 : V));
...
现在生成的视频似乎工作正常。