[vlc-devel] commit: Remove stupid default 320x200 snapshot size. It now defaults to the original video size. (Antoine Cellerier )
git version control
git at videolan.org
Wed Apr 2 22:42:13 CEST 2008
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Wed Apr 2 21:30:38 2008 +0200| [885b6b8a436d9948d27c9bbf7b8e2018c283141d]
Remove stupid default 320x200 snapshot size. It now defaults to the original video size.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=885b6b8a436d9948d27c9bbf7b8e2018c283141d
---
src/libvlc-module.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index 1ba46e5..755b517 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -457,12 +457,14 @@ static const char *ppsz_pos_descriptions[] =
#define SNAP_WIDTH_TEXT N_("Video snapshot width")
#define SNAP_WIDTH_LONGTEXT N_( \
"You can enforce the width of the video snapshot. By default " \
- "it will be 320 pixels." )
+ "it will keep the original width (-1). Using 0 will scale the width " \
+ "to keep the aspect ratio." )
#define SNAP_HEIGHT_TEXT N_("Video snapshot height")
#define SNAP_HEIGHT_LONGTEXT N_( \
"You can enforce the height of the video snapshot. By default " \
- "it will be 200 pixels." )
+ "it will keep the original height (-1). Using 0 will scale the height " \
+ "to keep the aspect ratio." )
#define CROP_TEXT N_("Video cropping")
#define CROP_LONGTEXT N_( \
@@ -1512,9 +1514,9 @@ vlc_module_begin();
SNAP_PREVIEW_LONGTEXT, VLC_FALSE );
add_bool( "snapshot-sequential", VLC_FALSE, NULL, SNAP_SEQUENTIAL_TEXT,
SNAP_SEQUENTIAL_LONGTEXT, VLC_FALSE );
- add_integer( "snapshot-width", 320, NULL, SNAP_WIDTH_TEXT,
+ add_integer( "snapshot-width", -1, NULL, SNAP_WIDTH_TEXT,
SNAP_WIDTH_LONGTEXT, VLC_TRUE );
- add_integer( "snapshot-height", 200, NULL, SNAP_HEIGHT_TEXT,
+ add_integer( "snapshot-height", -1, NULL, SNAP_HEIGHT_TEXT,
SNAP_HEIGHT_LONGTEXT, VLC_TRUE );
set_section( N_("Window properties" ), NULL );
More information about the vlc-devel
mailing list