~ubuntu-branches/ubuntu/trusty/idjc/trusty

« back to all changes in this revision

Viewing changes to c/oggdec.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-12-03 16:33:59 UTC
  • mfrom: (0.2.6)
  • Revision ID: package-import@ubuntu.com-20111203163359-dq5fy9i756jpoy29
Tags: 0.8.6-1
* New upstream release.
* debian/control:
  - Wrap and sort.
  - Build-depend on autopoint.
  - Drop autotools-dev, unnecessary.
* Drop the whole patch set, none of them is still needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
   /* stream info */
45
45
 
46
46
   off_t  *bos_offset;      /* file position where each stream starts */
47
 
   int    *granule_count;   /* number of samples in this stream */
 
47
   unsigned *granule_count;   /* number of samples in this stream */
48
48
   int    *serial;          /* the ogg serial numbers */
49
 
   int    *samplerate;      /* sample rate per channel */
 
49
   unsigned *samplerate;    /* sample rate per channel */
50
50
   int    *channels;        /* number of audio channels */
51
51
   char  **artist;          /* artist and title metadata */
52
52
   char  **title;
71
71
void oggdecode_remove_new_oggpage_callback(struct oggdec_vars *self);
72
72
 
73
73
#ifdef HAVE_OGGFLAC
74
 
#ifdef FLAC_POST1_1_3
75
74
 
76
75
FLAC__StreamDecoderReadStatus oggflac_read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77
76
 
85
84
 
86
85
void oggflac_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus se, void *client_data);
87
86
 
88
 
#endif /* FLAC_POST1_1_3 */
89
87
#endif /* HAVE_OGGFLAC */