Advertisement
Guest User

Untitled

a guest
Jul 18th, 2014
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. make --no-print-directory all-am
  2. CC sbc/sbc.lo
  3. In file included from sbc/sbc.c:40:0:
  4. sbc/sbc_math.h:42:9: error: unknown type name 'int32_t'
  5. typedef int32_t sbc_fixed_t;
  6. ^
  7. In file included from sbc/sbc.c:41:0:
  8. sbc/sbc_tables.h:51:14: error: unknown type name 'int32_t'
  9. static const int32_t sbc_proto_4_40m0[] = {
  10. ^
  11. In file included from sbc/sbc.c:40:0:
  12. sbc/sbc_math.h:31:6: error: 'int32_t' undeclared here (not in a function)
  13. ((int32_t)(val)) >> (bits) : ((int32_t) (val)) / (1 << (bits)))
  14. ^
  15. sbc/sbc_tables.h:46:18: note: in expansion of macro 'ASR'
  16. #define SS4(val) ASR(val, SCALE_SPROTO4_TBL)
  17. ^
  18. sbc/sbc_tables.h:52:2: note: in expansion of macro 'SS4'
  19. SS4(0x00000000), SS4(0xffa6982f), SS4(0xfba93848), SS4(0x0456c7b8),
  20. ^
  21. In file included from sbc/sbc.c:41:0:
  22. sbc/sbc_tables.h:59:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'sbc_proto_4_40m1'
  23. static const int32_t sbc_proto_4_40m1[] = {
  24. ^
  25. sbc/sbc_tables.h:67:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'sbc_proto_8_80m0'
  26. static const int32_t sbc_proto_8_80m0[] = {
  27. ^
  28. sbc/sbc_tables.h:80:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'sbc_proto_8_80m1'
  29. static const int32_t sbc_proto_8_80m1[] = {
  30. ^
  31. sbc/sbc_tables.h:93:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'synmatrix4'
  32. static const int32_t synmatrix4[8][4] = {
  33. ^
  34. sbc/sbc_tables.h:104:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'synmatrix8'
  35. static const int32_t synmatrix8[16][8] = {
  36. ^
  37. sbc/sbc_tables.h:145:17: error: unknown type name 'int16_t'
  38. #define FIXED_T int16_t /* data type for fixed point constants */
  39. ^
  40. sbc/sbc_tables.h:162:14: note: in expansion of macro 'FIXED_T'
  41. static const FIXED_T _sbc_proto_fixed4[40] = {
  42. ^
  43. sbc/sbc_tables.h:160:13: error: expected ')' before numeric constant
  44. ((FIXED_A) 1 << (sizeof(FIXED_T) * CHAR_BIT - 1)) + 0.5)
  45. ^
  46. sbc/sbc_tables.h:161:14: note: in expansion of macro 'F_PROTO4'
  47. #define F(x) F_PROTO4(x)
  48. ^
  49. sbc/sbc_tables.h:163:2: note: in expansion of macro 'F'
  50. F(0.00000000E+00), F(5.36548976E-04),
  51. ^
  52. sbc/sbc_tables.h:159:40: error: invalid operands to binary * (have 'double' and 'const int *')
  53. #define F_PROTO4(x) (FIXED_A) ((x * 2) * \
  54. ^
  55. sbc/sbc_tables.h:161:14: note: in expansion of macro 'F_PROTO4'
  56. #define F(x) F_PROTO4(x)
  57. ^
  58. sbc/sbc_tables.h:163:2: note: in expansion of macro 'F'
  59. F(0.00000000E+00), F(5.36548976E-04),
  60. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement