summaryrefslogtreecommitdiff
path: root/pjmedia/include/pjmedia-codec/config.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2009-08-13 15:57:26 +0000
committerBenny Prijono <bennylp@teluu.com>2009-08-13 15:57:26 +0000
commitf517e2eca587dbe57515a45c6a0c7399a1ccfba0 (patch)
tree524f2816b47a3fd078b1a6f60166c682164d9311 /pjmedia/include/pjmedia-codec/config.h
parentce3e6942b7ac610e3756ac62ea6a4733f34100d6 (diff)
Misc (#915):
- updated missing doxygen documentation from various PJMEDIA-CODEC headers git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2875 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include/pjmedia-codec/config.h')
-rw-r--r--pjmedia/include/pjmedia-codec/config.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/pjmedia/include/pjmedia-codec/config.h b/pjmedia/include/pjmedia-codec/config.h
index 7571db44..79322bb2 100644
--- a/pjmedia/include/pjmedia-codec/config.h
+++ b/pjmedia/include/pjmedia-codec/config.h
@@ -20,8 +20,21 @@
#ifndef __PJMEDIA_CODEC_CONFIG_H__
#define __PJMEDIA_CODEC_CONFIG_H__
+/**
+ * @file config.h
+ * @brief PJMEDIA-CODEC compile time settings
+ */
+
+/**
+ * @defgroup pjmedia_codec_config PJMEDIA-CODEC Compile Time Settings
+ * @ingroup PJMEDIA_CODEC
+ * @brief Various compile time settings such as to enable/disable codecs
+ * @{
+ */
+
#include <pjmedia/types.h>
+
/*
* Include config_auto.h if autoconf is used (PJ_AUTOCONF is set)
*/
@@ -203,22 +216,47 @@
# define PJMEDIA_HAS_PASSTHROUGH_CODECS 0
#endif
+/**
+ * Enable AMR passthrough codec.
+ *
+ * Default: 1
+ */
#ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR
# define PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR 1
#endif
+/**
+ * Enable G.729 passthrough codec.
+ *
+ * Default: 1
+ */
#ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_G729
# define PJMEDIA_HAS_PASSTHROUGH_CODEC_G729 1
#endif
+/**
+ * Enable iLBC passthrough codec.
+ *
+ * Default: 1
+ */
#ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC
# define PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC 1
#endif
+/**
+ * Enable PCMU passthrough codec.
+ *
+ * Default: 1
+ */
#ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMU
# define PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMU 1
#endif
+/**
+ * Enable PCMA passthrough codec.
+ *
+ * Default: 1
+ */
#ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMA
# define PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMA 1
#endif
@@ -271,4 +309,8 @@
to control which implementation to be used.
#endif
+/**
+ * @}
+ */
+
#endif /* __PJMEDIA_CODEC_CONFIG_H__ */