~ubuntu-branches/ubuntu/warty/rat/warty

« back to all changes in this revision

Viewing changes to converter.c

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2003-03-17 10:53:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030317105339-ofgrcze3k1arljqz
Tags: 4.2.22-2
* debian/patches: Added 01-rat-manpage-fix, for fixing the error
  "unrecognised format `M' ". Maybe new man-db uncovered it (closes:
  #184338).
* Reordered debian/copyright and README.Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
#ifndef HIDE_SOURCE_STRINGS
11
11
static const char cvsid[] = 
12
 
        "$Id: converter.c,v 1.17 2001/01/17 23:35:38 ucacoxh Exp $";
 
12
        "$Id: converter.c,v 1.18 2002/03/15 17:57:17 ucacoxh Exp $";
13
13
#endif /* HIDE_SOURCE_STRINGS */
14
14
 
15
15
#include "config_unix.h"
238
238
        assert(c->magic == MAGIC);
239
239
#ifdef DEBUG
240
240
        {
241
 
                uint16_t sample_rate, channels;
 
241
                uint32_t sample_rate, channels;
242
242
                codec_get_native_info(in->id, &sample_rate, &channels);
243
243
                assert(sample_rate == c->cfmt->src_freq);
244
244
                assert(channels == c->cfmt->src_channels);