camerabin: Reset pre-night-mode stored fps when mode changes
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>
Fri, 24 Sep 2010 19:28:13 +0000 (16:28 -0300)
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>
Tue, 2 Nov 2010 12:16:45 +0000 (09:16 -0300)
When switching between video/still modes the pre-night-mode fps
should be reset to prevent it being used in the incorrect mode, causing
the videosource to fail configuring itself

gst/camerabin/gstcamerabin.c

index 2422d3b..0753167 100644 (file)
@@ -982,6 +982,11 @@ gst_camerabin_change_mode (GstCameraBin * camera, gint mode)
         mode, camera->mode);
     /* Interrupt ongoing capture */
     gst_camerabin_do_stop (camera);
+
+    /* reset night-mode stored values */
+    camera->pre_night_fps_n = 0;
+    camera->pre_night_fps_d = 1;
+
     camera->mode = mode;
     gst_element_get_state (GST_ELEMENT (camera), &state, &pending_state, 0);
     if (state == GST_STATE_PAUSED || state == GST_STATE_PLAYING ||