Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
79aa3c87
Commit
79aa3c87
authored
Oct 31, 2005
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed untranslatable strings
parent
8b281a4b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
modules/video_output/wingdi.c
modules/video_output/wingdi.c
+2
-2
src/video_output/vout_intf.c
src/video_output/vout_intf.c
+9
-9
No files found.
modules/video_output/wingdi.c
View file @
79aa3c87
...
...
@@ -216,11 +216,11 @@ vlc_module_begin();
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
#ifdef MODULE_NAME_IS_wingapi
set_shortname
(
_
(
"Windows GAPI"
)
);
set_shortname
(
"Windows GAPI"
);
set_description
(
_
(
"Windows GAPI video output"
)
);
set_capability
(
"video output"
,
20
);
#else
set_shortname
(
_
(
"Windows GDI"
)
);
set_shortname
(
"Windows GDI"
);
set_description
(
_
(
"Windows GDI video output"
)
);
set_capability
(
"video output"
,
10
);
#endif
...
...
src/video_output/vout_intf.c
View file @
79aa3c87
...
...
@@ -231,15 +231,15 @@ void vout_IntfInit( vout_thread_t *p_vout )
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_DELCHOICE
,
&
val
,
0
);
val
.
psz_string
=
""
;
text
.
psz_string
=
_
(
"Default"
);
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"001:1"
;
text
.
psz_string
=
_
(
"1:1"
)
;
val
.
psz_string
=
"001:1"
;
text
.
psz_string
=
"1:1"
;
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"004:3"
;
text
.
psz_string
=
_
(
"4:3"
)
;
val
.
psz_string
=
"004:3"
;
text
.
psz_string
=
"4:3"
;
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"16:10"
;
text
.
psz_string
=
_
(
"16:10"
)
;
val
.
psz_string
=
"16:10"
;
text
.
psz_string
=
"16:10"
;
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"16:9"
;
text
.
psz_string
=
_
(
"16:9"
)
;
val
.
psz_string
=
"16:9"
;
text
.
psz_string
=
"16:9"
;
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"221:100"
;
text
.
psz_string
=
_
(
"221:100"
)
;
val
.
psz_string
=
"221:100"
;
text
.
psz_string
=
"221:100"
;
var_Change
(
p_vout
,
"crop"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
var_AddCallback
(
p_vout
,
"crop"
,
CropCallback
,
NULL
);
...
...
@@ -292,13 +292,13 @@ void vout_IntfInit( vout_thread_t *p_vout )
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_DELCHOICE
,
&
val
,
0
);
val
.
psz_string
=
""
;
text
.
psz_string
=
_
(
"Default"
);
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"001:1"
;
text
.
psz_string
=
_
(
"1:1"
)
;
val
.
psz_string
=
"001:1"
;
text
.
psz_string
=
"1:1"
;
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"004:3"
;
text
.
psz_string
=
_
(
"4:3"
)
;
val
.
psz_string
=
"004:3"
;
text
.
psz_string
=
"4:3"
;
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"16:9"
;
text
.
psz_string
=
_
(
"16:9"
)
;
val
.
psz_string
=
"16:9"
;
text
.
psz_string
=
"16:9"
;
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"221:100"
;
text
.
psz_string
=
_
(
"221:100"
)
;
val
.
psz_string
=
"221:100"
;
text
.
psz_string
=
"221:100"
;
var_Change
(
p_vout
,
"aspect-ratio"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
var_AddCallback
(
p_vout
,
"aspect-ratio"
,
AspectCallback
,
NULL
);
...
...
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