~ubuntu-branches/ubuntu/dapper/speex/dapper-security

« back to all changes in this revision

Viewing changes to libspeex/stereo.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2005-12-07 23:22:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051207232221-nme7vf9m182p7dpe
Tags: 1.1.11.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
   speex_bits_pack(bits, tmp, 2);
79
79
}
80
80
 
81
 
void speex_encode_stereo_int(short *data, int frame_size, SpeexBits *bits)
 
81
void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits)
82
82
{
83
83
   int i, tmp;
84
84
   float e_left=0, e_right=0, e_tot=0;
144
144
   }
145
145
}
146
146
 
147
 
void speex_decode_stereo_int(short *data, int frame_size, SpeexStereoState *stereo)
 
147
void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *stereo)
148
148
{
149
149
   float balance, e_ratio;
150
150
   int i;