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
743856ce
Commit
743856ce
authored
Dec 01, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/dshow/dshow.cpp: tuner config options (patch by hausheer + cleanup by me)
parent
428e94bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
0 deletions
+88
-0
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+88
-0
No files found.
modules/access/dshow/dshow.cpp
View file @
743856ce
...
...
@@ -62,6 +62,8 @@ static void ShowDeviceProperties( vlc_object_t *, ICaptureGraphBuilder2 *,
IBaseFilter
*
,
vlc_bool_t
);
static
void
ShowTunerProperties
(
vlc_object_t
*
,
ICaptureGraphBuilder2
*
,
IBaseFilter
*
,
vlc_bool_t
);
static
void
ConfigTuner
(
vlc_object_t
*
,
ICaptureGraphBuilder2
*
,
IBaseFilter
*
);
/*****************************************************************************
* Module descriptor
...
...
@@ -70,6 +72,9 @@ static char *ppsz_vdev[] = { "", "none" };
static
char
*
ppsz_vdev_text
[]
=
{
N_
(
"Default"
),
N_
(
"None"
)
};
static
char
*
ppsz_adev
[]
=
{
""
,
"none"
};
static
char
*
ppsz_adev_text
[]
=
{
N_
(
"Default"
),
N_
(
"None"
)
};
static
int
pi_tuner_input
[]
=
{
0
,
1
,
2
};
static
char
*
ppsz_tuner_input_text
[]
=
{
N_
(
"Default"
),
N_
(
"Cable"
),
N_
(
"Antenna"
)};
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
...
...
@@ -101,6 +106,17 @@ static char *ppsz_adev_text[] = { N_("Default"), N_("None") };
#define TUNER_TEXT N_("Tuner properties")
#define TUNER_LONGTEXT N_( \
"Show the tuner properties [channel selection] page." )
#define CHANNEL_TEXT N_("Tuner TV Channel")
#define CHANNEL_LONGTEXT N_( \
"Allows you to set the TV channel the tuner will set to " \
"(0 means default)." )
#define COUNTRY_TEXT N_("Tuner country code")
#define COUNTRY_LONGTEXT N_( \
"Allows you to set the tuner country code that establishes the current " \
"channel-to-frequency mapping (0 means default)." )
#define TUNER_INPUT_TEXT N_("Tuner input type")
#define TUNER_INPUT_LONGTEXT N_( \
"Allows you to select the tuner input type (Cable/Antenna)." )
static
int
CommonOpen
(
vlc_object_t
*
,
access_sys_t
*
,
vlc_bool_t
);
static
void
CommonClose
(
vlc_object_t
*
,
access_sys_t
*
);
...
...
@@ -138,6 +154,16 @@ vlc_module_begin();
add_bool
(
"dshow-tuner"
,
VLC_FALSE
,
NULL
,
TUNER_TEXT
,
TUNER_LONGTEXT
,
VLC_FALSE
);
add_integer
(
"dshow-tuner-channel"
,
0
,
NULL
,
CHANNEL_TEXT
,
CHANNEL_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"dshow-tuner-country"
,
0
,
NULL
,
COUNTRY_TEXT
,
COUNTRY_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"dshow-tuner-input"
,
0
,
NULL
,
TUNER_INPUT_TEXT
,
TUNER_INPUT_LONGTEXT
,
VLC_TRUE
);
change_integer_list
(
pi_tuner_input
,
ppsz_tuner_input_text
,
0
);
add_shortcut
(
"dshow"
);
set_capability
(
"access_demux"
,
0
);
set_callbacks
(
DemuxOpen
,
DemuxClose
);
...
...
@@ -299,6 +325,13 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
}
if
(
val
.
psz_string
)
free
(
val
.
psz_string
);
var_Create
(
p_this
,
"dshow-tuner-channel"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_this
,
"dshow-tuner-country"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_this
,
"dshow-tuner-input"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_this
,
"dshow-caching"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
/* Initialize OLE/COM */
...
...
@@ -926,6 +959,9 @@ static int OpenDevice( vlc_object_t *p_this, access_sys_t *p_sys,
p_device_filter
,
b_audio
);
}
ConfigTuner
(
p_this
,
p_sys
->
p_capture_graph_builder2
,
p_device_filter
);
dshow_stream
.
mt
=
p_capture_filter
->
CustomGetPin
()
->
CustomGetMediaType
();
...
...
@@ -1733,3 +1769,55 @@ static void ShowTunerProperties( vlc_object_t *p_this,
}
}
}
static
void
ConfigTuner
(
vlc_object_t
*
p_this
,
ICaptureGraphBuilder2
*
p_capture_graph
,
IBaseFilter
*
p_device_filter
)
{
int
i_channel
,
i_country
,
i_input
;
long
l_modes
=
0
;
IAMTVTuner
*
p_TV
;
HRESULT
hr
;
if
(
!
p_capture_graph
)
return
;
i_channel
=
var_GetInteger
(
p_this
,
"dshow-tuner-channel"
);
i_country
=
var_GetInteger
(
p_this
,
"dshow-tuner-country"
);
i_input
=
var_GetInteger
(
p_this
,
"dshow-tuner-input"
);
if
(
!
i_channel
&&
!
i_country
&&
!
i_input
)
return
;
/* Nothing to do */
msg_Dbg
(
p_this
,
"tuner config: channel %i, country %i, input type %i"
,
i_channel
,
i_country
,
i_input
);
hr
=
p_capture_graph
->
FindInterface
(
&
PIN_CATEGORY_CAPTURE
,
&
MEDIATYPE_Interleaved
,
p_device_filter
,
IID_IAMTVTuner
,
(
void
**
)
&
p_TV
);
if
(
FAILED
(
hr
)
)
{
hr
=
p_capture_graph
->
FindInterface
(
&
PIN_CATEGORY_CAPTURE
,
&
MEDIATYPE_Video
,
p_device_filter
,
IID_IAMTVTuner
,
(
void
**
)
&
p_TV
);
}
if
(
FAILED
(
hr
)
)
{
msg_Dbg
(
p_this
,
"couldn't find tuner interface"
);
return
;
}
hr
=
p_TV
->
GetAvailableModes
(
&
l_modes
);
if
(
SUCCEEDED
(
hr
)
&&
(
l_modes
&
AMTUNER_MODE_TV
)
)
{
hr
=
p_TV
->
put_Mode
(
AMTUNER_MODE_TV
);
}
if
(
i_input
==
1
)
p_TV
->
put_InputType
(
0
,
TunerInputCable
);
else
if
(
i_input
==
2
)
p_TV
->
put_InputType
(
0
,
TunerInputAntenna
);
p_TV
->
put_CountryCode
(
i_country
);
p_TV
->
put_Channel
(
i_channel
,
AMTUNER_SUBCHAN_NO_TUNE
,
AMTUNER_SUBCHAN_NO_TUNE
);
p_TV
->
Release
();
}
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