diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-11-01 23:54:05 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-11-01 23:54:05 +0200 |
commit | 1a1152fa032cbe9943a0549d2f42a15839afe1f6 (patch) | |
tree | 7d8dbd2179ff856094b99dcbdb01abf520db3f10 | |
parent | c56e1d18c11d49e10408073f70540769450c55cf (diff) |
value: Update GstValue table size for GValueArray
-rw-r--r-- | gst/gstvalue.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/gstvalue.c b/gst/gstvalue.c index cb2c90b16..954464190 100644 --- a/gst/gstvalue.c +++ b/gst/gstvalue.c @@ -912,7 +912,8 @@ gst_value_transform_array_string (const GValue * src_value, GValue * dest_value) } static void -gst_value_transform_g_value_array_string (const GValue * src_value, GValue * dest_value) +gst_value_transform_g_value_array_string (const GValue * src_value, + GValue * dest_value) { _gst_value_transform_g_value_array_string (src_value, dest_value, "< ", " >"); } @@ -6733,7 +6734,7 @@ G_STMT_START { \ /* These initial sizes are used for the tables * below, and save a couple of reallocs at startup */ -static const gint GST_VALUE_TABLE_DEFAULT_SIZE = 33; +static const gint GST_VALUE_TABLE_DEFAULT_SIZE = 34; static const gint GST_VALUE_UNION_TABLE_DEFAULT_SIZE = 3; static const gint GST_VALUE_INTERSECT_TABLE_DEFAULT_SIZE = 10; static const gint GST_VALUE_SUBTRACT_TABLE_DEFAULT_SIZE = 12; |