mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
queue2: Fix property name in the docs
temp-template, not temp-tmpl https://bugzilla.gnome.org/show_bug.cgi?id=677170
This commit is contained in:
parent
cd798a0a52
commit
cdb3087746
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@
|
||||||
* The default queue size limits are 100 buffers, 2MB of data, or
|
* The default queue size limits are 100 buffers, 2MB of data, or
|
||||||
* two seconds worth of data, whichever is reached first.
|
* two seconds worth of data, whichever is reached first.
|
||||||
*
|
*
|
||||||
* If you set temp-tmpl to a value such as /tmp/gstreamer-XXXXXX, the element
|
* If you set temp-template to a value such as /tmp/gstreamer-XXXXXX, the element
|
||||||
* will allocate a random free filename and buffer data in the file.
|
* will allocate a random free filename and buffer data in the file.
|
||||||
* By using this, it will buffer the entire stream data on the file independently
|
* By using this, it will buffer the entire stream data on the file independently
|
||||||
* of the queue size limits, they will only be used for buffering statistics.
|
* of the queue size limits, they will only be used for buffering statistics.
|
||||||
|
@ -3237,7 +3237,7 @@ gst_queue2_set_property (GObject * object,
|
||||||
case PROP_TEMP_LOCATION:
|
case PROP_TEMP_LOCATION:
|
||||||
g_free (queue->temp_location);
|
g_free (queue->temp_location);
|
||||||
queue->temp_location = g_value_dup_string (value);
|
queue->temp_location = g_value_dup_string (value);
|
||||||
/* you can set the property back to NULL to make it use the temp-tmpl
|
/* you can set the property back to NULL to make it use the temp-template
|
||||||
* property. */
|
* property. */
|
||||||
queue->temp_location_set = queue->temp_location != NULL;
|
queue->temp_location_set = queue->temp_location != NULL;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue