blob: 4f2f82d36e6d968d2fefbf71bf4ecda90bbf43be [file] [log] [blame]
Benny Prijonoa4bf0212006-02-10 15:57:08 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#ifndef __PJMEDIA_CODEC_CONFIG_H__
20#define __PJMEDIA_CODEC_CONFIG_H__
21
22#include <pjmedia/types.h>
23
Benny Prijonofe9bffd2007-01-27 17:44:13 +000024/*
25 * Include config_auto.h if autoconf is used (PJ_AUTOCONF is set)
26 */
27#if defined(PJ_AUTOCONF)
28# include <pjmedia-codec/config_auto.h>
29#endif
Benny Prijonoa4bf0212006-02-10 15:57:08 +000030
Benny Prijono4381efe2006-03-16 14:24:26 +000031/**
Benny Prijonoa837c302006-04-27 22:36:40 +000032 * Unless specified otherwise, L16 codec is included by default.
33 */
34#ifndef PJMEDIA_HAS_L16_CODEC
35# define PJMEDIA_HAS_L16_CODEC 1
36#endif
37
38
39/**
Benny Prijono4381efe2006-03-16 14:24:26 +000040 * Unless specified otherwise, GSM codec is included by default.
Benny Prijonoa4bf0212006-02-10 15:57:08 +000041 */
Benny Prijono4381efe2006-03-16 14:24:26 +000042#ifndef PJMEDIA_HAS_GSM_CODEC
43# define PJMEDIA_HAS_GSM_CODEC 1
Benny Prijonoa4bf0212006-02-10 15:57:08 +000044#endif
45
46
Benny Prijono4381efe2006-03-16 14:24:26 +000047/**
48 * Unless specified otherwise, Speex codec is included by default.
Benny Prijonoeb30bf52006-03-04 20:43:52 +000049 */
Benny Prijono4381efe2006-03-16 14:24:26 +000050#ifndef PJMEDIA_HAS_SPEEX_CODEC
51# define PJMEDIA_HAS_SPEEX_CODEC 1
Benny Prijonoeb30bf52006-03-04 20:43:52 +000052#endif
53
54
Benny Prijono00cae612006-07-31 15:19:36 +000055/**
56 * Unless specified otherwise, iLBC codec is included by default.
57 */
58#ifndef PJMEDIA_HAS_ILBC_CODEC
59# define PJMEDIA_HAS_ILBC_CODEC 1
60#endif
61
62
Benny Prijonoa4bf0212006-02-10 15:57:08 +000063
64#endif /* __PJMEDIA_CODEC_CONFIG_H__ */
Benny Prijonofe9bffd2007-01-27 17:44:13 +000065