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
1f7592ff
Commit
1f7592ff
authored
Nov 14, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor osdmenu parsing logic.
parent
7d39628d
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
110 additions
and
122 deletions
+110
-122
include/vlc_osd.h
include/vlc_osd.h
+3
-2
modules/misc/osd/osd_menu.c
modules/misc/osd/osd_menu.c
+46
-48
modules/misc/osd/osd_menu.h
modules/misc/osd/osd_menu.h
+4
-4
modules/misc/osd/parser.c
modules/misc/osd/parser.c
+6
-6
modules/misc/osd/simple.c
modules/misc/osd/simple.c
+48
-38
modules/misc/osd/xml.c
modules/misc/osd/xml.c
+3
-24
No files found.
include/vlc_osd.h
View file @
1f7592ff
...
@@ -88,6 +88,7 @@ static inline int spu_vaControl( spu_t *p_spu, int i_query, va_list args )
...
@@ -88,6 +88,7 @@ static inline int spu_vaControl( spu_t *p_spu, int i_query, va_list args )
else
else
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
static
inline
int
spu_Control
(
spu_t
*
p_spu
,
int
i_query
,
...
)
static
inline
int
spu_Control
(
spu_t
*
p_spu
,
int
i_query
,
...
)
{
{
va_list
args
;
va_list
args
;
...
@@ -270,8 +271,6 @@ struct text_style_t
...
@@ -270,8 +271,6 @@ struct text_style_t
static
const
text_style_t
default_text_style
=
{
NULL
,
22
,
0xffffff
,
0xff
,
STYLE_OUTLINE
,
static
const
text_style_t
default_text_style
=
{
NULL
,
22
,
0xffffff
,
0xff
,
STYLE_OUTLINE
,
0x000000
,
0xff
,
0x000000
,
0xff
,
0xffffff
,
0x80
,
0xffffff
,
0xff
,
1
,
0
,
-
1
};
0x000000
,
0xff
,
0x000000
,
0xff
,
0xffffff
,
0x80
,
0xffffff
,
0xff
,
1
,
0
,
-
1
};
/**
/**
* OSD menu button states
* OSD menu button states
*
*
...
@@ -286,6 +285,8 @@ static const text_style_t default_text_style = { NULL, 22, 0xffffff, 0xff, STYLE
...
@@ -286,6 +285,8 @@ static const text_style_t default_text_style = { NULL, 22, 0xffffff, 0xff, STYLE
#define OSD_BUTTON_SELECT 1
#define OSD_BUTTON_SELECT 1
#define OSD_BUTTON_PRESSED 2
#define OSD_BUTTON_PRESSED 2
static
const
char
*
ppsz_button_states
[]
=
{
"unselect"
,
"select"
,
"pressed"
};
/**
/**
* OSD State object
* OSD State object
*
*
...
...
modules/misc/osd/osd_menu.c
View file @
1f7592ff
/*****************************************************************************
/*****************************************************************************
* parser.c :
OSD import module
* parser.c : OSD import module
*****************************************************************************
*****************************************************************************
* Copyright (C) 2007 M2X
* Copyright (C) 2007 M2X
* $Id: $
* $Id: $
...
@@ -41,12 +41,12 @@
...
@@ -41,12 +41,12 @@
/*****************************************************************************
/*****************************************************************************
* Local prototypes
* Local prototypes
*****************************************************************************/
*****************************************************************************/
static
const
char
*
ppsz_button_states
[]
=
{
"unselect"
,
"select"
,
"pressed"
};
/*****************************************************************************
/*****************************************************************************
* Create a new Menu structure
* Create a new Menu structure
*****************************************************************************/
*****************************************************************************/
osd_menu_t
*
osd_MenuNew
(
osd_menu_t
*
p_menu
,
const
char
*
psz_path
,
int
i_x
,
int
i_y
)
osd_menu_t
*
osd_MenuNew
(
osd_menu_t
*
p_menu
,
const
char
*
psz_path
,
int
i_x
,
int
i_y
)
{
{
if
(
!
p_menu
)
return
NULL
;
if
(
!
p_menu
)
return
NULL
;
...
@@ -62,6 +62,7 @@ osd_menu_t *osd_MenuNew( osd_menu_t *p_menu, const char *psz_path, int i_x, int
...
@@ -62,6 +62,7 @@ osd_menu_t *osd_MenuNew( osd_menu_t *p_menu, const char *psz_path, int i_x, int
p_menu
->
psz_path
=
strdup
(
psz_path
);
p_menu
->
psz_path
=
strdup
(
psz_path
);
else
else
p_menu
->
psz_path
=
NULL
;
p_menu
->
psz_path
=
NULL
;
p_menu
->
i_x
=
i_x
;
p_menu
->
i_x
=
i_x
;
p_menu
->
i_y
=
i_y
;
p_menu
->
i_y
=
i_y
;
p_menu
->
i_style
=
OSD_MENU_STYLE_SIMPLE
;
p_menu
->
i_style
=
OSD_MENU_STYLE_SIMPLE
;
...
@@ -72,15 +73,17 @@ osd_menu_t *osd_MenuNew( osd_menu_t *p_menu, const char *psz_path, int i_x, int
...
@@ -72,15 +73,17 @@ osd_menu_t *osd_MenuNew( osd_menu_t *p_menu, const char *psz_path, int i_x, int
/*****************************************************************************
/*****************************************************************************
* Free the menu
* Free the menu
*****************************************************************************/
*****************************************************************************/
void
osd_MenuFree
(
vlc_object_t
*
p_this
,
osd_menu_t
*
p_menu
)
void
osd_MenuFree
(
osd_menu_t
*
p_menu
)
{
{
msg_Dbg
(
p_this
,
"freeing menu"
);
msg_Dbg
(
p_menu
,
"freeing menu"
);
osd_ButtonFree
(
p_this
,
p_menu
->
p_button
);
osd_ButtonFree
(
p_menu
,
p_menu
->
p_button
);
if
(
p_menu
->
psz_path
)
free
(
p_menu
->
psz_path
);
if
(
p_menu
->
p_state
)
free
(
p_menu
->
p_state
);
p_menu
->
p_button
=
NULL
;
p_menu
->
p_button
=
NULL
;
p_menu
->
p_last_button
=
NULL
;
p_menu
->
p_last_button
=
NULL
;
if
(
p_menu
->
psz_path
)
free
(
p_menu
->
psz_path
);
p_menu
->
psz_path
=
NULL
;
p_menu
->
psz_path
=
NULL
;
if
(
p_menu
->
p_state
)
free
(
p_menu
->
p_state
);
p_menu
->
p_state
=
NULL
;
p_menu
->
p_state
=
NULL
;
}
}
...
@@ -107,7 +110,7 @@ osd_button_t *osd_ButtonNew( const char *psz_action, int i_x, int i_y )
...
@@ -107,7 +110,7 @@ osd_button_t *osd_ButtonNew( const char *psz_action, int i_x, int i_y )
/*****************************************************************************
/*****************************************************************************
* Free a button
* Free a button
*****************************************************************************/
*****************************************************************************/
void
osd_ButtonFree
(
vlc_object_t
*
p_this
,
osd_button_t
*
p_button
)
void
osd_ButtonFree
(
osd_menu_t
*
p_menu
,
osd_button_t
*
p_button
)
{
{
osd_button_t
*
p_current
=
p_button
;
osd_button_t
*
p_current
=
p_button
;
osd_button_t
*
p_next
=
NULL
;
osd_button_t
*
p_next
=
NULL
;
...
@@ -122,7 +125,8 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
...
@@ -122,7 +125,8 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
/* Then free end first and walk to the start. */
/* Then free end first and walk to the start. */
while
(
p_current
->
p_prev
)
while
(
p_current
->
p_prev
)
{
{
msg_Dbg
(
p_this
,
"+ freeing button %s [%p]"
,
p_current
->
psz_action
,
p_current
);
msg_Dbg
(
p_menu
,
"+ freeing button %s [%p]"
,
p_current
->
psz_action
,
p_current
);
p_prev
=
p_current
->
p_prev
;
p_prev
=
p_current
->
p_prev
;
p_current
=
p_prev
;
p_current
=
p_prev
;
if
(
p_current
->
p_next
)
if
(
p_current
->
p_next
)
...
@@ -138,16 +142,13 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
...
@@ -138,16 +142,13 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
if
(
p_current
->
p_feedback
)
if
(
p_current
->
p_feedback
)
free
(
p_current
->
p_feedback
);
free
(
p_current
->
p_feedback
);
p_current
->
p_next
->
psz_action_down
=
NULL
;
p_current
->
p_next
->
psz_action
=
NULL
;
p_current
->
p_next
->
psz_name
=
NULL
;
p_current
->
p_feedback
=
NULL
;
p_current
->
p_feedback
=
NULL
;
/* Free all states first */
/* Free all states first */
if
(
p_current
->
p_next
->
p_states
)
if
(
p_current
->
p_next
->
p_states
)
osd_StatesFree
(
p_
this
,
p_current
->
p_next
->
p_states
);
osd_StatesFree
(
p_
menu
,
p_current
->
p_next
->
p_states
);
p_current
->
p_next
->
p_states
=
NULL
;
if
(
p_current
->
p_next
)
free
(
p_current
->
p_next
);
free
(
p_current
->
p_next
);
p_current
->
p_next
=
NULL
;
p_current
->
p_next
=
NULL
;
}
}
...
@@ -164,23 +165,20 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
...
@@ -164,23 +165,20 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
if
(
p_current
->
p_feedback
)
if
(
p_current
->
p_feedback
)
free
(
p_current
->
p_feedback
);
free
(
p_current
->
p_feedback
);
p_current
->
p_up
->
psz_action_down
=
NULL
;
p_current
->
p_up
->
psz_action
=
NULL
;
p_current
->
p_up
->
psz_name
=
NULL
;
p_current
->
p_feedback
=
NULL
;
p_current
->
p_feedback
=
NULL
;
/* Free all states first */
/* Free all states first */
if
(
p_current
->
p_up
->
p_states
)
if
(
p_current
->
p_up
->
p_states
)
osd_StatesFree
(
p_this
,
p_current
->
p_up
->
p_states
);
osd_StatesFree
(
p_menu
,
p_current
->
p_up
->
p_states
);
p_current
->
p_up
->
p_states
=
NULL
;
free
(
p_current
->
p_up
);
if
(
p_current
->
p_up
)
free
(
p_current
->
p_up
);
p_current
->
p_up
=
NULL
;
p_current
->
p_up
=
NULL
;
}
}
}
}
/* Free the last one. */
/* Free the last one. */
if
(
p_button
)
if
(
p_button
)
{
{
msg_Dbg
(
p_this
,
"+ freeing button %s [%p]"
,
p_button
->
psz_action
,
p_button
);
msg_Dbg
(
p_menu
,
"+ freeing button %s [%p]"
,
p_button
->
psz_action
,
p_button
);
if
(
p_button
->
psz_name
)
free
(
p_button
->
psz_name
);
if
(
p_button
->
psz_name
)
free
(
p_button
->
psz_name
);
if
(
p_button
->
psz_action
)
free
(
p_button
->
psz_action
);
if
(
p_button
->
psz_action
)
free
(
p_button
->
psz_action
);
if
(
p_button
->
psz_action_down
)
free
(
p_button
->
psz_action_down
);
if
(
p_button
->
psz_action_down
)
free
(
p_button
->
psz_action_down
);
...
@@ -188,15 +186,11 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
...
@@ -188,15 +186,11 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
free
(
p_current
->
p_feedback
->
p_data_orig
);
free
(
p_current
->
p_feedback
->
p_data_orig
);
if
(
p_current
->
p_feedback
)
if
(
p_current
->
p_feedback
)
free
(
p_current
->
p_feedback
);
free
(
p_current
->
p_feedback
);
p_button
->
psz_name
=
NULL
;
p_button
->
psz_action
=
NULL
;
p_button
->
psz_action_down
=
NULL
;
p_current
->
p_feedback
=
NULL
;
p_current
->
p_feedback
=
NULL
;
if
(
p_button
->
p_states
)
if
(
p_button
->
p_states
)
osd_StatesFree
(
p_
this
,
p_button
->
p_states
);
osd_StatesFree
(
p_
menu
,
p_button
->
p_states
);
p_button
->
p_states
=
NULL
;
free
(
p_button
);
free
(
p_button
);
p_button
=
NULL
;
p_button
=
NULL
;
}
}
...
@@ -205,9 +199,9 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
...
@@ -205,9 +199,9 @@ void osd_ButtonFree( vlc_object_t *p_this, osd_button_t *p_button )
/*****************************************************************************
/*****************************************************************************
* Create a new state image
* Create a new state image
*****************************************************************************/
*****************************************************************************/
osd_state_t
*
osd_StateNew
(
vlc_object_t
*
p_this
,
const
char
*
psz_file
,
const
char
*
psz_state
)
osd_state_t
*
osd_StateNew
(
osd_menu_t
*
p_menu
,
const
char
*
psz_file
,
const
char
*
psz_state
)
{
{
osd_menu_t
*
p_this
;
osd_state_t
*
p_state
=
NULL
;
osd_state_t
*
p_state
=
NULL
;
video_format_t
fmt_in
,
fmt_out
;
video_format_t
fmt_in
,
fmt_out
;
...
@@ -216,14 +210,13 @@ osd_state_t *osd_StateNew( vlc_object_t *p_this, const char *psz_file, const cha
...
@@ -216,14 +210,13 @@ osd_state_t *osd_StateNew( vlc_object_t *p_this, const char *psz_file, const cha
return
NULL
;
return
NULL
;
memset
(
p_state
,
0
,
sizeof
(
osd_state_t
)
);
memset
(
p_state
,
0
,
sizeof
(
osd_state_t
)
);
memset
(
&
fmt_in
,
0
,
sizeof
(
video_format_t
)
);
memset
(
&
fmt_in
,
0
,
sizeof
(
video_format_t
)
);
memset
(
&
fmt_out
,
0
,
sizeof
(
video_format_t
)
);
memset
(
&
fmt_out
,
0
,
sizeof
(
video_format_t
)
);
fmt_out
.
i_chroma
=
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'A'
);
fmt_out
.
i_chroma
=
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'A'
);
if
(
p_
osd
->
p_image
)
if
(
p_
menu
->
p_image
)
{
{
p_state
->
p_pic
=
image_ReadUrl
(
p_
osd
->
p_image
,
p_osd
->
psz_file
,
p_state
->
p_pic
=
image_ReadUrl
(
p_
menu
->
p_image
,
p_menu
->
psz_file
,
&
fmt_in
,
&
fmt_out
);
&
fmt_in
,
&
fmt_out
);
}
}
...
@@ -246,7 +239,7 @@ osd_state_t *osd_StateNew( vlc_object_t *p_this, const char *psz_file, const cha
...
@@ -246,7 +239,7 @@ osd_state_t *osd_StateNew( vlc_object_t *p_this, const char *psz_file, const cha
/*****************************************************************************
/*****************************************************************************
* Free state images
* Free state images
*****************************************************************************/
*****************************************************************************/
void
osd_StatesFree
(
vlc_object_t
*
p_this
,
osd_state_t
*
p_states
)
void
osd_StatesFree
(
osd_menu_t
*
p_menu
,
osd_state_t
*
p_states
)
{
{
osd_state_t
*
p_state
=
p_states
;
osd_state_t
*
p_state
=
p_states
;
osd_state_t
*
p_next
=
NULL
;
osd_state_t
*
p_next
=
NULL
;
...
@@ -260,17 +253,20 @@ void osd_StatesFree( vlc_object_t *p_this, osd_state_t *p_states )
...
@@ -260,17 +253,20 @@ void osd_StatesFree( vlc_object_t *p_this, osd_state_t *p_states )
/* Then free end first and walk to the start. */
/* Then free end first and walk to the start. */
while
(
p_state
->
p_prev
)
while
(
p_state
->
p_prev
)
{
{
msg_Dbg
(
p_this
,
" |- freeing state %s [%p]"
,
p_state
->
psz_state
,
p_state
);
msg_Dbg
(
p_menu
,
" |- freeing state %s [%p]"
,
p_state
->
psz_state
,
p_state
);
p_prev
=
p_state
->
p_prev
;
p_prev
=
p_state
->
p_prev
;
p_state
=
p_prev
;
p_state
=
p_prev
;
if
(
p_state
->
p_next
)
if
(
p_state
->
p_next
)
{
{
if
(
p_state
->
p_next
->
p_pic
&&
p_state
->
p_next
->
p_pic
->
p_data_orig
)
if
(
p_state
->
p_next
->
p_pic
)
free
(
p_state
->
p_next
->
p_pic
->
p_data_orig
);
{
if
(
p_state
->
p_next
->
p_pic
)
free
(
p_state
->
p_next
->
p_pic
);
if
(
p_state
->
p_next
->
p_pic
->
p_data_orig
)
p_state
->
p_next
->
p_pic
=
NULL
;
free
(
p_state
->
p_next
->
p_pic
->
p_data_orig
);
if
(
p_state
->
p_next
->
psz_state
)
free
(
p_state
->
p_next
->
psz_state
);
free
(
p_state
->
p_next
->
p_pic
);
p_state
->
p_next
->
psz_state
=
NULL
;
}
if
(
p_state
->
p_next
->
psz_state
)
free
(
p_state
->
p_next
->
psz_state
);
free
(
p_state
->
p_next
);
free
(
p_state
->
p_next
);
p_state
->
p_next
=
NULL
;
p_state
->
p_next
=
NULL
;
}
}
...
@@ -278,13 +274,15 @@ void osd_StatesFree( vlc_object_t *p_this, osd_state_t *p_states )
...
@@ -278,13 +274,15 @@ void osd_StatesFree( vlc_object_t *p_this, osd_state_t *p_states )
/* Free the last one. */
/* Free the last one. */
if
(
p_states
)
if
(
p_states
)
{
{
msg_Dbg
(
p_this
,
" |- freeing state %s [%p]"
,
p_state
->
psz_state
,
p_states
);
msg_Dbg
(
p_menu
,
" |- freeing state %s [%p]"
,
if
(
p_states
->
p_pic
&&
p_states
->
p_pic
->
p_data_orig
)
p_state
->
psz_state
,
p_states
);
free
(
p_states
->
p_pic
->
p_data_orig
);
if
(
p_states
->
p_pic
)
if
(
p_states
->
p_pic
)
free
(
p_states
->
p_pic
);
{
p_states
->
p_pic
=
NULL
;
if
(
p_states
->
p_pic
->
p_data_orig
)
free
(
p_states
->
p_pic
->
p_data_orig
);
free
(
p_states
->
p_pic
);
}
if
(
p_state
->
psz_state
)
free
(
p_state
->
psz_state
);
if
(
p_state
->
psz_state
)
free
(
p_state
->
psz_state
);
p_state
->
psz_state
=
NULL
;
free
(
p_states
);
free
(
p_states
);
p_states
=
NULL
;
p_states
=
NULL
;
}
}
...
...
modules/misc/osd/osd_menu.h
View file @
1f7592ff
...
@@ -29,11 +29,11 @@
...
@@ -29,11 +29,11 @@
*/
*/
osd_menu_t
*
osd_MenuNew
(
osd_menu_t
*
,
const
char
*
,
int
,
int
);
osd_menu_t
*
osd_MenuNew
(
osd_menu_t
*
,
const
char
*
,
int
,
int
);
osd_button_t
*
osd_ButtonNew
(
const
char
*
,
int
,
int
);
osd_button_t
*
osd_ButtonNew
(
const
char
*
,
int
,
int
);
osd_state_t
*
osd_StateNew
(
vlc_object
_t
*
,
const
char
*
,
const
char
*
);
osd_state_t
*
osd_StateNew
(
osd_menu
_t
*
,
const
char
*
,
const
char
*
);
void
osd_MenuFree
(
vlc_object_t
*
,
osd_menu_t
*
);
void
osd_MenuFree
(
osd_menu_t
*
);
void
osd_ButtonFree
(
vlc_object
_t
*
,
osd_button_t
*
);
void
osd_ButtonFree
(
osd_menu
_t
*
,
osd_button_t
*
);
void
osd_StatesFree
(
vlc_object
_t
*
,
osd_state_t
*
);
void
osd_StatesFree
(
osd_menu
_t
*
,
osd_state_t
*
);
#endif
#endif
modules/misc/osd/parser.c
View file @
1f7592ff
...
@@ -38,8 +38,8 @@
...
@@ -38,8 +38,8 @@
/***************************************************************************
/***************************************************************************
* Prototypes
* Prototypes
***************************************************************************/
***************************************************************************/
int
E_
(
osd_parser_simpleOpen
)
(
vlc_object_t
*
p_this
);
int
osd_parser_simpleOpen
(
vlc_object_t
*
p_this
);
int
E_
(
osd_parser_xmlOpen
)
(
vlc_object_t
*
p_this
);
int
osd_parser_xmlOpen
(
vlc_object_t
*
p_this
);
static
void
osd_parser_Close
(
vlc_object_t
*
p_this
);
static
void
osd_parser_Close
(
vlc_object_t
*
p_this
);
...
@@ -48,20 +48,20 @@ static void osd_parser_Close( vlc_object_t *p_this );
...
@@ -48,20 +48,20 @@ static void osd_parser_Close( vlc_object_t *p_this );
*****************************************************************************/
*****************************************************************************/
vlc_module_begin
();
vlc_module_begin
();
set_category
(
CAT_
MISC
);
set_category
(
CAT_
OSD
);
set_subcategory
(
SUBCAT_OSD_IMPORT
);
set_subcategory
(
SUBCAT_OSD_IMPORT
);
add_submodule
();
add_submodule
();
set_description
(
_
(
"OSD configuration importer"
)
);
set_description
(
_
(
"OSD configuration importer"
)
);
add_shortcut
(
"import-osd"
);
add_shortcut
(
"import-osd"
);
set_capability
(
"osd parser"
,
0
);
set_capability
(
"osd parser"
,
0
);
set_callbacks
(
E_
(
osd_parser_simpleOpen
)
,
osd_parser_Close
);
set_callbacks
(
osd_parser_simpleOpen
,
osd_parser_Close
);
add_submodule
();
add_submodule
();
set_description
(
_
(
"XML OSD configuration importer"
)
);
set_description
(
_
(
"XML OSD configuration importer"
)
);
add_shortcut
(
"import-osd-xml"
);
add_shortcut
(
"import-osd-xml"
);
set_capability
(
"osd parser"
,
0
);
set_capability
(
"osd parser"
,
0
);
set_callbacks
(
E_
(
osd_parser_xmlOpen
)
,
osd_parser_Close
);
set_callbacks
(
osd_parser_xmlOpen
,
osd_parser_Close
);
vlc_module_end
();
vlc_module_end
();
...
@@ -73,5 +73,5 @@ void osd_parser_Close ( vlc_object_t *p_this )
...
@@ -73,5 +73,5 @@ void osd_parser_Close ( vlc_object_t *p_this )
{
{
osd_menu_t
*
p_menu
=
(
osd_menu_t
*
)
p_this
;
osd_menu_t
*
p_menu
=
(
osd_menu_t
*
)
p_this
;
if
(
p_menu
)
if
(
p_menu
)
osd_MenuFree
(
p_
this
,
&
p_
menu
);
osd_MenuFree
(
p_menu
);
}
}
modules/misc/osd/simple.c
View file @
1f7592ff
This diff is collapsed.
Click to expand it.
modules/misc/osd/xml.c
View file @
1f7592ff
...
@@ -34,38 +34,17 @@
...
@@ -34,38 +34,17 @@
#include <vlc_osd.h>
#include <vlc_osd.h>
#include <vlc_charset.h>
#include <vlc_charset.h>
/***************************************************************************
#include "osd_menu.h"
* Prototypes
***************************************************************************/
static
int
E_
(
osd_parser_xmlOpen
)
(
vlc_object_t
*
p_this
);
int
osd_parser_xmlOpen
(
vlc_object_t
*
p_this
);
static
void
E_
(
osd_parser_xmlClose
)(
vlc_object_t
*
p_this
);
/*****************************************************************************
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_category
(
CAT_MISC
);
set_subcategory
(
SUBCAT_OSD_IMPORT
);
set_description
(
_
(
"XML OSD configuration importer"
)
);
add_shortcut
(
"import-osd-xml"
);
set_capability
(
"osd parser"
,
0
);
set_callbacks
(
osd_parser_xmlOpen
,
osd_parser_xmlClose
);
vlc_module_end
();
/****************************************************************************
/****************************************************************************
* Local structures
* Local structures
****************************************************************************/
****************************************************************************/
int
E_
(
osd_parser_xmlOpen
)
(
vlc_object_t
*
p_this
)
int
osd_parser_xmlOpen
(
vlc_object_t
*
p_this
)
{
{
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
void
E_
(
osd_parser_xmlClose
)
(
vlc_object_t
*
p_this
)
{
}
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