Return mUnsupportedVideoMimeTypes from the getter

Currently we are returning mSupportedVideoMimeTypes from
getUnsupportedVideoMimeTypes.

BUG=176993974, 158466651
Test: manual

Change-Id: Ifc2d136d18488e827eee43fed7f32bb8868c51d5
This commit is contained in:
Manish Singh
2021-01-20 04:30:59 +00:00
parent c9805723c9
commit b80bfcbdbe

View File

@@ -237,7 +237,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
*/
@NonNull
public List<String> getUnsupportedVideoMimeTypes() {
return new ArrayList<>(mSupportedVideoMimeTypes);
return new ArrayList<>(mUnsupportedVideoMimeTypes);
}
/*