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
09341bf8
Commit
09341bf8
authored
May 02, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This should now at least compile
parent
8e5e360b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+3
-3
No files found.
modules/access/dshow/dshow.cpp
View file @
09341bf8
...
...
@@ -150,7 +150,7 @@ static char *ppsz_amtuner_mode_text[] = { N_("Default"),
"Select the audio output type. See the \"video input\" option." )
#define AMTUNER_MODE_TEXT N_("AM Tuner mode")
#define AMTUNER_MODE_LONGTE
S
T N_( \
#define AMTUNER_MODE_LONGTE
X
T N_( \
"AM Tuner mode. Can be one of DEFAULT, TV, AM_RADIO, FM_RADIO or DSS.")
static
int
CommonOpen
(
vlc_object_t
*
,
access_sys_t
*
,
vlc_bool_t
);
...
...
@@ -216,7 +216,7 @@ vlc_module_begin();
add_integer
(
"dshow-audio-output"
,
-
1
,
NULL
,
AUDIO_OUT_TEXT
,
AUDIO_OUT_LONGTEXT
,
VLC_TRUE
);
add_
string
(
"dshow-amtuner-mode"
,
AMTUNER_MODE_TV
,
NULL
,
add_
integer
(
"dshow-amtuner-mode"
,
AMTUNER_MODE_TV
,
NULL
,
AMTUNER_MODE_TEXT
,
AMTUNER_MODE_LONGTEXT
,
VLC_FALSE
);
change_integer_list
(
pi_amtuner_mode
,
ppsz_amtuner_mode_text
,
0
);
...
...
@@ -2095,7 +2095,7 @@ static void ConfigTuner( vlc_object_t *p_this, ICaptureGraphBuilder2 *p_graph,
hr
=
p_TV
->
GetAvailableModes
(
&
l_modes
);
if
(
SUCCEEDED
(
hr
)
&&
(
l_modes
&
i_amtuner_mode
)
)
{
hr
=
p_TV
->
put_Mode
(
i_amtuner_mode
);
hr
=
p_TV
->
put_Mode
(
(
AMTunerModeType
)
i_amtuner_mode
);
}
if
(
i_input
==
1
)
p_TV
->
put_InputType
(
0
,
TunerInputCable
);
...
...
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