add more debugging info to direct capture

should help debugging  #4899

closes #4941

//FREEBIE
This commit is contained in:
agrajaghh 2015-12-21 12:28:10 +01:00 committed by Moxie Marlinspike
parent fd570310e0
commit 94452e7784
1 changed files with 3 additions and 1 deletions

View File

@ -192,7 +192,9 @@ public class BitmapUtil {
if (rotation % 90 != 0 || rotation < 0 || rotation > 270) {
throw new IllegalArgumentException("0 <= rotation < 360, rotation % 90 == 0");
} else if ((width * height * 3) / 2 != yuv.length) {
throw new IOException("provided width and height don't jive with the data length");
throw new IOException("provided width and height don't jive with the data length (" +
yuv.length + "). Width: " + width + " height: " + height +
" = data length: " + (width * height * 3) / 2);
}
final byte[] output = new byte[yuv.length];