summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2012-01-02 15:55:21 +0100
committerEdward Hervey <edward.hervey@collabora.co.uk>2012-01-02 15:55:21 +0100
commitf017f9a913060ce5154cfc651edbbc53cead09c3 (patch)
tree91a7e8448696fa954297fa7d143ad4f1c983c622
parent3248694f1b4d95c2933409538a2381de8dcd1838 (diff)
camerabin2: encoding profiles are objects in 0.11
-rw-r--r--gst/camerabin2/gstcamerabin2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c
index ad22826f3..cd21647fb 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));