[Version] 1.20.0-11
[Issue Type] Bug fix
Change-Id: I75a392a7c3ae5ac6bd366924d73a670270f268d2
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
Name: %{_name}
Version: 1.20.0
-Release: 10
+Release: 11
Summary: Streaming-Media Framework Runtime
License: LGPL-2.0+
Group: Multimedia/Framework
cdata.set('TIZEN_FEATURE_V4L2_SKIP_ADD_COLORSPACE', true)
cdata.set('TIZEN_FEATURE_GST_MUX_ENHANCEMENT', true)
cdata.set('TIZEN_FEATURE_V4L2_DISABLE_COLORIMETRY', true)
+cdata.set('TIZEN_FEATURE_V4L2_DECODER_DRC_SUPPORT', true)
if get_option('tv-profile')
cdata.set('TIZEN_PROFILE_TV', true)
GST_LOG_OBJECT (decoder, "Process output buffer");
ret = gst_v4l2_buffer_pool_process (v4l2_pool, &buffer, NULL);
} while (ret == GST_V4L2_FLOW_CORRUPTED_BUFFER);
+#ifdef TIZEN_FEATURE_V4L2_DECODER_DRC_SUPPORT
+ if (ret == GST_V4L2_FLOW_RESOLUTION_CHANGE) {
+ GST_WARNING_OBJECT (decoder, "Received resolution change");
+ g_atomic_int_set (&self->capture_configuration_change, TRUE);
+ return;
+ }
+#endif
if (ret != GST_FLOW_OK)
goto beach;