RTP: add a null-check in AudioStream.setDtmfType().

Change-Id: I52cbdea48affae3747942940451f4fd5ca47030f
This commit is contained in:
Chia-chi Yeh
2012-03-27 15:27:25 -07:00
parent 80e4ee4600
commit fb982db410

View File

@@ -158,7 +158,7 @@ public class AudioStream extends RtpStream {
if (type < 96 || type > 127) {
throw new IllegalArgumentException("Invalid type");
}
if (type == mCodec.type) {
if (mCodec != null && type == mCodec.type) {
throw new IllegalArgumentException("The type is used by codec");
}
}