Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
372d71bd
Commit
372d71bd
authored
Aug 18, 2015
by
Petri Hintukainen
Committed by
Jean-Baptiste Kempf
Aug 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: factorize blurayReleaseVout()
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
00d3ae19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
11 deletions
+15
-11
modules/access/bluray.c
modules/access/bluray.c
+15
-11
No files found.
modules/access/bluray.c
View file @
372d71bd
...
...
@@ -270,6 +270,18 @@ static void FindMountPoint(char **file)
#endif
}
static
void
blurayReleaseVout
(
demux_t
*
p_demux
)
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
if
(
p_sys
->
p_vout
!=
NULL
)
{
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-moved"
,
onMouseEvent
,
p_demux
);
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-clicked"
,
onMouseEvent
,
p_demux
);
vlc_object_release
(
p_sys
->
p_vout
);
p_sys
->
p_vout
=
NULL
;
}
}
/*****************************************************************************
* cache current playlist (title) information
*****************************************************************************/
...
...
@@ -486,11 +498,8 @@ static void blurayClose(vlc_object_t *object)
assert
(
p_sys
->
bluray
);
bd_close
(
p_sys
->
bluray
);
if
(
p_sys
->
p_vout
!=
NULL
)
{
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-moved"
,
onMouseEvent
,
p_demux
);
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-clicked"
,
onMouseEvent
,
p_demux
);
vlc_object_release
(
p_sys
->
p_vout
);
}
blurayReleaseVout
(
p_demux
);
if
(
p_sys
->
p_parser
)
stream_Delete
(
p_sys
->
p_parser
);
if
(
p_sys
->
p_out
!=
NULL
)
...
...
@@ -784,12 +793,7 @@ static void blurayCloseOverlay(demux_t *p_demux, int plane)
return
;
/* All overlays have been closed */
if
(
p_sys
->
p_vout
!=
NULL
)
{
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-moved"
,
onMouseEvent
,
p_demux
);
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-clicked"
,
onMouseEvent
,
p_demux
);
vlc_object_release
(
p_sys
->
p_vout
);
p_sys
->
p_vout
=
NULL
;
}
blurayReleaseVout
(
p_demux
);
}
/*
...
...
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