Compare commits

..

2 Commits

Author SHA1 Message Date
Cameron Gutman 951e44728e Version 8.8.1 2020-01-03 22:05:58 -06:00
Cameron Gutman 8dcdf73222 Fix accidentally inverted condition for VUI parameter removal 2020-01-03 21:59:25 -06:00
3 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ android {
minSdkVersion 16
targetSdkVersion 29
versionName "8.8"
versionCode = 208
versionName "8.8.1"
versionCode = 209
}
flavorDimensions "root"
@@ -719,7 +719,7 @@ public class MediaCodecDecoderRenderer extends VideoDecoderRenderer {
// GFE 2.5.11 changed the SPS to add additional extensions
// Some devices don't like these so we remove them here on old devices.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
sps.vuiParams.videoSignalTypePresentFlag = false;
sps.vuiParams.colourDescriptionPresentFlag = false;
sps.vuiParams.chromaLocInfoPresentFlag = false;
@@ -0,0 +1 @@
- Fixed H.264 colorspace data on Android 8.0 and later