Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5120576e
Commit
5120576e
authored
Oct 12, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/video_output/video_text.h: removed useless file.
parent
b841a87b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
47 deletions
+0
-47
Makefile.am
Makefile.am
+0
-1
src/video_output/video_text.h
src/video_output/video_text.h
+0
-46
No files found.
Makefile.am
View file @
5120576e
...
@@ -307,7 +307,6 @@ SOURCES_libvlc_common = \
...
@@ -307,7 +307,6 @@ SOURCES_libvlc_common = \
src/video_output/vout_pictures.c
\
src/video_output/vout_pictures.c
\
src/video_output/vout_pictures.h
\
src/video_output/vout_pictures.h
\
src/video_output/video_text.c
\
src/video_output/video_text.c
\
src/video_output/video_text.h
\
src/video_output/vout_subpictures.c
\
src/video_output/vout_subpictures.c
\
src/video_output/vout_synchro.c
\
src/video_output/vout_synchro.c
\
src/audio_output/common.c
\
src/audio_output/common.c
\
...
...
src/video_output/video_text.h
deleted
100644 → 0
View file @
b841a87b
/*****************************************************************************
* video_text.h : text manipulation functions
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: video_text.h,v 1.9 2003/08/17 20:39:08 fenrir Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
/* Text styles - these are primary text styles, used by the vout_Print function.
* They may be ignored or interpreted by higher level functions */
#define WIDE_TEXT 1<<0
/* interspacing is doubled */
#define ITALIC_TEXT 1<<1
/* italic */
#define OPAQUE_TEXT 1<<2
/* text with background */
#define OUTLINED_TEXT 1<<3
/* border around letters */
#define VOID_TEXT 1<<4
/* no foreground */
/*****************************************************************************
* Prototypes
*****************************************************************************/
vout_font_t
*
vout_LoadFont
(
vout_thread_t
*
,
const
char
*
psz_name
);
void
vout_UnloadFont
(
vout_font_t
*
);
void
vout_TextSize
(
vout_font_t
*
p_font
,
int
i_style
,
const
char
*
psz_text
,
int
*
pi_width
,
int
*
pi_height
);
void
vout_Print
(
vout_font_t
*
p_font
,
byte_t
*
p_pic
,
int
i_bytes_per_pixel
,
int
i_bytes_per_line
,
uint32_t
,
uint32_t
,
uint32_t
,
int
,
const
char
*
,
int
);
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