RTP: add a null-check in AudioStream.setDtmfType().
Change-Id: I52cbdea48affae3747942940451f4fd5ca47030f
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user