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
20f054d0
Commit
20f054d0
authored
Nov 14, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new files which should have been in previous commit.
parent
ad1fb879
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
529 additions
and
0 deletions
+529
-0
modules/misc/osd/simple.c
modules/misc/osd/simple.c
+458
-0
modules/misc/osd/xml.c
modules/misc/osd/xml.c
+71
-0
No files found.
modules/misc/osd/simple.c
0 → 100644
View file @
20f054d0
This diff is collapsed.
Click to expand it.
modules/misc/osd/xml.c
0 → 100644
View file @
20f054d0
/*****************************************************************************
* xml.c - The OSD Menu XML parser code.
*****************************************************************************
* Copyright (C) 2005-2007 M2X
* $Id: $
*
* Authors: Jean-Paul Saman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_vout.h>
#include <vlc_config.h>
#include <vlc_keys.h>
#include <vlc_image.h>
#include <vlc_osd.h>
#include <vlc_charset.h>
/***************************************************************************
* Prototypes
***************************************************************************/
static
int
E_
(
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
****************************************************************************/
int
E_
(
osd_parser_xmlOpen
)
(
vlc_object_t
*
p_this
)
{
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