diff options
author | Chia-chi Yeh <chiachi@android.com> | 2010-09-30 03:04:06 +0800 |
---|---|---|
committer | Chia-chi Yeh <chiachi@android.com> | 2010-09-30 03:07:57 +0800 |
commit | f4ae94229d736c7dbd3c5c36d484213d51545702 (patch) | |
tree | 6bf0202576bab7b7264f90f6af61dedcedab2541 /voip/java | |
parent | fe5298992a52f93bb8365d345cdd82d88a4b49f2 (diff) | |
download | frameworks_base-f4ae94229d736c7dbd3c5c36d484213d51545702.zip frameworks_base-f4ae94229d736c7dbd3c5c36d484213d51545702.tar.gz frameworks_base-f4ae94229d736c7dbd3c5c36d484213d51545702.tar.bz2 |
RTP: Enable GSM-EFR codec.
Change-Id: I9d84009e4557a0a82c1f9d7d543922741be97c77
Diffstat (limited to 'voip/java')
-rw-r--r-- | voip/java/android/net/rtp/AudioCodec.java | 2 |
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 dfa6841..f171806 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 = {GSM, PCMU, PCMA}; + private static final AudioCodec[] sCodecs = {GSM_EFR, GSM, PCMU, PCMA}; private AudioCodec(int type, String rtpmap, String fmtp) { this.type = type; |