Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
015a1605
Commit
015a1605
authored
Apr 04, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix OSD (text & widgets) aspect ratio
put category in HTTP interface options
parent
fb217d89
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
modules/control/http.c
modules/control/http.c
+1
-0
modules/misc/freetype.c
modules/misc/freetype.c
+1
-1
src/video_output/video_widgets.c
src/video_output/video_widgets.c
+1
-1
No files found.
modules/control/http.c
View file @
015a1605
...
...
@@ -95,6 +95,7 @@ vlc_module_begin();
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
add_string
(
"http-host"
,
NULL
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-src"
,
NULL
,
NULL
,
SRC_TEXT
,
SRC_LONGTEXT
,
VLC_TRUE
);
set_section
(
N_
(
"HTTP SSL"
),
0
);
add_string
(
"http-intf-cert"
,
NULL
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-intf-key"
,
NULL
,
NULL
,
KEY_TEXT
,
KEY_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-intf-ca"
,
NULL
,
NULL
,
CA_TEXT
,
CA_LONGTEXT
,
VLC_TRUE
);
...
...
modules/misc/freetype.c
View file @
015a1605
...
...
@@ -317,7 +317,7 @@ static int Render( filter_t *p_filter, subpicture_region_t *p_region,
/* Create a new subpicture region */
memset
(
&
fmt
,
0
,
sizeof
(
video_format_t
)
);
fmt
.
i_chroma
=
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'P'
);
fmt
.
i_aspect
=
VOUT_ASPECT_FACTOR
;
fmt
.
i_aspect
=
0
;
fmt
.
i_width
=
fmt
.
i_visible_width
=
i_width
+
4
;
fmt
.
i_height
=
fmt
.
i_visible_height
=
i_height
+
4
;
fmt
.
i_x_offset
=
fmt
.
i_y_offset
=
0
;
...
...
src/video_output/video_widgets.c
View file @
015a1605
...
...
@@ -158,7 +158,7 @@ static void CreatePicture( spu_t *p_spu, subpicture_t *p_subpic,
/* Create a new subpicture region */
memset
(
&
fmt
,
0
,
sizeof
(
video_format_t
)
);
fmt
.
i_chroma
=
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'A'
);
fmt
.
i_aspect
=
VOUT_ASPECT_FACTOR
;
fmt
.
i_aspect
=
0
;
fmt
.
i_width
=
fmt
.
i_visible_width
=
i_width
;
fmt
.
i_height
=
fmt
.
i_visible_height
=
i_height
;
fmt
.
i_x_offset
=
fmt
.
i_y_offset
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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