fix PiP
This commit is contained in:
parent
53afbd0acc
commit
7521067d3f
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ public class VideoPlayer extends AppCompatActivity {
|
||||||
playerView.setUseController(false);
|
playerView.setUseController(false);
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
if(player.getVideoFormat() != null) {
|
if(player.getVideoFormat() != null) {
|
||||||
ratio = new Rational(player.getVideoFormat().width, player.getVideoFormat().height);
|
ratio = new Rational(Math.round(player.getVideoFormat().width*20*player.getVideoSize().pixelWidthHeightRatio), Math.round(player.getVideoFormat().height*20));
|
||||||
} else if(player.getAudioFormat() != null) {
|
} else if(player.getAudioFormat() != null) {
|
||||||
ratio = new Rational(player.getAudioFormat().width, player.getAudioFormat().height);
|
ratio = new Rational(player.getAudioFormat().width, player.getAudioFormat().height);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue