fix ArrayIndexOutOfBoundsException when playing flv

This commit is contained in:
Marksss 2021-12-01 16:56:42 +08:00
parent 7fe9ecc1c5
commit 13eb9c5908

View file

@ -89,6 +89,9 @@ import java.util.Map;
// We're only interested in metadata.
return false;
}
if (data.getData().length <= data.getPosition()) {
return false;
}
int type = readAmfType(data);
if (type != AMF_TYPE_ECMA_ARRAY) {
// We're not interested in this metadata.