Commit 54de0c4a authored by Jed Smith's avatar Jed Smith Committed by Jean-Baptiste Kempf

qtcapture: Clarify help text for qtcapture args

The maximum resolution encouraged in the help text for the qtcapture
arguments is 1280x480, which doesn't make sense. The patch author
intended to imply 720p but appears to have forgotten the height
dimension. In addition, clean up the help text a bit.

--qtcapture-height works with 720, anyway, so it's just a doc issue.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 74ec84bb
......@@ -42,10 +42,10 @@
#import <QTKit/QTKit.h>
#import <CoreAudio/CoreAudio.h>
#define QTKIT_WIDTH_TEXT N_("Video Capture width")
#define QTKIT_WIDTH_LONGTEXT N_("Video Capture width in pixel")
#define QTKIT_HEIGHT_TEXT N_("Video Capture height")
#define QTKIT_HEIGHT_LONGTEXT N_("Video Capture height in pixel")
#define QTKIT_WIDTH_TEXT N_("Video capture width")
#define QTKIT_WIDTH_LONGTEXT N_("Video capture width in pixels")
#define QTKIT_HEIGHT_TEXT N_("Video capture height")
#define QTKIT_HEIGHT_LONGTEXT N_("Video capture height in pixels")
/*****************************************************************************
* Local prototypes
......@@ -69,7 +69,7 @@ vlc_module_begin ()
add_integer("qtcapture-width", 640, QTKIT_WIDTH_TEXT, QTKIT_WIDTH_LONGTEXT, true)
change_integer_range (80, 1280)
add_integer("qtcapture-height", 480, QTKIT_HEIGHT_TEXT, QTKIT_HEIGHT_LONGTEXT, true)
change_integer_range (60, 480)
change_integer_range (60, 720)
vlc_module_end ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment