mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
gst/iec958/ac3iec.c: Fix tests.
Original commit message from CVS: * gst/iec958/ac3iec.c: Fix tests.
This commit is contained in:
parent
8c6366e3c3
commit
681dbdf9a3
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-08-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/iec958/ac3iec.c:
|
||||
Fix tests.
|
||||
|
||||
2007-08-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* tests/check/Makefile.am:
|
||||
|
|
|
@ -434,8 +434,10 @@ ac3iec_change_state (GstElement * element, GstStateChange transition)
|
|||
break;
|
||||
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
||||
ac3p_clear (ac3iec->padder);
|
||||
gst_caps_unref (ac3iec->caps);
|
||||
ac3iec->caps = NULL;
|
||||
if (ac3iec->caps) {
|
||||
gst_caps_unref (ac3iec->caps);
|
||||
ac3iec->caps = NULL;
|
||||
}
|
||||
break;
|
||||
case GST_STATE_CHANGE_READY_TO_NULL:
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue