~ubuntu-branches/ubuntu/intrepid/amsn/intrepid

« back to all changes in this revision

Viewing changes to utils/tcl_siren/src/encoder.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2008-01-10 04:59:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080110045952-qc023vcuh3t40omr
Tags: 0.97+final-0ubuntu1
* Fake sync with debian due to version issue (LP: #179008)
  - Use Tcl8.5 and antialiased text (LP: #157839)
* Modify Maintainer value to match the DebianMaintainerField
  specification.
* debian/rules: .desktop file already moved in the correct path

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
        float context[320];
17
17
} * SirenEncoder;
18
18
 
19
 
 
20
 
extern SirenEncoder Siren7_NewEncoder(int sample_rate); /* MUST be 16000 to be compatible with MSN Voice clips (I think) */
 
19
/* sample_rate MUST be 16000 to be compatible with MSN Voice clips (I think) */
 
20
extern SirenEncoder Siren7_NewEncoder(int sample_rate);
21
21
extern void Siren7_CloseEncoder(SirenEncoder encoder);
22
22
extern int Siren7_EncodeFrame(SirenEncoder encoder, unsigned char *DataIn, unsigned char *DataOut);
23
23