From 64085c20b4b20aeb0957ae5a0ba51206248913f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 23 Jan 2022 13:38:37 +0200 Subject: [PATCH] videodecoder: Fix property description for new properties Part-of: --- .../gst-plugins-base/gst-libs/gst/video/gstvideodecoder.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/video/gstvideodecoder.c b/subprojects/gst-plugins-base/gst-libs/gst/video/gstvideodecoder.c index bc952bb62e..f146fe3a8c 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/video/gstvideodecoder.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/video/gstvideodecoder.c @@ -694,8 +694,8 @@ gst_video_decoder_class_init (GstVideoDecoderClass * klass) g_object_class_install_property (gobject_class, PROP_AUTOMATIC_REQUEST_SYNC_POINTS, g_param_spec_boolean ("automatic-request-sync-points", - "Discard Corrupted Frames", - "Discard frames marked as corrupted instead of outputting them", + "Automatic Request Sync Points", + "Automatically request sync points when it would be useful", DEFAULT_AUTOMATIC_REQUEST_SYNC_POINTS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); @@ -710,8 +710,8 @@ gst_video_decoder_class_init (GstVideoDecoderClass * klass) g_object_class_install_property (gobject_class, PROP_AUTOMATIC_REQUEST_SYNC_POINT_FLAGS, g_param_spec_flags ("automatic-request-sync-point-flags", - "Discard Corrupted Frames", - "Discard frames marked as corrupted instead of outputting them", + "Automatic Request Sync Point Flags", + "Flags to use when automatically requesting sync points", GST_TYPE_VIDEO_DECODER_REQUEST_SYNC_POINT_FLAGS, DEFAULT_AUTOMATIC_REQUEST_SYNC_POINT_FLAGS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));