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
dedec9d9
Commit
dedec9d9
authored
Sep 25, 2006
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bindings/mediacontrol-python/vlc_mediacontrol.c: use the new
mediacontrol_new API
parent
d3bb1243
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bindings/mediacontrol-python/vlc_mediacontrol.c
bindings/mediacontrol-python/vlc_mediacontrol.c
+2
-2
No files found.
bindings/mediacontrol-python/vlc_mediacontrol.c
View file @
dedec9d9
...
...
@@ -36,6 +36,7 @@ MediaControl_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
PyObject
*
py_param
=
NULL
;
char
**
ppsz_args
=
NULL
;
libvlc_instance_t
*
p_instance
=
NULL
;
int
i_size
=
0
;
self
=
PyObject_New
(
MediaControl
,
&
MediaControl_Type
);
...
...
@@ -48,7 +49,6 @@ MediaControl_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
}
else
{
int
i_size
;
int
i_index
;
if
(
!
PySequence_Check
(
py_param
)
)
...
...
@@ -92,7 +92,7 @@ MediaControl_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
}
else
{
self
->
mc
=
mediacontrol_new
(
ppsz_args
,
exception
);
self
->
mc
=
mediacontrol_new
(
i_size
,
ppsz_args
,
exception
);
}
MC_EXCEPT
;
Py_END_ALLOW_THREADS
...
...
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