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
2ab12b39
Commit
2ab12b39
authored
Feb 01, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const
Originally committed as revision 11787 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8c4bd28b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
vmnc.c
libavcodec/vmnc.c
+7
-7
No files found.
libavcodec/vmnc.c
View file @
2ab12b39
...
...
@@ -70,7 +70,7 @@ typedef struct VmncContext {
}
VmncContext
;
/* read pixel value from stream */
static
av_always_inline
int
vmnc_get_pixel
(
uint8_t
*
buf
,
int
bpp
,
int
be
)
{
static
av_always_inline
int
vmnc_get_pixel
(
const
uint8_t
*
buf
,
int
bpp
,
int
be
)
{
switch
(
bpp
*
2
+
be
)
{
case
2
:
case
3
:
return
*
buf
;
...
...
@@ -82,7 +82,7 @@ static av_always_inline int vmnc_get_pixel(uint8_t* buf, int bpp, int be) {
}
}
static
void
load_cursor
(
VmncContext
*
c
,
uint8_t
*
src
)
static
void
load_cursor
(
VmncContext
*
c
,
const
uint8_t
*
src
)
{
int
i
,
j
,
p
;
const
int
bpp
=
c
->
bpp2
;
...
...
@@ -200,7 +200,7 @@ static av_always_inline void paint_rect(uint8_t *dst, int dx, int dy, int w, int
}
}
static
av_always_inline
void
paint_raw
(
uint8_t
*
dst
,
int
w
,
int
h
,
uint8_t
*
src
,
int
bpp
,
int
be
,
int
stride
)
static
av_always_inline
void
paint_raw
(
uint8_t
*
dst
,
int
w
,
int
h
,
const
uint8_t
*
src
,
int
bpp
,
int
be
,
int
stride
)
{
int
i
,
j
,
p
;
for
(
j
=
0
;
j
<
h
;
j
++
)
{
...
...
@@ -223,14 +223,14 @@ static av_always_inline void paint_raw(uint8_t *dst, int w, int h, uint8_t* src,
}
}
static
int
decode_hextile
(
VmncContext
*
c
,
uint8_t
*
dst
,
uint8_t
*
src
,
int
ssize
,
int
w
,
int
h
,
int
stride
)
static
int
decode_hextile
(
VmncContext
*
c
,
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
ssize
,
int
w
,
int
h
,
int
stride
)
{
int
i
,
j
,
k
;
int
bg
=
0
,
fg
=
0
,
rects
,
color
,
flags
,
xy
,
wh
;
const
int
bpp
=
c
->
bpp2
;
uint8_t
*
dst2
;
int
bw
=
16
,
bh
=
16
;
uint8_t
*
ssrc
=
src
;
const
uint8_t
*
ssrc
=
src
;
for
(
j
=
0
;
j
<
h
;
j
+=
16
)
{
dst2
=
dst
;
...
...
@@ -283,11 +283,11 @@ static int decode_hextile(VmncContext *c, uint8_t* dst, uint8_t* src, int ssize,
return
src
-
ssrc
;
}
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
uint8_t
*
buf
,
int
buf_size
)
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
const
uint8_t
*
buf
,
int
buf_size
)
{
VmncContext
*
const
c
=
avctx
->
priv_data
;
uint8_t
*
outptr
;
uint8_t
*
src
=
buf
;
const
uint8_t
*
src
=
buf
;
int
dx
,
dy
,
w
,
h
,
depth
,
enc
,
chunks
,
res
,
size_left
;
c
->
pic
.
reference
=
1
;
...
...
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