[vlc-commits] QSV: fix typo in strings
Jean-Baptiste Kempf
git at videolan.org
Sun Dec 10 23:34:02 CET 2017
vlc/vlc-3.0 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Dec 10 02:00:49 2017 +0100| [39c8a8187a8573ecfbc9419edada85cbd353a36a] | committer: Jean-Baptiste Kempf
QSV: fix typo in strings
(cherry picked from commit c4993b6a3f552cf8533e30ef350de74f9575d545)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=39c8a8187a8573ecfbc9419edada85cbd353a36a
---
modules/codec/qsv.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/codec/qsv.c b/modules/codec/qsv.c
index 2abda2e6c6..293d619ccf 100644
--- a/modules/codec/qsv.c
+++ b/modules/codec/qsv.c
@@ -104,7 +104,7 @@ static void Close(vlc_object_t *);
#define QP_TEXT N_("Quantization parameter")
#define QP_LONGTEXT N_("Quantization parameter for all types of frames. " \
- "This parameters sets qpi, qpp and qpp. It has less precedence than " \
+ "This parameters sets qpi, qpp and qpb. It has less precedence than " \
"the forementionned parameters. Used only if rc_method is 'qp'.")
#define QPI_TEXT N_("Quantization parameter for I-frames")
@@ -120,14 +120,14 @@ static void Close(vlc_object_t *);
"overrides any qp set globally. Used only if rc_method is 'qp'.")
#define MAX_BITRATE_TEXT N_("Maximum Bitrate")
-#define MAX_BITRATE_LONGTEXT N_("Defines the maximum bitrate in Kpbs " \
+#define MAX_BITRATE_LONGTEXT N_("Defines the maximum bitrate in Kbps " \
"(1000 bits/s) for VBR rate control method. If not set, this parameter" \
" is computed from other sources such as bitrate, profile, level, etc.")
#define ACCURACY_TEXT N_("Accuracy of RateControl")
#define ACCURACY_LONGTEXT N_("Tolerance in percentage of the 'avbr' " \
" (Average Variable BitRate) method. (e.g. 10 with a bitrate of 800 " \
- " kpbs means the encoder tries not to go above 880 kpbs and under " \
+ " kpbs means the encoder tries not to go above 880 kbps and under " \
" 730 kpbs. The targeted accuracy is only reached after a certained " \
" convergence period. See the convergence parameter")
More information about the vlc-commits
mailing list