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
f480fcb1
Commit
f480fcb1
authored
Feb 06, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bink: fix pointer type warnings.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
677911ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bink.c
libavcodec/bink.c
+2
-2
No files found.
libavcodec/bink.c
View file @
f480fcb1
...
...
@@ -857,7 +857,7 @@ static int binkb_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx,
memset
(
dctblock
,
0
,
sizeof
(
*
dctblock
)
*
64
);
dctblock
[
0
]
=
binkb_get_value
(
c
,
BINKB_SRC_INTRA_DC
);
qp
=
binkb_get_value
(
c
,
BINKB_SRC_INTRA_Q
);
read_dct_coeffs
(
gb
,
dctblock
,
bink_scan
,
binkb_intra_quant
,
qp
);
read_dct_coeffs
(
gb
,
dctblock
,
bink_scan
,
(
const
int32_t
(
*
)[
64
])
binkb_intra_quant
,
qp
);
c
->
bdsp
.
idct_put
(
dst
,
stride
,
dctblock
);
break
;
case
3
:
...
...
@@ -890,7 +890,7 @@ static int binkb_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx,
memset
(
dctblock
,
0
,
sizeof
(
*
dctblock
)
*
64
);
dctblock
[
0
]
=
binkb_get_value
(
c
,
BINKB_SRC_INTER_DC
);
qp
=
binkb_get_value
(
c
,
BINKB_SRC_INTER_Q
);
read_dct_coeffs
(
gb
,
dctblock
,
bink_scan
,
binkb_inter_quant
,
qp
);
read_dct_coeffs
(
gb
,
dctblock
,
bink_scan
,
(
const
int32_t
(
*
)[
64
])
binkb_inter_quant
,
qp
);
c
->
bdsp
.
idct_add
(
dst
,
stride
,
dctblock
);
break
;
case
5
:
...
...
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