[vlc-commits] input info: use "video resolution" instead of "display resolution"

Jean-Baptiste Kempf git at videolan.org
Mon May 22 11:59:48 CEST 2017


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon May 22 10:21:14 2017 +0200| [d230f7857c7250f3240baa6eb99a188c29134dee] | committer: Jean-Baptiste Kempf

input info: use "video resolution" instead of "display resolution"

Technically, this is not the "display resolution", since we don't know
what the display will be (zoom and unzoom)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d230f7857c7250f3240baa6eb99a188c29134dee
---

 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 697452a807..19fec0ef5b 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -3061,7 +3061,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
 
         if( fmt->video.i_visible_width > 0 &&
             fmt->video.i_visible_height > 0 )
-            info_category_AddInfo( p_cat, _("Display resolution"), "%ux%u",
+            info_category_AddInfo( p_cat, _("Video resolution"), "%ux%u",
                                    fmt->video.i_visible_width,
                                    fmt->video.i_visible_height);
 



More information about the vlc-commits mailing list