projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5270614
)
gst-inspect: Increase array size for printing rank name
author
Seungha Yang
<seungha.yang@navercorp.com>
Sun, 22 Dec 2019 12:13:00 +0000
(21:13 +0900)
committer
Tim-Philipp Müller
<tim@centricular.com>
Thu, 26 Dec 2019 19:49:00 +0000
(19:49 +0000)
Now the rank value can be MAX_INT (
2147483647
)
tools/gst-inspect.c
patch
|
blob
|
history
diff --git
a/tools/gst-inspect.c
b/tools/gst-inspect.c
index 1b5ed83f899c9c9165555602a99246f65da20503..cb29f5752826f45dcaf7a64347981463244b3a1a 100644
(file)
--- a/
tools/gst-inspect.c
+++ b/
tools/gst-inspect.c
@@
-225,7
+225,7
@@
print_factory_details_info (GstElementFactory * factory)
{
gchar **keys, **k;
GstRank rank;
- char s[
2
0];
+ char s[
4
0];
rank = gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory));
n_print ("%sFactory Details:%s\n", HEADING_COLOR, RESET_COLOR);
@@
-1610,7
+1610,7
@@
print_typefind_info (GstPluginFeature * feature, gboolean print_names)
GstPlugin *plugin;
GstCaps *caps;
GstRank rank;
- char s[
2
0];
+ char s[
4
0];
const gchar *const *extensions;
factory = GST_TYPE_FIND_FACTORY (gst_plugin_feature_load (feature));