mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate): No refcount leakage.
Original commit message from CVS: 2005-07-04 Andy Wingo <wingo@pobox.com> * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate): No refcount leakage.
This commit is contained in:
parent
1f40231de5
commit
3a7f5a2e06
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2005-07-04 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
|
||||
No refcount leakage.
|
||||
|
||||
* configure.ac: Enable -Werror.
|
||||
|
||||
* ext/theora/theoradec.c (theora_dec_src_getcaps):
|
||||
|
|
|
@ -513,7 +513,7 @@ gst_audio_convert_fixate (GstPad * pad, GstCaps * caps)
|
|||
GstAudioConvert *this;
|
||||
GstAudioConvertCaps try, ac_caps;
|
||||
|
||||
this = GST_AUDIO_CONVERT (gst_pad_get_parent (pad));
|
||||
this = GST_AUDIO_CONVERT (GST_PAD_PARENT (pad));
|
||||
otherpad = (pad == this->sink ? this->src : this->sink);
|
||||
ac_caps = (pad == this->sink ? this->srccaps : this->sinkcaps);
|
||||
|
||||
|
|
Loading…
Reference in a new issue