From a6f950c9682ffffc00ca976aafeeedf391718b1d Mon Sep 17 00:00:00 2001 From: Chia-chi Yeh Date: Wed, 29 Sep 2010 10:36:52 +0800 Subject: RTP: Enable GSM codec. Change-Id: Iae1913fb0643f1c66b5d16f24d51924d363e5ef5 --- voip/jni/rtp/AudioCodec.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'voip/jni/rtp/AudioCodec.cpp') diff --git a/voip/jni/rtp/AudioCodec.cpp b/voip/jni/rtp/AudioCodec.cpp index 8912d82..fc33ef2 100644 --- a/voip/jni/rtp/AudioCodec.cpp +++ b/voip/jni/rtp/AudioCodec.cpp @@ -20,6 +20,7 @@ extern AudioCodec *newAlawCodec(); extern AudioCodec *newUlawCodec(); +extern AudioCodec *newGsmCodec(); struct AudioCodecType { const char *name; @@ -27,6 +28,7 @@ struct AudioCodecType { } gAudioCodecTypes[] = { {"PCMA", newAlawCodec}, {"PCMU", newUlawCodec}, + {"GSM", newGsmCodec}, {NULL, NULL}, }; -- cgit v1.1