Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
9e5f3dfe
Commit
9e5f3dfe
authored
Jul 18, 2010
by
Peter Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ff_draw_pc_font()
Originally committed as revision 24296 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ddf9dc45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
cga_data.c
libavcodec/cga_data.c
+12
-0
cga_data.h
libavcodec/cga_data.h
+12
-0
No files found.
libavcodec/cga_data.c
View file @
9e5f3dfe
...
...
@@ -19,6 +19,7 @@
*/
#include <stdint.h>
#include "cga_data.h"
const
uint8_t
ff_cga_font
[
2048
]
=
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x7e
,
0x81
,
0xa5
,
0x81
,
0xbd
,
0x99
,
0x81
,
0x7e
,
...
...
@@ -425,3 +426,14 @@ const uint32_t ff_ega_palette[64] = {
0x555500
,
0x5555AA
,
0x55FF00
,
0x55FFAA
,
0xFF5500
,
0xFF55AA
,
0xFFFF00
,
0xFFFFAA
,
0x555555
,
0x5555FF
,
0x55FF55
,
0x55FFFF
,
0xFF5555
,
0xFF55FF
,
0xFFFF55
,
0xFFFFFF
};
void
ff_draw_pc_font
(
uint8_t
*
dst
,
int
linesize
,
const
uint8_t
*
font
,
int
font_height
,
int
ch
,
int
fg
,
int
bg
)
{
int
char_y
,
mask
;
for
(
char_y
=
0
;
char_y
<
font_height
;
char_y
++
)
{
for
(
mask
=
0x80
;
mask
;
mask
>>=
1
)
{
*
dst
++
=
font
[
ch
*
font_height
+
char_y
]
&
mask
?
fg
:
bg
;
}
dst
+=
linesize
-
8
;
}
}
libavcodec/cga_data.h
View file @
9e5f3dfe
...
...
@@ -28,4 +28,16 @@ extern const uint8_t ff_vga16_font[4096];
extern
const
uint32_t
ff_cga_palette
[
16
];
extern
const
uint32_t
ff_ega_palette
[
64
];
/**
* Draw CGA/EGA/VGA font to 8-bit pixel buffer
*
* @param dst Destination pixel buffer
* @param linesize Linesize (pixels)
* @param font Font table. We assume font width is always 8 pixels wide.
* @param font_height Font height (pixels)
* @param fg,bg Foreground and background palette index
* @param ch Character to draw
*/
void
ff_draw_pc_font
(
uint8_t
*
dst
,
int
linesize
,
const
uint8_t
*
font
,
int
font_height
,
int
ch
,
int
fg
,
int
bg
);
#endif
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