On Ready to Paused the internal state was set to not setup. Fix

Original commit message from CVS:
On Ready to Paused the internal state was set to not setup. Fix
This commit is contained in:
Iain Holmes 2002-12-26 16:31:19 +00:00
parent df78fdf8af
commit 48eeb2ddd7

View file

@ -133,8 +133,8 @@ gst_wavenc_change_state (GstElement *element)
switch (GST_STATE_TRANSITION (element)) {
case GST_STATE_NULL_TO_READY:
case GST_STATE_READY_TO_PAUSED:
wavenc->setup = FALSE;
case GST_STATE_PAUSED_TO_READY:
wavenc->setup = FALSE;
break;
default:
@ -203,6 +203,7 @@ gst_wavenc_setup (GstWavEnc *wavenc)
wavenc->setup = TRUE;
return TRUE;
}
static GstPadConnectReturn
gst_wavenc_sinkconnect (GstPad *pad,
GstCaps *caps)