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
03beac5b
Commit
03beac5b
authored
Dec 10, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/xpmdec: define constants
parent
00502370
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
xpmdec.c
libavcodec/xpmdec.c
+8
-4
No files found.
libavcodec/xpmdec.c
View file @
03beac5b
...
...
@@ -26,6 +26,10 @@
#include "avcodec.h"
#include "internal.h"
#define MIN_ELEMENT ' '
#define MAX_ELEMENT 0xfe
#define NB_ELEMENTS (MAX_ELEMENT - MIN_ELEMENT + 1)
typedef
struct
XPMContext
{
uint32_t
*
pixels
;
int
pixels_size
;
...
...
@@ -290,10 +294,10 @@ static int ascii2index(const uint8_t *cpixel, int cpp)
int
n
=
0
,
m
=
1
,
i
;
for
(
i
=
0
;
i
<
cpp
;
i
++
)
{
if
(
*
p
<
' '
||
*
p
>
0xfe
)
if
(
*
p
<
MIN_ELEMENT
||
*
p
>
MAX_ELEMENT
)
return
AVERROR_INVALIDDATA
;
n
+=
(
*
p
++
-
' '
)
*
m
;
m
*=
223
;
n
+=
(
*
p
++
-
MIN_ELEMENT
)
*
m
;
m
*=
NB_ELEMENTS
;
}
return
n
;
}
...
...
@@ -346,7 +350,7 @@ static int xpm_decode_frame(AVCodecContext *avctx, void *data,
size
=
1
;
for
(
i
=
0
;
i
<
cpp
;
i
++
)
size
*=
223
;
size
*=
NB_ELEMENTS
;
if
(
ncolors
<=
0
||
ncolors
>
size
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"invalid number of colors: %d
\n
"
,
ncolors
);
...
...
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