From f4ae94229d736c7dbd3c5c36d484213d51545702 Mon Sep 17 00:00:00 2001 From: Chia-chi Yeh Date: Thu, 30 Sep 2010 03:04:06 +0800 Subject: RTP: Enable GSM-EFR codec. Change-Id: I9d84009e4557a0a82c1f9d7d543922741be97c77 --- voip/java/android/net/rtp/AudioCodec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'voip/java') 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; -- cgit v1.1