From f017f9a913060ce5154cfc651edbbc53cead09c3 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 2 Jan 2012 15:55:21 +0100 Subject: [PATCH] camerabin2: encoding profiles are objects in 0.11 --- gst/camerabin2/gstcamerabin2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c index ad22826f3b..cd21647fbf 100644 --- a/gst/camerabin2/gstcamerabin2.c +++ b/gst/camerabin2/gstcamerabin2.c @@ -755,7 +755,7 @@ gst_camera_bin_class_init (GstCameraBin2Class * klass) GST_TYPE_CAPS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_VIDEO_ENCODING_PROFILE, - g_param_spec_boxed ("video-profile", "Video Profile", + g_param_spec_object ("video-profile", "Video Profile", "The GstEncodingProfile to use for video recording. Audio is enabled " "when this profile supports audio.", GST_TYPE_ENCODING_PROFILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); @@ -828,7 +828,7 @@ gst_camera_bin_class_init (GstCameraBin2Class * klass) * getting the 2nd buffer. */ g_object_class_install_property (object_class, PROP_IMAGE_ENCODING_PROFILE, - g_param_spec_boxed ("image-profile", "Image Profile", + g_param_spec_object ("image-profile", "Image Profile", "The GstEncodingProfile to use for image captures.", GST_TYPE_ENCODING_PROFILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));