~ubuntu-branches/ubuntu/karmic/gst-plugins-bad0.10/karmic-proposed

« back to all changes in this revision

Viewing changes to ext/dts/gstdtsdec.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-06-18 13:47:30 UTC
  • mfrom: (18.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090618134730-us1fh0nxq8klrln1
Tags: 0.10.13-1
* New upstream release, 'Supersonic Rocket':
  + debian/patches/01_hdvparse-link-libm.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
  GstElement     element;
44
44
 
45
45
  /* pads */
46
 
  GstPad        *sinkpad;
47
 
  GstPad        *srcpad;
 
46
  GstPad        *sinkpad;
 
47
  GstPad        *srcpad;
 
48
  GstSegment     segment;
 
49
 
 
50
  gboolean       dvdmode;
 
51
  gboolean       sent_segment;
 
52
  gboolean       discont;
 
53
  gboolean       flag_update;
 
54
  gboolean       prev_flags;
48
55
 
49
56
  /* stream properties */
50
 
  gint           bit_rate;
51
 
  gint           sample_rate;
52
 
  gint           stream_channels;
53
 
  gint           request_channels;
54
 
  gint           using_channels;
 
57
  gint           bit_rate;
 
58
  gint           sample_rate;
 
59
  gint           stream_channels;
 
60
  gint           request_channels;
 
61
  gint           using_channels;
55
62
 
56
63
  /* decoding properties */
57
64
  sample_t       level;
63
70
#else
64
71
  dts_state_t   *state;
65
72
#endif
66
 
  gboolean       dvdmode;
 
73
 
67
74
 
68
75
  /* Data left over from the previous buffer */
69
 
  GstBuffer     *cache;
70
 
  
71
 
  /* keep track of time */
72
 
  GstClockTime  current_ts;
 
76
  GstBuffer             *cache;
 
77
  GstClockTime  time;
 
78
 
 
79
  /* reverse playback */
 
80
  GList *queued;
73
81
};
74
82
 
75
83
struct _GstDtsDecClass {