VS2008 project files.
[xiph/unicode.git] / speex / README.symbian
bloba4f8d95868b1a9b0615b0cb042e56a15120998cc
1 Using Speex on Symbian OS
2 Conrad Parker and Colin Ward, CSIRO Australia, July 2004
5 Introduction
6 ------------
8 The symbian/ directory contains the following files for Symbian's abuild tool:
10   bld.inf    Component definition file
11   speex.mmp  Project specification file
12   config.h   Configuration options for both emulator and device builds
15 Developing applications for libspeex for Symbian OS
16 ---------------------------------------------------
18      Any references to the statically defined SpeexMode structures must be
19      replaced by a call to a speex_lib_get_mode () for that mode.
21      * References to the statically defined array speex_mode_list[modeID]
22      must be replaced by a call to speex_lib_get_mode (modeID):
24 -      mode = speex_mode_list[modeID];
25 +      mode = speex_lib_get_mode (modeID);
27      * References to the statically defined mode structures must be replaced:
29        SpeexMode * mode1, * mode2, * mode3;
31 -      mode1 = &speex_nb_mode;
32 +      mode1 = speex_lib_get_mode (SPEEX_MODEID_NB);
34 -      mode2 = &speex_wb_mode;
35 +      mode2 = speex_lib_get_mode (SPEEX_MODEID_WB);
37 -      mode3 = &speex_uwb_mode;
38 +      mode3 = speex_lib_get_mode (SPEEX_MODEID_UWB);
40      Note that the constants SPEEX_MODEID_NB, SPEEX_MODEID_WB and
41      SPEEX_MODEID_UWB were introduced in libspeex 1.1.6, and are
42      defined in <speex/speex.h>. speex_lib_get_mode() was introduced
43      in libspeex 1.1.7 and is declared in <speex/speex.h>.