summaryrefslogtreecommitdiffstats
path: root/voip/jni/rtp/AudioCodec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'voip/jni/rtp/AudioCodec.cpp')
-rw-r--r--voip/jni/rtp/AudioCodec.cpp2
1 files changed, 2 insertions, 0 deletions
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},
};