~ubuntu-branches/debian/lenny/wavpack/lenny

« back to all changes in this revision

Viewing changes to extra1.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-04-24 20:30:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424203048-lztb33vr33kd8uug
Tags: 4.32-2
Make sure that dh_makeshlibs of libwavpack0 is called before dh_shlibdeps
of wavpack to generate correct dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    uint32_t best_bits;
40
40
} WavpackExtraInfo;
41
41
 
42
 
extern const char default_terms [], high_terms [], fast_terms [];
 
42
extern const signed char default_terms [], high_terms [], fast_terms [];
43
43
 
44
44
static void decorr_mono_pass (int32_t *in_samples, int32_t *out_samples, uint32_t num_samples, struct decorr_pass *dpp, int dir)
45
45
{
367
367
#else
368
368
    uint32_t bits, cnt;
369
369
#endif
370
 
    const char *decorr_terms = default_terms, *tp;
 
370
    const signed char *decorr_terms = default_terms, *tp;
371
371
    WavpackExtraInfo info;
372
372
    int32_t *lptr;
373
373
    int i;