mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-25 01:07:47 +00:00
media preview orientation
// FREEBIE
This commit is contained in:
parent
348352cc71
commit
b39e41c803
@ -151,10 +151,6 @@ public class MediaPreviewActivity extends PassphraseRequiredActionBarActivity {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private InputStream getMediaInputStream() throws IOException {
|
|
||||||
return PartAuthority.getPartStream(this, masterSecret, mediaUri);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPause() {
|
public void onPause() {
|
||||||
super.onPause();
|
super.onPause();
|
||||||
@ -176,8 +172,7 @@ public class MediaPreviewActivity extends PassphraseRequiredActionBarActivity {
|
|||||||
GLES20.glGetIntegerv(GLES20.GL_MAX_TEXTURE_SIZE, maxTextureSizeParams, 0);
|
GLES20.glGetIntegerv(GLES20.GL_MAX_TEXTURE_SIZE, maxTextureSizeParams, 0);
|
||||||
int maxTextureSize = Math.max(maxTextureSizeParams[0], 2048);
|
int maxTextureSize = Math.max(maxTextureSizeParams[0], 2048);
|
||||||
Log.w(TAG, "reported GL_MAX_TEXTURE_SIZE: " + maxTextureSize);
|
Log.w(TAG, "reported GL_MAX_TEXTURE_SIZE: " + maxTextureSize);
|
||||||
return BitmapUtil.createScaledBitmap(getMediaInputStream(),
|
return BitmapUtil.createScaledBitmap(MediaPreviewActivity.this, masterSecret, mediaUri,
|
||||||
getMediaInputStream(),
|
|
||||||
maxTextureSize, maxTextureSize);
|
maxTextureSize, maxTextureSize);
|
||||||
} catch (IOException | BitmapDecodingException e) {
|
} catch (IOException | BitmapDecodingException e) {
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user