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

/frameworks/base/voip/java/android/net/rtp/
H A DAudioCodec.java51 public final String fmtp; field in class:AudioCodec
84 private AudioCodec(int type, String rtpmap, String fmtp) { argument
87 this.fmtp = fmtp;
103 * @param fmtp The format parameters specified in the corresponding SDP
107 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
137 if (hint == AMR && fmtp != null) {
138 String clue = fmtp.toLowerCase();
144 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 DG711Codec.cpp37 int set(int sampleRate, const char *fmtp) { argument
88 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 const char *modes = strcasestr(fmtp, "mode-set=");
93 mOctetAligned = (strcasestr(fmtp, "octet-align=1") != NULL);
211 int set(int sampleRate, const char *fmtp) { argument
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java52 * a=fmtp:127 0-15
288 * Returns the {@code fmtp} attribute of the given format or
292 return super.get("a=fmtp:" + format, ' ');
296 * Sets a format and its {@code fmtp} attribute. If the attribute is
299 public void setFormat(String format, String fmtp) { argument
303 super.set("a=fmtp:" + format, ' ', fmtp);
307 * Removes a format and its {@code fmtp} attribute.
312 super.set("a=fmtp:" + format, ' ', null);
339 * Returns the {@code fmtp} attribut
352 setRtpPayload(int type, String rtpmap, String fmtp) argument
[all...]

Completed in 1877 milliseconds