Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
30f42d35
Commit
30f42d35
authored
Dec 07, 2003
by
hartman
Browse files
* Incorrect default value of align
parent
ad4abc65
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libvlc.h
View file @
30f42d35
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.11
2
2003/12/0
4 16:49:45 sam
Exp $
* $Id: libvlc.h,v 1.11
3
2003/12/0
7 20:48:21 hartman
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -656,7 +656,7 @@ vlc_module_begin();
add_bool
(
"video"
,
1
,
NULL
,
VIDEO_TEXT
,
VIDEO_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"width"
,
-
1
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"height"
,
-
1
,
NULL
,
HEIGHT_TEXT
,
HEIGHT_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"align"
,
-
1
,
NULL
,
ALIGN_TEXT
,
ALIGN_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"align"
,
0
,
NULL
,
ALIGN_TEXT
,
ALIGN_LONGTEXT
,
VLC_TRUE
);
add_float
(
"zoom"
,
1
,
NULL
,
ZOOM_TEXT
,
ZOOM_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"grayscale"
,
0
,
NULL
,
GRAYSCALE_TEXT
,
GRAYSCALE_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"fullscreen"
,
0
,
NULL
,
FULLSCREEN_TEXT
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment