mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/raw1394/gstdv1394src.c: Reset negotiated state on PAUSED->READY.
Original commit message from CVS: * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state): Reset negotiated state on PAUSED->READY.
This commit is contained in:
parent
38253a1bc8
commit
4bcb2bcb29
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
|
||||
Reset negotiated state on PAUSED->READY.
|
||||
|
||||
2005-02-02 David Schleef <ds@schleef.org>
|
||||
|
||||
* configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
|
||||
|
|
|
@ -620,6 +620,9 @@ gst_dv1394src_change_state (GstElement * element)
|
|||
}
|
||||
}
|
||||
break;
|
||||
case GST_STATE_PAUSED_TO_READY:
|
||||
dv1394src->negotiated = FALSE;
|
||||
break;
|
||||
case GST_STATE_READY_TO_NULL:
|
||||
if (dv1394src->use_avc) {
|
||||
/* stop the VCR */
|
||||
|
|
Loading…
Reference in a new issue