~ubuntu-branches/ubuntu/raring/mumble/raring

« back to all changes in this revision

Viewing changes to celt-0.7.0-src/libcelt/arch.h

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig
  • Date: 2010-01-09 19:28:50 UTC
  • mfrom: (9.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109192850-zs4g5vwrrpd71kob
Tags: 1.2.1-2
Fix upgrade failure when upgrading mumble-server directly from 1.1.x
to 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
   Redistribution and use in source and binary forms, with or without
11
11
   modification, are permitted provided that the following conditions
12
12
   are met:
13
 
 
 
13
   
14
14
   - Redistributions of source code must retain the above copyright
15
15
   notice, this list of conditions and the following disclaimer.
16
 
 
 
16
   
17
17
   - Redistributions in binary form must reproduce the above copyright
18
18
   notice, this list of conditions and the following disclaimer in the
19
19
   documentation and/or other materials provided with the distribution.
20
 
 
 
20
   
21
21
   - Neither the name of the Xiph.org Foundation nor the names of its
22
22
   contributors may be used to endorse or promote products derived from
23
23
   this software without specific prior written permission.
24
 
 
 
24
   
25
25
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26
26
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27
27
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
227
227
#if defined (CONFIG_TI_C54X) || defined (CONFIG_TI_C55X)
228
228
 
229
229
/* 2 on TI C5x DSP */
230
 
#define BYTES_PER_CHAR 2
 
230
#define BYTES_PER_CHAR 2 
231
231
#define BITS_PER_CHAR 16
232
232
#define LOG2_BITS_PER_CHAR 4
233
233
 
239
239
 
240
240
#endif /* !CONFIG_TI_C54X */
241
241
 
242
 
#ifndef GLOBAL_STACK_SIZE
 
242
#ifndef GLOBAL_STACK_SIZE 
243
243
#ifdef FIXED_POINT
244
244
#define GLOBAL_STACK_SIZE 100000
245
245
#else
246
246
#define GLOBAL_STACK_SIZE 100000
247
247
#endif
248
 
#endif
 
248
#endif 
249
249
 
250
250
#endif /* ARCH_H */