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
aab6374b
Commit
aab6374b
authored
Apr 25, 2011
by
Alex Converse
Committed by
Alex Converse
May 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indeo3: Eliminate use of long.
parent
47bc52f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
indeo3.c
libavcodec/indeo3.c
+11
-11
No files found.
libavcodec/indeo3.c
View file @
aab6374b
...
...
@@ -149,13 +149,13 @@ static av_cold void iv_free_func(Indeo3DecodeContext *s)
}
struct
ustr
{
long
xpos
;
long
ypos
;
long
width
;
long
height
;
long
split_flag
;
long
split_direction
;
long
usl7
;
int
xpos
;
int
ypos
;
int
width
;
int
height
;
int
split_flag
;
int
split_direction
;
int
usl7
;
};
...
...
@@ -203,12 +203,12 @@ struct ustr {
static
void
iv_Decode_Chunk
(
Indeo3DecodeContext
*
s
,
uint8_t
*
cur
,
uint8_t
*
ref
,
int
width
,
int
height
,
const
uint8_t
*
buf1
,
long
cb_offset
,
const
uint8_t
*
hdr
,
const
uint8_t
*
buf1
,
int
cb_offset
,
const
uint8_t
*
hdr
,
const
uint8_t
*
buf2
,
int
min_width_160
)
{
uint8_t
bit_buf
;
unsigned
long
bit_pos
,
lv
,
lv1
,
lv2
;
long
*
width_tbl
,
width_tbl_arr
[
10
];
unsigned
int
bit_pos
,
lv
,
lv1
,
lv2
;
int
*
width_tbl
,
width_tbl_arr
[
10
];
const
signed
char
*
ref_vectors
;
uint8_t
*
cur_frm_pos
,
*
ref_frm_pos
,
*
cp
,
*
cp2
;
uint32_t
*
cur_lp
,
*
ref_lp
;
...
...
@@ -982,7 +982,7 @@ static int iv_decode_frame(AVCodecContext *avctx,
Indeo3DecodeContext
*
s
=
avctx
->
priv_data
;
unsigned
int
image_width
,
image_height
,
chroma_width
,
chroma_height
;
unsigned
long
flags
,
cb_offset
,
data_size
,
unsigned
int
flags
,
cb_offset
,
data_size
,
y_offset
,
v_offset
,
u_offset
,
mc_vector_count
;
const
uint8_t
*
hdr_pos
,
*
buf_pos
;
...
...
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