fetch video resolutions at videofragment on a background thread

This commit is contained in:
tibbi 2019-06-10 23:34:43 +02:00
parent 190a3035db
commit d05f3b7d8d

View file

@ -139,10 +139,12 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S
initTimeHolder() initTimeHolder()
checkIfPanorama() checkIfPanorama()
activity?.getVideoResolution(mMedium.path)?.apply { Thread {
mVideoSize.x = x activity?.getVideoResolution(mMedium.path)?.apply {
mVideoSize.y = y mVideoSize.x = x
} mVideoSize.y = y
}
}.start()
if (mIsPanorama) { if (mIsPanorama) {
mView.apply { mView.apply {