mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
Merge pull request #2955 from gmasil/close-closables-to-prevent-leaks
close inputstream and datasource to prevent leaks
This commit is contained in:
commit
4951002796
2 changed files with 11 additions and 8 deletions
|
@ -745,17 +745,17 @@ class PhotoFragment : ViewPagerFragment() {
|
||||||
|
|
||||||
private fun checkIfPanorama() {
|
private fun checkIfPanorama() {
|
||||||
mIsPanorama = try {
|
mIsPanorama = try {
|
||||||
val inputStream = if (mMedium.path.startsWith("content:/")) {
|
if (mMedium.path.startsWith("content:/")) {
|
||||||
requireContext().contentResolver.openInputStream(Uri.parse(mMedium.path))
|
requireContext().contentResolver.openInputStream(Uri.parse(mMedium.path))
|
||||||
} else {
|
} else {
|
||||||
File(mMedium.path).inputStream()
|
File(mMedium.path).inputStream()
|
||||||
}
|
}.use {
|
||||||
|
val imageParser = JpegImageParser().getXmpXml(ByteSourceInputStream(it, mMedium.name), HashMap<String, Any>())
|
||||||
val imageParser = JpegImageParser().getXmpXml(ByteSourceInputStream(inputStream, mMedium.name), HashMap<String, Any>())
|
|
||||||
imageParser.contains("GPano:UsePanoramaViewer=\"True\"", true) ||
|
imageParser.contains("GPano:UsePanoramaViewer=\"True\"", true) ||
|
||||||
imageParser.contains("<GPano:UsePanoramaViewer>True</GPano:UsePanoramaViewer>", true) ||
|
imageParser.contains("<GPano:UsePanoramaViewer>True</GPano:UsePanoramaViewer>", true) ||
|
||||||
imageParser.contains("GPano:FullPanoWidthPixels=") ||
|
imageParser.contains("GPano:FullPanoWidthPixels=") ||
|
||||||
imageParser.contains("GPano:ProjectionType>Equirectangular")
|
imageParser.contains("GPano:ProjectionType>Equirectangular")
|
||||||
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
false
|
false
|
||||||
} catch (e: OutOfMemoryError) {
|
} catch (e: OutOfMemoryError) {
|
||||||
|
|
|
@ -364,6 +364,7 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S
|
||||||
try {
|
try {
|
||||||
fileDataSource.open(dataSpec)
|
fileDataSource.open(dataSpec)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
fileDataSource.close()
|
||||||
activity?.showErrorToast(e)
|
activity?.showErrorToast(e)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -372,6 +373,8 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S
|
||||||
val mediaSource: MediaSource = ProgressiveMediaSource.Factory(factory)
|
val mediaSource: MediaSource = ProgressiveMediaSource.Factory(factory)
|
||||||
.createMediaSource(MediaItem.fromUri(fileDataSource.uri!!))
|
.createMediaSource(MediaItem.fromUri(fileDataSource.uri!!))
|
||||||
|
|
||||||
|
fileDataSource.close()
|
||||||
|
|
||||||
mPlayOnPrepared = true
|
mPlayOnPrepared = true
|
||||||
|
|
||||||
mExoPlayer = ExoPlayer.Builder(requireContext())
|
mExoPlayer = ExoPlayer.Builder(requireContext())
|
||||||
|
|
Loading…
Reference in a new issue