summaryrefslogtreecommitdiffstats
path: root/voip/java/android
diff options
context:
space:
mode:
authorChia-chi Yeh <chiachi@android.com>2010-09-29 10:36:52 +0800
committerChia-chi Yeh <chiachi@android.com>2010-09-29 10:36:52 +0800
commita6f950c9682ffffc00ca976aafeeedf391718b1d (patch)
tree214050021aa67943f35439c2a6a50497f7e58f1a /voip/java/android
parent78c11b3cf170fdd35ff6984bc2a64c01e2457503 (diff)
downloadframeworks_base-a6f950c9682ffffc00ca976aafeeedf391718b1d.zip
frameworks_base-a6f950c9682ffffc00ca976aafeeedf391718b1d.tar.gz
frameworks_base-a6f950c9682ffffc00ca976aafeeedf391718b1d.tar.bz2
RTP: Enable GSM codec.
Change-Id: Iae1913fb0643f1c66b5d16f24d51924d363e5ef5
Diffstat (limited to 'voip/java/android')
-rw-r--r--voip/java/android/net/rtp/AudioCodec.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/voip/java/android/net/rtp/AudioCodec.java b/voip/java/android/net/rtp/AudioCodec.java
index 4851a46..dfa6841 100644
--- a/voip/java/android/net/rtp/AudioCodec.java
+++ b/voip/java/android/net/rtp/AudioCodec.java
@@ -81,7 +81,7 @@ public class AudioCodec {
public static final AudioCodec AMR = new AudioCodec(97, "AMR/8000", null);
// TODO: add rest of the codecs when the native part is done.
- private static final AudioCodec[] sCodecs = {PCMU, PCMA};
+ private static final AudioCodec[] sCodecs = {GSM, PCMU, PCMA};
private AudioCodec(int type, String rtpmap, String fmtp) {
this.type = type;