[vlc-commits] es_out: Fix missing word in color space description
Lyndon Brown
git at videolan.org
Fri Mar 9 22:58:17 CET 2018
vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Wed Mar 7 00:54:34 2018 +0000| [2ae4e74774521332d0e39b35b51755a015b9f987] | committer: Rémi Denis-Courmont
es_out: Fix missing word in color space description
5cb3ee0b3667434768e6db95536e13ec2cdfa9f7 lost an %s in format args, thus
you ended up with `<foo> Range` instead of `<foo> <Full|Limited> Range>`
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2ae4e74774521332d0e39b35b51755a015b9f987
---
src/input/es_out.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index 9ec3e7059b..be7c0ce8cb 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -3237,7 +3237,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
};
static_assert(ARRAY_SIZE(space_names) == COLOR_SPACE_MAX+1,
"Color space table mismatch");
- info_category_AddInfo( p_cat, _("Color space"), _("%s Range"),
+ info_category_AddInfo( p_cat, _("Color space"), _("%s %s Range"),
_(space_names[fmt->video.space]),
_(fmt->video.b_color_range_full ? "Full" : "Limited") );
}
More information about the vlc-commits
mailing list