Searched refs:rtpmap (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioCodec.java46 public final String rtpmap; field in class:AudioCodec
84 private AudioCodec(int type, String rtpmap, String fmtp) { argument
86 this.rtpmap = rtpmap;
101 * @param rtpmap The encoding parameters specified in the corresponding SDP
107 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
113 if (rtpmap != null) {
114 String clue = rtpmap.trim().toUpperCase();
116 if (clue.startsWith(codec.rtpmap)) {
117 String channels = clue.substring(codec.rtpmap
[all...]
H A DAudioGroup.java151 codec.rtpmap, codec.fmtp);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java742 media.setRtpPayload(codec.type, codec.rtpmap, codec.fmtp);
771 reply.setRtpPayload(codec.type, codec.rtpmap, codec.fmtp);
775 String rtpmap = media.getRtpmap(type);
776 if ((type != codec.type) && (rtpmap != null)
777 && rtpmap.startsWith("telephone-event")) {
779 type, rtpmap, media.getFmtp(type));
825 media.setRtpPayload(codec.type, codec.rtpmap, codec.fmtp);
1047 String rtpmap = media.getRtpmap(type);
1048 if ((type != codec.type) && (rtpmap != null)
1049 && rtpmap
[all...]
H A DSimpleSessionDescription.java49 * a=rtpmap:0 PCMU/8000
50 * a=rtpmap:8 PCMA/8000
51 * a=rtpmap:127 telephone-event/8000
302 super.set("a=rtpmap:" + format, ' ', null);
311 super.set("a=rtpmap:" + format, ' ', null);
331 * Returns the {@code rtpmap} attribute of the given RTP payload type
335 return super.get("a=rtpmap:" + type, ' ');
347 * Sets a RTP payload type and its {@code rtpmap} and {@code fmtp}
352 public void setRtpPayload(int type, String rtpmap, String fmtp) { argument
356 super.set("a=rtpmap
[all...]

Completed in 61 milliseconds