diff --git a/sflphone-common/libs/pjproject-1.0.3/pjmedia/build/os-auto.mak.in b/sflphone-common/libs/pjproject-1.0.3/pjmedia/build/os-auto.mak.in index 4f73b245ecf49d5834455fc343580c7b38b29719..656e3d58bd1a0908ee9e6e872c2d1049a99c4d2b 100644 --- a/sflphone-common/libs/pjproject-1.0.3/pjmedia/build/os-auto.mak.in +++ b/sflphone-common/libs/pjproject-1.0.3/pjmedia/build/os-auto.mak.in @@ -26,6 +26,7 @@ AC_NO_G711_CODEC=@ac_no_g711_codec@ AC_NO_L16_CODEC=@ac_no_l16_codec@ AC_NO_GSM_CODEC=@ac_no_gsm_codec@ AC_NO_SPEEX_CODEC=@ac_no_speex_codec@ +AC_NO_ILBC_CODEC=@ac_no_ilbc_codec@ AC_NO_G722_CODEC=@ac_no_g722_codec@ export CODEC_OBJS= @@ -60,6 +61,12 @@ endif endif +ifeq ($(AC_NO_ILBC_CODEC),1) +export CFLAGS += -DPJMEDIA_HAS_ILBC_CODEC=0 +else +export CODEC_OBJS += ilbc.o +endif + ifeq ($(AC_NO_G722_CODEC),1) export CFLAGS += -DPJMEDIA_HAS_G722_CODEC=0 else diff --git a/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/pjmedia-codec/ilbc.c b/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/pjmedia-codec/ilbc.c new file mode 100644 index 0000000000000000000000000000000000000000..7feb1370c850d8679aac47abe514e8b5b5e8a9af --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/pjmedia-codec/ilbc.c @@ -0,0 +1,670 @@ +/* $Id: ilbc.c 2792 2009-06-24 15:46:49Z nanang $ */ +/* + * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com) + * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#include <pjmedia-codec/ilbc.h> +#include <pjmedia-codec/types.h> +#include <pjmedia/codec.h> +#include <pjmedia/errno.h> +#include <pjmedia/endpoint.h> +#include <pjmedia/plc.h> +#include <pjmedia/port.h> +#include <pjmedia/silencedet.h> +#include <pj/assert.h> +#include <pj/log.h> +#include <pj/pool.h> +#include <pj/string.h> +#include <pj/os.h> +#include "../../third_party/ilbc/iLBC_encode.h" +#include "../../third_party/ilbc/iLBC_decode.h" + + +/* + * Only build this file if PJMEDIA_HAS_ILBC_CODEC != 0 + */ +#if defined(PJMEDIA_HAS_ILBC_CODEC) && PJMEDIA_HAS_ILBC_CODEC != 0 + + +#define THIS_FILE "ilbc.c" +#define CLOCK_RATE 8000 +#define DEFAULT_MODE 30 + + +/* Prototypes for iLBC factory */ +static pj_status_t ilbc_test_alloc(pjmedia_codec_factory *factory, + const pjmedia_codec_info *id ); +static pj_status_t ilbc_default_attr(pjmedia_codec_factory *factory, + const pjmedia_codec_info *id, + pjmedia_codec_param *attr ); +static pj_status_t ilbc_enum_codecs(pjmedia_codec_factory *factory, + unsigned *count, + pjmedia_codec_info codecs[]); +static pj_status_t ilbc_alloc_codec(pjmedia_codec_factory *factory, + const pjmedia_codec_info *id, + pjmedia_codec **p_codec); +static pj_status_t ilbc_dealloc_codec(pjmedia_codec_factory *factory, + pjmedia_codec *codec ); + +/* Prototypes for iLBC implementation. */ +static pj_status_t ilbc_codec_init(pjmedia_codec *codec, + pj_pool_t *pool ); +static pj_status_t ilbc_codec_open(pjmedia_codec *codec, + pjmedia_codec_param *attr ); +static pj_status_t ilbc_codec_close(pjmedia_codec *codec ); +static pj_status_t ilbc_codec_modify(pjmedia_codec *codec, + const pjmedia_codec_param *attr ); +static pj_status_t ilbc_codec_parse(pjmedia_codec *codec, + void *pkt, + pj_size_t pkt_size, + const pj_timestamp *ts, + unsigned *frame_cnt, + pjmedia_frame frames[]); +static pj_status_t ilbc_codec_encode(pjmedia_codec *codec, + const struct pjmedia_frame *input, + unsigned output_buf_len, + struct pjmedia_frame *output); +static pj_status_t ilbc_codec_decode(pjmedia_codec *codec, + const struct pjmedia_frame *input, + unsigned output_buf_len, + struct pjmedia_frame *output); +static pj_status_t ilbc_codec_recover(pjmedia_codec *codec, + unsigned output_buf_len, + struct pjmedia_frame *output); + +/* Definition for iLBC codec operations. */ +static pjmedia_codec_op ilbc_op = +{ + &ilbc_codec_init, + &ilbc_codec_open, + &ilbc_codec_close, + &ilbc_codec_modify, + &ilbc_codec_parse, + &ilbc_codec_encode, + &ilbc_codec_decode, + &ilbc_codec_recover +}; + +/* Definition for iLBC codec factory operations. */ +static pjmedia_codec_factory_op ilbc_factory_op = +{ + &ilbc_test_alloc, + &ilbc_default_attr, + &ilbc_enum_codecs, + &ilbc_alloc_codec, + &ilbc_dealloc_codec +}; + +/* iLBC factory */ +static struct ilbc_factory +{ + pjmedia_codec_factory base; + pjmedia_endpt *endpt; + + int mode; + int bps; +} ilbc_factory; + + +/* iLBC codec private data. */ +struct ilbc_codec +{ + pjmedia_codec base; + pj_pool_t *pool; + char obj_name[PJ_MAX_OBJ_NAME]; + pjmedia_silence_det *vad; + pj_bool_t vad_enabled; + pj_bool_t plc_enabled; + pj_timestamp last_tx; + + pj_bool_t enc_ready; + iLBC_Enc_Inst_t enc; + unsigned enc_frame_size; + unsigned enc_samples_per_frame; + float enc_block[BLOCKL_MAX]; + + pj_bool_t dec_ready; + iLBC_Dec_Inst_t dec; + unsigned dec_frame_size; + unsigned dec_samples_per_frame; + float dec_block[BLOCKL_MAX]; +}; + +static pj_str_t STR_MODE = {"mode", 4}; + +/* + * Initialize and register iLBC codec factory to pjmedia endpoint. + */ +PJ_DEF(pj_status_t) pjmedia_codec_ilbc_init( pjmedia_endpt *endpt, + int mode ) +{ + pjmedia_codec_mgr *codec_mgr; + pj_status_t status; + + PJ_ASSERT_RETURN(endpt != NULL, PJ_EINVAL); + PJ_ASSERT_RETURN(mode==0 || mode==20 || mode==30, PJ_EINVAL); + + /* Create iLBC codec factory. */ + ilbc_factory.base.op = &ilbc_factory_op; + ilbc_factory.base.factory_data = NULL; + ilbc_factory.endpt = endpt; + + if (mode == 0) + mode = DEFAULT_MODE; + + ilbc_factory.mode = mode; + + if (mode == 20) { + ilbc_factory.bps = 15200; + } else { + ilbc_factory.bps = 13333; + } + + /* Get the codec manager. */ + codec_mgr = pjmedia_endpt_get_codec_mgr(endpt); + if (!codec_mgr) + return PJ_EINVALIDOP; + + /* Register codec factory to endpoint. */ + status = pjmedia_codec_mgr_register_factory(codec_mgr, + &ilbc_factory.base); + if (status != PJ_SUCCESS) + return status; + + + /* Done. */ + return PJ_SUCCESS; +} + + + +/* + * Unregister iLBC codec factory from pjmedia endpoint and deinitialize + * the iLBC codec library. + */ +PJ_DEF(pj_status_t) pjmedia_codec_ilbc_deinit(void) +{ + pjmedia_codec_mgr *codec_mgr; + pj_status_t status; + + + /* Get the codec manager. */ + codec_mgr = pjmedia_endpt_get_codec_mgr(ilbc_factory.endpt); + if (!codec_mgr) + return PJ_EINVALIDOP; + + /* Unregister iLBC codec factory. */ + status = pjmedia_codec_mgr_unregister_factory(codec_mgr, + &ilbc_factory.base); + + return status; +} + +/* + * Check if factory can allocate the specified codec. + */ +static pj_status_t ilbc_test_alloc( pjmedia_codec_factory *factory, + const pjmedia_codec_info *info ) +{ + const pj_str_t ilbc_tag = { "iLBC", 4}; + + PJ_UNUSED_ARG(factory); + PJ_ASSERT_RETURN(factory==&ilbc_factory.base, PJ_EINVAL); + + + /* Type MUST be audio. */ + if (info->type != PJMEDIA_TYPE_AUDIO) + return PJMEDIA_CODEC_EUNSUP; + + /* Check encoding name. */ + if (pj_stricmp(&info->encoding_name, &ilbc_tag) != 0) + return PJMEDIA_CODEC_EUNSUP; + + /* Check clock-rate */ + if (info->clock_rate != CLOCK_RATE) + return PJMEDIA_CODEC_EUNSUP; + + /* Channel count must be one */ + if (info->channel_cnt != 1) + return PJMEDIA_CODEC_EUNSUP; + + /* Yes, this should be iLBC! */ + return PJ_SUCCESS; +} + + +/* + * Generate default attribute. + */ +static pj_status_t ilbc_default_attr (pjmedia_codec_factory *factory, + const pjmedia_codec_info *id, + pjmedia_codec_param *attr ) +{ + PJ_UNUSED_ARG(factory); + PJ_ASSERT_RETURN(factory==&ilbc_factory.base, PJ_EINVAL); + + PJ_UNUSED_ARG(id); + PJ_ASSERT_RETURN(pj_stricmp2(&id->encoding_name, "iLBC")==0, PJ_EINVAL); + + pj_bzero(attr, sizeof(pjmedia_codec_param)); + + attr->info.clock_rate = CLOCK_RATE; + attr->info.channel_cnt = 1; + attr->info.avg_bps = ilbc_factory.bps; + attr->info.max_bps = 15200; + attr->info.pcm_bits_per_sample = 16; + attr->info.frm_ptime = (short)ilbc_factory.mode; + attr->info.pt = PJMEDIA_RTP_PT_ILBC; + + attr->setting.frm_per_pkt = 1; + attr->setting.vad = 1; + attr->setting.plc = 1; + attr->setting.penh = 1; + attr->setting.dec_fmtp.cnt = 1; + attr->setting.dec_fmtp.param[0].name = STR_MODE; + if (ilbc_factory.mode == 30) + attr->setting.dec_fmtp.param[0].val = pj_str("30"); + else + attr->setting.dec_fmtp.param[0].val = pj_str("20"); + + return PJ_SUCCESS; +} + +/* + * Enum codecs supported by this factory (i.e. only iLBC!). + */ +static pj_status_t ilbc_enum_codecs(pjmedia_codec_factory *factory, + unsigned *count, + pjmedia_codec_info codecs[]) +{ + PJ_UNUSED_ARG(factory); + PJ_ASSERT_RETURN(factory==&ilbc_factory.base, PJ_EINVAL); + + PJ_ASSERT_RETURN(codecs && *count > 0, PJ_EINVAL); + + pj_bzero(&codecs[0], sizeof(pjmedia_codec_info)); + + codecs[0].encoding_name = pj_str("iLBC"); + codecs[0].pt = PJMEDIA_RTP_PT_ILBC; + codecs[0].type = PJMEDIA_TYPE_AUDIO; + codecs[0].clock_rate = 8000; + codecs[0].channel_cnt = 1; + + *count = 1; + + return PJ_SUCCESS; +} + +/* + * Allocate a new iLBC codec instance. + */ +static pj_status_t ilbc_alloc_codec(pjmedia_codec_factory *factory, + const pjmedia_codec_info *id, + pjmedia_codec **p_codec) +{ + pj_pool_t *pool; + struct ilbc_codec *codec; + + PJ_ASSERT_RETURN(factory && id && p_codec, PJ_EINVAL); + PJ_ASSERT_RETURN(factory == &ilbc_factory.base, PJ_EINVAL); + + pool = pjmedia_endpt_create_pool(ilbc_factory.endpt, "iLBC%p", + 2000, 2000); + PJ_ASSERT_RETURN(pool != NULL, PJ_ENOMEM); + + codec = PJ_POOL_ZALLOC_T(pool, struct ilbc_codec); + codec->base.op = &ilbc_op; + codec->base.factory = factory; + codec->pool = pool; + + pj_ansi_snprintf(codec->obj_name, sizeof(codec->obj_name), + "ilbc%p", codec); + + *p_codec = &codec->base; + return PJ_SUCCESS; +} + + +/* + * Free codec. + */ +static pj_status_t ilbc_dealloc_codec( pjmedia_codec_factory *factory, + pjmedia_codec *codec ) +{ + struct ilbc_codec *ilbc_codec; + + PJ_ASSERT_RETURN(factory && codec, PJ_EINVAL); + PJ_UNUSED_ARG(factory); + PJ_ASSERT_RETURN(factory == &ilbc_factory.base, PJ_EINVAL); + + ilbc_codec = (struct ilbc_codec*) codec; + pj_pool_release(ilbc_codec->pool); + + return PJ_SUCCESS; +} + +/* + * Init codec. + */ +static pj_status_t ilbc_codec_init(pjmedia_codec *codec, + pj_pool_t *pool ) +{ + PJ_UNUSED_ARG(codec); + PJ_UNUSED_ARG(pool); + return PJ_SUCCESS; +} + +/* + * Open codec. + */ +static pj_status_t ilbc_codec_open(pjmedia_codec *codec, + pjmedia_codec_param *attr ) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + pj_status_t status; + unsigned i, dec_fmtp_mode = 0, enc_fmtp_mode = 0; + + pj_assert(ilbc_codec != NULL); + pj_assert(ilbc_codec->enc_ready == PJ_FALSE && + ilbc_codec->dec_ready == PJ_FALSE); + + /* Get decoder mode */ + for (i = 0; i < attr->setting.dec_fmtp.cnt; ++i) { + if (pj_stricmp(&attr->setting.dec_fmtp.param[i].name, &STR_MODE) == 0) + { + dec_fmtp_mode = (unsigned) + pj_strtoul(&attr->setting.dec_fmtp.param[i].val); + break; + } + } + + /* Decoder mode must be set */ + PJ_ASSERT_RETURN(dec_fmtp_mode == 20 || dec_fmtp_mode == 30, + PJMEDIA_CODEC_EINMODE); + + /* Get encoder mode */ + for (i = 0; i < attr->setting.enc_fmtp.cnt; ++i) { + if (pj_stricmp(&attr->setting.enc_fmtp.param[i].name, &STR_MODE) == 0) + { + enc_fmtp_mode = (unsigned) + pj_strtoul(&attr->setting.enc_fmtp.param[i].val); + break; + } + } + + /* The enc mode must be set in the attribute + * (from the mode parameter in fmtp attribute in the SDP + * received from remote) + */ + if (enc_fmtp_mode == 0) + enc_fmtp_mode = dec_fmtp_mode; + + PJ_ASSERT_RETURN(enc_fmtp_mode==20 || + enc_fmtp_mode==30, PJMEDIA_CODEC_EINMODE); + + /* Update enc_ptime in the param */ + if (enc_fmtp_mode != dec_fmtp_mode) { + attr->info.enc_ptime = (pj_uint16_t)enc_fmtp_mode; + } else { + attr->info.enc_ptime = 0; + } + + /* Create enc */ + ilbc_codec->enc_frame_size = initEncode(&ilbc_codec->enc, enc_fmtp_mode); + ilbc_codec->enc_samples_per_frame = CLOCK_RATE * enc_fmtp_mode / 1000; + ilbc_codec->enc_ready = PJ_TRUE; + + /* Create decoder */ + ilbc_codec->dec_samples_per_frame = initDecode(&ilbc_codec->dec, + dec_fmtp_mode, + attr->setting.penh); + if (dec_fmtp_mode == 20) + ilbc_codec->dec_frame_size = 38; + else if (dec_fmtp_mode == 30) + ilbc_codec->dec_frame_size = 50; + else { + pj_assert(!"Invalid iLBC mode"); + ilbc_codec->dec_frame_size = ilbc_codec->enc_frame_size; + } + ilbc_codec->dec_ready = PJ_TRUE; + + /* Save plc flags */ + ilbc_codec->plc_enabled = (attr->setting.plc != 0); + + /* Create silence detector. */ + ilbc_codec->vad_enabled = (attr->setting.vad != 0); + status = pjmedia_silence_det_create(ilbc_codec->pool, CLOCK_RATE, + ilbc_codec->enc_samples_per_frame, + &ilbc_codec->vad); + if (status != PJ_SUCCESS) + return status; + + /* Init last_tx (not necessary because of zalloc, but better + * be safe in case someone remove zalloc later. + */ + pj_set_timestamp32(&ilbc_codec->last_tx, 0, 0); + + PJ_LOG(5,(ilbc_codec->obj_name, + "iLBC codec opened, encoder mode=%d, decoder mode=%d", + enc_fmtp_mode, dec_fmtp_mode)); + + return PJ_SUCCESS; +} + + +/* + * Close codec. + */ +static pj_status_t ilbc_codec_close( pjmedia_codec *codec ) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + + PJ_UNUSED_ARG(codec); + + PJ_LOG(5,(ilbc_codec->obj_name, "iLBC codec closed")); + + return PJ_SUCCESS; +} + +/* + * Modify codec settings. + */ +static pj_status_t ilbc_codec_modify(pjmedia_codec *codec, + const pjmedia_codec_param *attr ) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + + ilbc_codec->plc_enabled = (attr->setting.plc != 0); + ilbc_codec->vad_enabled = (attr->setting.vad != 0); + + return PJ_SUCCESS; +} + +/* + * Get frames in the packet. + */ +static pj_status_t ilbc_codec_parse( pjmedia_codec *codec, + void *pkt, + pj_size_t pkt_size, + const pj_timestamp *ts, + unsigned *frame_cnt, + pjmedia_frame frames[]) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + unsigned count; + + PJ_ASSERT_RETURN(frame_cnt, PJ_EINVAL); + + count = 0; + while (pkt_size >= ilbc_codec->dec_frame_size && count < *frame_cnt) { + frames[count].type = PJMEDIA_FRAME_TYPE_AUDIO; + frames[count].buf = pkt; + frames[count].size = ilbc_codec->dec_frame_size; + frames[count].timestamp.u64 = ts->u64 + count * + ilbc_codec->dec_samples_per_frame; + + pkt = ((char*)pkt) + ilbc_codec->dec_frame_size; + pkt_size -= ilbc_codec->dec_frame_size; + + ++count; + } + + *frame_cnt = count; + return PJ_SUCCESS; +} + +/* + * Encode frame. + */ +static pj_status_t ilbc_codec_encode(pjmedia_codec *codec, + const struct pjmedia_frame *input, + unsigned output_buf_len, + struct pjmedia_frame *output) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + pj_int16_t *pcm_in; + unsigned nsamples; + + pj_assert(ilbc_codec && input && output); + + pcm_in = (pj_int16_t*)input->buf; + nsamples = input->size >> 1; + + PJ_ASSERT_RETURN(nsamples % ilbc_codec->enc_samples_per_frame == 0, + PJMEDIA_CODEC_EPCMFRMINLEN); + PJ_ASSERT_RETURN(output_buf_len >= ilbc_codec->enc_frame_size * nsamples / + ilbc_codec->enc_samples_per_frame, + PJMEDIA_CODEC_EFRMTOOSHORT); + + /* Detect silence */ + if (ilbc_codec->vad_enabled) { + pj_bool_t is_silence; + pj_int32_t silence_period; + + silence_period = pj_timestamp_diff32(&ilbc_codec->last_tx, + &input->timestamp); + + is_silence = pjmedia_silence_det_detect(ilbc_codec->vad, + (const pj_int16_t*)input->buf, + (input->size >> 1), + NULL); + if (is_silence && + (PJMEDIA_CODEC_MAX_SILENCE_PERIOD == -1 || + silence_period < PJMEDIA_CODEC_MAX_SILENCE_PERIOD*8000/1000)) + { + output->type = PJMEDIA_FRAME_TYPE_NONE; + output->buf = NULL; + output->size = 0; + output->timestamp = input->timestamp; + return PJ_SUCCESS; + } else { + ilbc_codec->last_tx = input->timestamp; + } + } + + /* Encode */ + output->size = 0; + while (nsamples >= ilbc_codec->enc_samples_per_frame) { + unsigned i; + + /* Convert to float */ + for (i=0; i<ilbc_codec->enc_samples_per_frame; ++i) { + ilbc_codec->enc_block[i] = (float) (*pcm_in++); + } + + iLBC_encode((unsigned char *)output->buf + output->size, + ilbc_codec->enc_block, + &ilbc_codec->enc); + + output->size += ilbc_codec->enc.no_of_bytes; + nsamples -= ilbc_codec->enc_samples_per_frame; + } + + output->type = PJMEDIA_FRAME_TYPE_AUDIO; + output->timestamp = input->timestamp; + + return PJ_SUCCESS; +} + +/* + * Decode frame. + */ +static pj_status_t ilbc_codec_decode(pjmedia_codec *codec, + const struct pjmedia_frame *input, + unsigned output_buf_len, + struct pjmedia_frame *output) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + unsigned i; + + pj_assert(ilbc_codec != NULL); + PJ_ASSERT_RETURN(input && output, PJ_EINVAL); + + if (output_buf_len < (ilbc_codec->dec_samples_per_frame << 1)) + return PJMEDIA_CODEC_EPCMTOOSHORT; + + if (input->size != ilbc_codec->dec_frame_size) + return PJMEDIA_CODEC_EFRMINLEN; + + /* Decode to temporary buffer */ + iLBC_decode(ilbc_codec->dec_block, (unsigned char*) input->buf, + &ilbc_codec->dec, 1); + + /* Convert decodec samples from float to short */ + for (i=0; i<ilbc_codec->dec_samples_per_frame; ++i) { + ((short*)output->buf)[i] = (short)ilbc_codec->dec_block[i]; + } + output->size = (ilbc_codec->dec_samples_per_frame << 1); + output->type = PJMEDIA_FRAME_TYPE_AUDIO; + output->timestamp = input->timestamp; + + return PJ_SUCCESS; +} + + +/* + * Recover lost frame. + */ +static pj_status_t ilbc_codec_recover(pjmedia_codec *codec, + unsigned output_buf_len, + struct pjmedia_frame *output) +{ + struct ilbc_codec *ilbc_codec = (struct ilbc_codec*)codec; + unsigned i; + + pj_assert(ilbc_codec != NULL); + PJ_ASSERT_RETURN(output, PJ_EINVAL); + + if (output_buf_len < (ilbc_codec->dec_samples_per_frame << 1)) + return PJMEDIA_CODEC_EPCMTOOSHORT; + + /* Decode to temporary buffer */ + iLBC_decode(ilbc_codec->dec_block, NULL, &ilbc_codec->dec, 0); + + /* Convert decodec samples from float to short */ + for (i=0; i<ilbc_codec->dec_samples_per_frame; ++i) { + ((short*)output->buf)[i] = (short)ilbc_codec->dec_block[i]; + } + output->size = (ilbc_codec->dec_samples_per_frame << 1); + output->type = PJMEDIA_FRAME_TYPE_AUDIO; + + return PJ_SUCCESS; +} + + +#endif /* PJMEDIA_HAS_ILBC_CODEC */ + diff --git a/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/test/mips_test.c b/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/test/mips_test.c index bb413a7ec395d123ab72ec291c8af88318c49201..b4e738d31c3a210e1862e804ac199a25db58526c 100644 --- a/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/test/mips_test.c +++ b/sflphone-common/libs/pjproject-1.0.3/pjmedia/src/test/mips_test.c @@ -2278,7 +2278,7 @@ int mips_test(void) { "codec encode/decode - G.711", OP_PUT, K8, &g711_encode_decode}, { "codec encode/decode - G.722", OP_PUT, K16, &g722_encode_decode}, { "codec encode/decode - GSM", OP_PUT, K8, &gsm_encode_decode}, - //{ "codec encode/decode - iLBC", OP_PUT, K8, &ilbc_encode_decode}, + { "codec encode/decode - iLBC", OP_PUT, K8, &ilbc_encode_decode}, { "codec encode/decode - Speex 8Khz", OP_PUT, K8, &speex8_encode_decode}, { "codec encode/decode - Speex 16Khz", OP_PUT, K16, &speex16_encode_decode}, #if defined(PJMEDIA_HAS_L16_CODEC) && PJMEDIA_HAS_L16_CODEC!=0 diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/Makefile b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..50b4ab7e7b7055b1555d56fab0b36a9565a17bdc --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/Makefile @@ -0,0 +1,65 @@ +include ../../../build.mak +include ../../../build/common.mak + +export LIBDIR := ../../lib + +RULES_MAK := $(PJDIR)/build/rules.mak + +export ILBC_LIB := ../../lib/libilbccodec-$(TARGET_NAME)$(LIBEXT) + +############################################################################### +# Gather all flags. +# +export _CFLAGS := $(CC_CFLAGS) $(OS_CFLAGS) $(HOST_CFLAGS) $(M_CFLAGS) \ + $(CFLAGS) $(CC_INC). $(CC_INC)../../ilbc \ + $(CC_INC)../../../pjlib/include +export _CXXFLAGS:= $(_CFLAGS) $(CC_CXXFLAGS) $(OS_CXXFLAGS) $(M_CXXFLAGS) \ + $(HOST_CXXFLAGS) $(CXXFLAGS) +export _LDFLAGS := $(CC_LDFLAGS) $(OS_LDFLAGS) $(M_LDFLAGS) $(HOST_LDFLAGS) \ + $(LDFLAGS) + +export ILBC_SRCDIR = ../../ilbc +export ILBC_OBJS = FrameClassify.o LPCdecode.o LPCencode.o \ + StateConstructW.o StateSearchW.o anaFilter.o \ + constants.o createCB.o doCPLC.o \ + enhancer.o filter.o gainquant.o \ + getCBvec.o helpfun.o hpInput.o \ + hpOutput.o iCBConstruct.o iCBSearch.o \ + iLBC_decode.o iLBC_encode.o lsf.o \ + packing.o syntFilter.o +export ILBC_CFLAGS = $(_CFLAGS) + + +export CC_OUT CC AR RANLIB HOST_MV HOST_RM HOST_RMDIR HOST_MKDIR OBJEXT LD LDOUT +############################################################################### +# Main entry +# +# $(TARGET) is defined in os-$(OS_NAME).mak file in current directory. +# +TARGETS := libilbccodec + +all: $(TARGETS) + +doc: + cd .. && doxygen docs/doxygen.cfg + +dep: depend +distclean: realclean + +.PHONY: dep depend libilbccodec clean realclean distclean + +libilbccodec: + $(MAKE) -f $(RULES_MAK) APP=ILBC app=libilbccodec $(ILBC_LIB) + +clean print_lib: + $(MAKE) -f $(RULES_MAK) APP=ILBC app=libilbccodec $@ + +realclean: + $(subst @@,$(subst /,$(HOST_PSEP),.ilbc-$(TARGET_NAME).depend),$(HOST_RMR)) + + $(MAKE) -f $(RULES_MAK) APP=ILBC app=libilbccodec $@ + +depend: + $(MAKE) -f $(RULES_MAK) APP=ILBC app=libilbccodec $@ + + diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.dsp b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.dsp new file mode 100644 index 0000000000000000000000000000000000000000..679667b73e956aff50593d28a7bd5a8c13ae1ed4 --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.dsp @@ -0,0 +1,282 @@ +# Microsoft Developer Studio Project File - Name="libilbccodec" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=libilbccodec - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libilbccodec.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libilbccodec.mak" CFG="libilbccodec - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libilbccodec - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "libilbccodec - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "libilbccodec - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\ilbc-i386-win32-vc6-release" +# PROP BASE Intermediate_Dir "output\ilbc-i386-win32-vc6-release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\ilbc-i386-win32-vc6-release" +# PROP Intermediate_Dir "output\ilbc-i386-win32-vc6-release" +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo /out:"..\..\lib\libilbccodec-i386-win32-vc6-release.lib" + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\ilbc-i386-win32-vc6-debug" +# PROP BASE Intermediate_Dir "output\ilbc-i386-win32-vc6-debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\ilbc-i386-win32-vc6-debug" +# PROP Intermediate_Dir "output\ilbc-i386-win32-vc6-debug" +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo /out:"..\..\lib\libilbccodec-i386-win32-vc6-debug.lib" + +!ENDIF + +# Begin Target + +# Name "libilbccodec - Win32 Release" +# Name "libilbccodec - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=..\..\ilbc\anaFilter.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\constants.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\createCB.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\doCPLC.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\enhancer.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\filter.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\FrameClassify.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\gainquant.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\getCBvec.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\helpfun.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpInput.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpOutput.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBConstruct.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBSearch.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_decode.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_encode.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCdecode.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCencode.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\lsf.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\packing.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateConstructW.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateSearchW.c +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\syntFilter.c +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=..\..\ilbc\anaFilter.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\constants.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\createCB.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\doCPLC.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\enhancer.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\filter.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\FrameClassify.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\gainquant.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\getCBvec.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\helpfun.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpInput.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpOutput.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBConstruct.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBSearch.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_decode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_define.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_encode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCdecode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCencode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\lsf.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\packing.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateConstructW.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateSearchW.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\syntFilter.h +# End Source File +# End Group +# End Target +# End Project diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcp b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcp new file mode 100644 index 0000000000000000000000000000000000000000..c43b54f256f824d4b07f5da5e2e998074e9837f7 --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcp @@ -0,0 +1,5373 @@ +# Microsoft eMbedded Visual Tools Project File - Name="libilbccodec" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE x86) Static Library" 0x8304 +# TARGTYPE "Win32 (WCE MIPS16) Static Library" 0x8904 +# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604 +# TARGTYPE "Win32 (WCE MIPSII) Static Library" 0xa104 +# TARGTYPE "Win32 (WCE MIPSIV_FP) Static Library" 0x9204 +# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104 +# TARGTYPE "Win32 (WCE ARMV4) Static Library" 0xa304 +# TARGTYPE "Win32 (WCE ARMV4I) Static Library" 0xa504 +# TARGTYPE "Win32 (WCE emulator) Static Library" 0xa604 +# TARGTYPE "Win32 (WCE MIPSII_FP) Static Library" 0xa204 +# TARGTYPE "Win32 (WCE ARMV4T) Static Library" 0xa404 +# TARGTYPE "Win32 (WCE MIPSIV) Static Library" 0x9604 + +CFG=libilbccodec - Win32 (WCE MIPSII_FP) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libilbccodec.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libilbccodec.vcn" CFG="libilbccodec - Win32 (WCE MIPSII_FP) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libilbccodec - Win32 (WCE MIPSII_FP) Release" (based on "Win32 (WCE MIPSII_FP) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSII_FP) Debug" (based on "Win32 (WCE MIPSII_FP) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSII) Release" (based on "Win32 (WCE MIPSII) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSII) Debug" (based on "Win32 (WCE MIPSII) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSIV) Release" (based on "Win32 (WCE MIPSIV) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSIV) Debug" (based on "Win32 (WCE MIPSIV) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4I) Release" (based on "Win32 (WCE ARMV4I) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4I) Debug" (based on "Win32 (WCE ARMV4I) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSIV_FP) Release" (based on "Win32 (WCE MIPSIV_FP) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" (based on "Win32 (WCE MIPSIV_FP) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPS16) Release" (based on "Win32 (WCE MIPS16) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE MIPS16) Debug" (based on "Win32 (WCE MIPS16) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4T) Release" (based on "Win32 (WCE ARMV4T) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE ARMV4T) Debug" (based on "Win32 (WCE ARMV4T) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Static Library") +!MESSAGE "libilbccodec - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\MIPSII_FPRel" +# PROP BASE Intermediate_Dir "output\MIPSII_FPRel" +# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\MIPSII_FPRel" +# PROP Intermediate_Dir "output\MIPSII_FPRel" +# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE- /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE- /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\MIPSII_FPDbg" +# PROP BASE Intermediate_Dir "output\MIPSII_FPDbg" +# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\MIPSII_FPDbg" +# PROP Intermediate_Dir "output\MIPSII_FPDbg" +# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\MIPSIIRel" +# PROP BASE Intermediate_Dir "output\MIPSIIRel" +# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\MIPSIIRel" +# PROP Intermediate_Dir "output\MIPSIIRel" +# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\MIPSIIDbg" +# PROP BASE Intermediate_Dir "output\MIPSIIDbg" +# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\MIPSIIDbg" +# PROP Intermediate_Dir "output\MIPSIIDbg" +# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\SH4Rel" +# PROP BASE Intermediate_Dir "output\SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\SH4Rel" +# PROP Intermediate_Dir "output\SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\SH4Dbg" +# PROP BASE Intermediate_Dir "output\SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\SH4Dbg" +# PROP Intermediate_Dir "output\SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\SH3Rel" +# PROP BASE Intermediate_Dir "output\SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\SH3Rel" +# PROP Intermediate_Dir "output\SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\SH3Dbg" +# PROP BASE Intermediate_Dir "output\SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\SH3Dbg" +# PROP Intermediate_Dir "output\SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\MIPSIVRel" +# PROP BASE Intermediate_Dir "output\MIPSIVRel" +# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\MIPSIVRel" +# PROP Intermediate_Dir "output\MIPSIVRel" +# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\MIPSIVDbg" +# PROP BASE Intermediate_Dir "output\MIPSIVDbg" +# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\MIPSIVDbg" +# PROP Intermediate_Dir "output\MIPSIVDbg" +# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\emulatorRel" +# PROP BASE Intermediate_Dir "output\emulatorRel" +# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\emulatorRel" +# PROP Intermediate_Dir "output\emulatorRel" +# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\emulatorDbg" +# PROP BASE Intermediate_Dir "output\emulatorDbg" +# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\emulatorDbg" +# PROP Intermediate_Dir "output\emulatorDbg" +# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\ARMV4IRel" +# PROP BASE Intermediate_Dir "output\ARMV4IRel" +# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\ARMV4IRel" +# PROP Intermediate_Dir "output\ARMV4IRel" +# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\ARMV4IDbg" +# PROP BASE Intermediate_Dir "output\ARMV4IDbg" +# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\ARMV4IDbg" +# PROP Intermediate_Dir "output\ARMV4IDbg" +# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\MIPSIV_FPRel" +# PROP BASE Intermediate_Dir "output\MIPSIV_FPRel" +# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\MIPSIV_FPRel" +# PROP Intermediate_Dir "output\MIPSIV_FPRel" +# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\MIPSIV_FPDbg" +# PROP BASE Intermediate_Dir "output\MIPSIV_FPDbg" +# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\MIPSIV_FPDbg" +# PROP Intermediate_Dir "output\MIPSIV_FPDbg" +# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\ARMV4Rel" +# PROP BASE Intermediate_Dir "output\ARMV4Rel" +# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\ARMV4Rel" +# PROP Intermediate_Dir "output\ARMV4Rel" +# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\ARMV4Dbg" +# PROP BASE Intermediate_Dir "output\ARMV4Dbg" +# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\ARMV4Dbg" +# PROP Intermediate_Dir "output\ARMV4Dbg" +# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\MIPS16Rel" +# PROP BASE Intermediate_Dir "output\MIPS16Rel" +# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\MIPS16Rel" +# PROP Intermediate_Dir "output\MIPS16Rel" +# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\MIPS16Dbg" +# PROP BASE Intermediate_Dir "output\MIPS16Dbg" +# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\MIPS16Dbg" +# PROP Intermediate_Dir "output\MIPS16Dbg" +# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\ARMV4TRel" +# PROP BASE Intermediate_Dir "output\ARMV4TRel" +# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\ARMV4TRel" +# PROP Intermediate_Dir "output\ARMV4TRel" +# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clthumb.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\ARMV4TDbg" +# PROP BASE Intermediate_Dir "output\ARMV4TDbg" +# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\ARMV4TDbg" +# PROP Intermediate_Dir "output\ARMV4TDbg" +# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clthumb.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "output\X86Rel" +# PROP BASE Intermediate_Dir "output\X86Rel" +# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "output\X86Rel" +# PROP Intermediate_Dir "output\X86Rel" +# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c +# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "output\X86Dbg" +# PROP BASE Intermediate_Dir "output\X86Dbg" +# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "output\X86Dbg" +# PROP Intermediate_Dir "output\X86Dbg" +# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ENDIF + +# Begin Target + +# Name "libilbccodec - Win32 (WCE MIPSII_FP) Release" +# Name "libilbccodec - Win32 (WCE MIPSII_FP) Debug" +# Name "libilbccodec - Win32 (WCE MIPSII) Release" +# Name "libilbccodec - Win32 (WCE MIPSII) Debug" +# Name "libilbccodec - Win32 (WCE SH4) Release" +# Name "libilbccodec - Win32 (WCE SH4) Debug" +# Name "libilbccodec - Win32 (WCE SH3) Release" +# Name "libilbccodec - Win32 (WCE SH3) Debug" +# Name "libilbccodec - Win32 (WCE MIPSIV) Release" +# Name "libilbccodec - Win32 (WCE MIPSIV) Debug" +# Name "libilbccodec - Win32 (WCE emulator) Release" +# Name "libilbccodec - Win32 (WCE emulator) Debug" +# Name "libilbccodec - Win32 (WCE ARMV4I) Release" +# Name "libilbccodec - Win32 (WCE ARMV4I) Debug" +# Name "libilbccodec - Win32 (WCE MIPSIV_FP) Release" +# Name "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" +# Name "libilbccodec - Win32 (WCE ARMV4) Release" +# Name "libilbccodec - Win32 (WCE ARMV4) Debug" +# Name "libilbccodec - Win32 (WCE MIPS16) Release" +# Name "libilbccodec - Win32 (WCE MIPS16) Debug" +# Name "libilbccodec - Win32 (WCE ARMV4T) Release" +# Name "libilbccodec - Win32 (WCE ARMV4T) Debug" +# Name "libilbccodec - Win32 (WCE x86) Release" +# Name "libilbccodec - Win32 (WCE x86) Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=..\..\ilbc\anaFilter.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ANAFI=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\constants.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_CONST=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\createCB.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_CREAT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\doCPLC.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_DOCPL=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\enhancer.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ENHAN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\filter.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_FILTE=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\FrameClassify.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_FRAME=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\gainquant.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_GAINQ=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\getCBvec.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_GETCB=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\helpfun.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_HELPF=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpInput.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_HPINP=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpOutput.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_HPOUT=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBConstruct.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ICBCO=\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\getCBvec.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBSearch.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ICBSE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\createCB.h"\ + "..\..\ilbc\gainquant.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_decode.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ILBC_=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\doCPLC.h"\ + "..\..\ilbc\enhancer.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpOutput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCdecode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_encode.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_ILBC_E=\ + "..\..\ilbc\anaFilter.h"\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\FrameClassify.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\hpInput.h"\ + "..\..\ilbc\iCBConstruct.h"\ + "..\..\ilbc\iCBSearch.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\LPCencode.h"\ + "..\..\ilbc\packing.h"\ + "..\..\ilbc\StateConstructW.h"\ + "..\..\ilbc\StateSearchW.h"\ + "..\..\ilbc\syntFilter.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCdecode.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_LPCDE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCencode.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_LPCEN=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + "..\..\ilbc\lsf.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\lsf.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_LSF_C=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\packing.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_PACKI=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateConstructW.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_STATE=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateSearchW.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_STATES=\ + "..\..\ilbc\constants.h"\ + "..\..\ilbc\helpfun.h"\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\syntFilter.c + +!IF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH4) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE SH3) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE emulator) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Release" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ELSEIF "$(CFG)" == "libilbccodec - Win32 (WCE x86) Debug" + +DEP_CPP_SYNTF=\ + "..\..\ilbc\iLBC_define.h"\ + + +!ENDIF + +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=..\..\ilbc\anaFilter.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\constants.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\createCB.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\doCPLC.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\enhancer.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\filter.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\FrameClassify.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\gainquant.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\getCBvec.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\helpfun.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpInput.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\hpOutput.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBConstruct.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iCBSearch.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_decode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_define.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\iLBC_encode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCdecode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\LPCencode.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\lsf.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\packing.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateConstructW.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\StateSearchW.h +# End Source File +# Begin Source File + +SOURCE=..\..\ilbc\syntFilter.h +# End Source File +# End Group +# End Target +# End Project diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcproj b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcproj new file mode 100644 index 0000000000000000000000000000000000000000..2b788419977615a27d2e8422fc56b927f4fe5133 --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/ilbc/libilbccodec.vcproj @@ -0,0 +1,737 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="libilbccodec" + ProjectGUID="{B5FE16F8-3EDB-4110-BD80-B4238CC01E8D}" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + OutputDirectory=".\output\ilbc-i386-win32-vc8-debug" + IntermediateDirectory=".\output\ilbc-i386-win32-vc8-debug" + ConfigurationType="4" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="0" + PreprocessorDefinitions="WIN32;_DEBUG;_LIB" + MinimalRebuild="true" + BasicRuntimeChecks="3" + RuntimeLibrary="1" + PrecompiledHeaderFile=".\output\ilbc-i386-win32-vc8-debug/libilbccodec.pch" + AssemblerListingLocation=".\output\ilbc-i386-win32-vc8-debug/" + ObjectFile=".\output\ilbc-i386-win32-vc8-debug/" + ProgramDataBaseFileName=".\output\ilbc-i386-win32-vc8-debug/" + WarningLevel="3" + SuppressStartupBanner="true" + DebugInformationFormat="4" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="1033" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + OutputFile="..\..\lib\libilbccodec-i386-win32-vc8-debug.lib" + SuppressStartupBanner="true" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + SuppressStartupBanner="true" + OutputFile=".\output\ilbc-i386-win32-vc8-debug/libilbccodec.bsc" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + OutputDirectory=".\output\ilbc-i386-win32-vc8-release" + IntermediateDirectory=".\output\ilbc-i386-win32-vc8-release" + ConfigurationType="4" + InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" + UseOfMFC="0" + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + Optimization="2" + InlineFunctionExpansion="1" + PreprocessorDefinitions="WIN32;NDEBUG;_LIB" + StringPooling="true" + RuntimeLibrary="2" + EnableFunctionLevelLinking="true" + PrecompiledHeaderFile=".\output\ilbc-i386-win32-vc8-release/libilbccodec.pch" + AssemblerListingLocation=".\output\ilbc-i386-win32-vc8-release/" + ObjectFile=".\output\ilbc-i386-win32-vc8-release/" + ProgramDataBaseFileName=".\output\ilbc-i386-win32-vc8-release/" + WarningLevel="3" + SuppressStartupBanner="true" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="1033" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + OutputFile="..\..\lib\libilbccodec-i386-win32-vc8-release.lib" + SuppressStartupBanner="true" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + SuppressStartupBanner="true" + OutputFile=".\output\ilbc-i386-win32-vc8-release/libilbccodec.bsc" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="Source Files" + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + <File + RelativePath="..\..\ilbc\anaFilter.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\constants.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\createCB.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\doCPLC.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\enhancer.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\filter.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\FrameClassify.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\gainquant.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\getCBvec.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\helpfun.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\hpInput.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\hpOutput.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\iCBConstruct.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\iCBSearch.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\iLBC_decode.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\iLBC_encode.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\LPCdecode.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\LPCencode.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\lsf.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\packing.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\StateConstructW.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\StateSearchW.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\ilbc\syntFilter.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="" + /> + </FileConfiguration> + </File> + </Filter> + <Filter + Name="Header Files" + Filter="h;hpp;hxx;hm;inl" + > + <File + RelativePath="..\..\ilbc\anaFilter.h" + > + </File> + <File + RelativePath="..\..\ilbc\constants.h" + > + </File> + <File + RelativePath="..\..\ilbc\createCB.h" + > + </File> + <File + RelativePath="..\..\ilbc\doCPLC.h" + > + </File> + <File + RelativePath="..\..\ilbc\enhancer.h" + > + </File> + <File + RelativePath="..\..\ilbc\filter.h" + > + </File> + <File + RelativePath="..\..\ilbc\FrameClassify.h" + > + </File> + <File + RelativePath="..\..\ilbc\gainquant.h" + > + </File> + <File + RelativePath="..\..\ilbc\getCBvec.h" + > + </File> + <File + RelativePath="..\..\ilbc\helpfun.h" + > + </File> + <File + RelativePath="..\..\ilbc\hpInput.h" + > + </File> + <File + RelativePath="..\..\ilbc\hpOutput.h" + > + </File> + <File + RelativePath="..\..\ilbc\iCBConstruct.h" + > + </File> + <File + RelativePath="..\..\ilbc\iCBSearch.h" + > + </File> + <File + RelativePath="..\..\ilbc\iLBC_decode.h" + > + </File> + <File + RelativePath="..\..\ilbc\iLBC_define.h" + > + </File> + <File + RelativePath="..\..\ilbc\iLBC_encode.h" + > + </File> + <File + RelativePath="..\..\ilbc\LPCdecode.h" + > + </File> + <File + RelativePath="..\..\ilbc\LPCencode.h" + > + </File> + <File + RelativePath="..\..\ilbc\lsf.h" + > + </File> + <File + RelativePath="..\..\ilbc\packing.h" + > + </File> + <File + RelativePath="..\..\ilbc\StateConstructW.h" + > + </File> + <File + RelativePath="..\..\ilbc\StateSearchW.h" + > + </File> + <File + RelativePath="..\..\ilbc\syntFilter.h" + > + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak b/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak new file mode 100644 index 0000000000000000000000000000000000000000..16e37e22b0f30fdb29d2b9a6f62255d41e3bc2d0 --- /dev/null +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak @@ -0,0 +1,16 @@ + +ifneq (,1) +DIRS += gsm +endif + +ifneq (,1) +DIRS += ilbc +endif + +ifneq (,1) +DIRS += speex +endif + +ifneq ($(findstring pa,pa_unix),) +DIRS += portaudio +endif diff --git a/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak.in b/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak.in index e5385aa6a47fd7c6a7649860ffaa9c4def6a0d5a..94db5ac2fccfb456307a372bb3b52f3cea16c33a 100644 --- a/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak.in +++ b/sflphone-common/libs/pjproject-1.0.3/third_party/build/os-auto.mak.in @@ -3,6 +3,10 @@ ifneq (@ac_no_gsm_codec@,1) DIRS += gsm endif +ifneq (@ac_no_ilbc_codec@,1) +DIRS += ilbc +endif + ifneq (@ac_no_speex_codec@,1) DIRS += speex endif