diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-02-05 15:57:59 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-02-06 10:47:20 +0000 |
commit | dc2c4840f9273d7f081e8a68c1d26435b75a830c (patch) | |
tree | ae490169199af26fb245f629e0d2a402ab164784 /gst/audiomixer | |
parent | a5002ea59dd749632305550e028204c6f4f8359f (diff) | |
download | gstreamer-plugins-bad-dc2c4840f9273d7f081e8a68c1d26435b75a830c.tar.gz |
audiomixer: remove now-unused base_time field in object structure
Diffstat (limited to 'gst/audiomixer')
-rw-r--r-- | gst/audiomixer/gstaudiomixer.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/audiomixer/gstaudiomixer.h b/gst/audiomixer/gstaudiomixer.h index f626d78c9..9e1458295 100644 --- a/gst/audiomixer/gstaudiomixer.h +++ b/gst/audiomixer/gstaudiomixer.h @@ -49,7 +49,7 @@ typedef struct _GstAudioMixerPadClass GstAudioMixerPadClass; * The audiomixer object structure. */ struct _GstAudioMixer { - GstAggregator element; + GstAggregator aggregator; /* the next are valid for both int and float */ GstAudioInfo info; @@ -69,8 +69,6 @@ struct _GstAudioMixer { GstClockTime alignment_threshold; GstClockTime discont_wait; - gint64 base_time; - /* Duration of every output buffer */ GstClockTime output_buffer_duration; }; |