mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
add more debugging info to direct capture
should help debugging #4899 closes #4941 //FREEBIE
This commit is contained in:
parent
fd570310e0
commit
94452e7784
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user