Searched defs:fmtp (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/voip/java/android/net/rtp/
H A DAudioCodec.java52 public final String fmtp; field in class:AudioCodec
85 private AudioCodec(int type, String rtpmap, String fmtp) { argument
88 this.fmtp = fmtp;
104 * @param fmtp The format parameters specified in the corresponding SDP
108 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
138 if (hint == AMR && fmtp != null) {
139 String clue = fmtp.toLowerCase();
145 return new AudioCodec(type, rtpmap, fmtp);
/frameworks/base/voip/jni/rtp/
H A DGsmCodec.cpp42 int set(int sampleRate, const char *fmtp) { argument
H A DAmrCodec.cpp53 int set(int sampleRate, const char *fmtp);
67 int AmrCodec::set(int sampleRate, const char *fmtp) argument
70 if (strcasestr(fmtp, "crc=1") || strcasestr(fmtp, "robust-sorting=1") ||
71 strcasestr(fmtp, "interleaving=")) {
76 char *modes = (char*)strcasestr(fmtp, "mode-set=");
93 mOctetAligned = (strcasestr(fmtp, "octet-align=1") != NULL);
211 int set(int sampleRate, const char *fmtp) { argument
H A DG711Codec.cpp37 int set(int sampleRate, const char *fmtp) { argument
85 int set(int sampleRate, const char *fmtp) { argument
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java51 * a=fmtp:127 0-15
287 * Returns the {@code fmtp} attribute of the given format or
291 return super.get("a=fmtp:" + format, ' ');
295 * Sets a format and its {@code fmtp} attribute. If the attribute is
298 public void setFormat(String format, String fmtp) { argument
302 super.set("a=fmtp:" + format, ' ', fmtp);
306 * Removes a format and its {@code fmtp} attribute.
311 super.set("a=fmtp:" + format, ' ', null);
338 * Returns the {@code fmtp} attribut
351 setRtpPayload(int type, String rtpmap, String fmtp) argument
[all...]

Completed in 221 milliseconds