mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
Merge branch 'master' into 0.11
This commit is contained in:
commit
f08e247051
1 changed files with 7 additions and 1 deletions
|
@ -157,7 +157,13 @@ gst_wrapper_camera_bin_reset_video_src_caps (GstWrapperCameraBinSrc * self,
|
|||
clock = gst_element_get_clock (self->src_vid_src);
|
||||
base_time = gst_element_get_base_time (self->src_vid_src);
|
||||
|
||||
gst_element_set_state (self->src_vid_src, GST_STATE_READY);
|
||||
/* Ideally, we should only need to get the source to READY here,
|
||||
* but it seems v4l2src isn't happy with this. Putting to NULL makes
|
||||
* it work.
|
||||
*
|
||||
* TODO fix this in v4l2src
|
||||
*/
|
||||
gst_element_set_state (self->src_vid_src, GST_STATE_NULL);
|
||||
set_capsfilter_caps (self, caps);
|
||||
|
||||
self->drop_newseg = TRUE;
|
||||
|
|
Loading…
Reference in a new issue