Merge "Throw when trying to create MediaParser before R" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
de2d4c29ef
@@ -21,6 +21,7 @@ import android.annotation.NonNull;
|
||||
import android.annotation.Nullable;
|
||||
import android.annotation.StringDef;
|
||||
import android.media.MediaCodec.CryptoInfo;
|
||||
import android.os.Build;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.util.Pair;
|
||||
@@ -1099,6 +1100,9 @@ public final class MediaParser {
|
||||
// Private methods.
|
||||
|
||||
private MediaParser(OutputConsumer outputConsumer, boolean sniff, String... parserNamesPool) {
|
||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.R) {
|
||||
throw new UnsupportedOperationException("Android version must be R or greater.");
|
||||
}
|
||||
mParserParameters = new HashMap<>();
|
||||
mOutputConsumer = outputConsumer;
|
||||
mParserNamesPool = parserNamesPool;
|
||||
|
||||
Reference in New Issue
Block a user