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
22e96161
Commit
22e96161
authored
Jul 04, 2005
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add set_visual support in python binding
parent
f093d59d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
bindings/python/vlcglue.c
bindings/python/vlcglue.c
+20
-0
No files found.
bindings/python/vlcglue.c
View file @
22e96161
...
...
@@ -618,6 +618,25 @@ static PyObject* MediaControl_sound_get_volume(PyObject *self, PyObject *args)
return
py_retval
;
}
static
PyObject
*
MediaControl_set_visual
(
PyObject
*
self
,
PyObject
*
args
)
{
mediacontrol_Exception
*
exception
=
NULL
;
WINDOWHANDLE
visual
;
if
(
!
PyArg_ParseTuple
(
args
,
"i"
,
&
visual
))
return
NULL
;
Py_BEGIN_ALLOW_THREADS
MC_TRY
;
mediacontrol_set_visual
(
SELF
->
mc
,
visual
,
exception
);
Py_END_ALLOW_THREADS
MC_EXCEPT
;
Py_INCREF
(
Py_None
);
return
Py_None
;
}
/* Method table */
static
PyMethodDef
MediaControl_methods
[]
=
{
{
"get_media_position"
,
MediaControl_get_media_position
,
METH_VARARGS
,
"get_media_position(origin, key) -> Position Get current media position."
},
...
...
@@ -635,6 +654,7 @@ static PyMethodDef MediaControl_methods[] = {
{
"get_stream_information"
,
MediaControl_get_stream_information
,
METH_VARARGS
,
"get_stream_information() -> dict Get information about the stream"
},
{
"sound_get_volume"
,
MediaControl_sound_get_volume
,
METH_VARARGS
,
"sound_get_volume() -> int Get the volume"
},
{
"sound_set_volume"
,
MediaControl_sound_set_volume
,
METH_VARARGS
,
"sound_set_volume(int) Set the volume"
},
{
"set_visual"
,
MediaControl_set_visual
,
METH_VARARGS
,
"set_visual(int) Set the embedding window visual ID"
},
{
NULL
,
NULL
,
0
,
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