~ubuntu-branches/ubuntu/feisty/gst-plugins-good0.10/feisty-security

« back to all changes in this revision

Viewing changes to gst/wavparse/gstwavparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-15 02:58:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060815025826-h1sa4q0uxwqgzwki
Tags: 0.10.4-0ubuntu1
* Sync with Debian (pkg-gstreamer SVN, rev 470):
  + debian/rules,
    debian/control.in:
    - Add a -dbg package again

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
typedef enum {
45
45
  GST_WAVPARSE_START,
46
46
  GST_WAVPARSE_HEADER,
47
 
  GST_WAVPARSE_DATA,
 
47
  GST_WAVPARSE_DATA
48
48
} GstWavParseState;
49
49
 
50
50
typedef struct _GstWavParse GstWavParse;
81
81
  guint16 blockalign;
82
82
  guint16 width;
83
83
  guint32 bps;
 
84
  guint32 fact;
84
85
 
85
86
  guint bytes_per_sample;
86
87