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
aab23f5d
Commit
aab23f5d
authored
Jun 18, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vp9: fix () in macros
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
28bf1115
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vp9.c
libavcodec/vp9.c
+1
-1
vp9dsp.c
libavcodec/vp9dsp.c
+1
-1
No files found.
libavcodec/vp9.c
View file @
aab23f5d
...
...
@@ -325,7 +325,7 @@ static int update_size(AVCodecContext *ctx, int w, int h)
s
->
cols
=
(
w
+
7
)
>>
3
;
s
->
rows
=
(
h
+
7
)
>>
3
;
#define assign(var, type, n) var = (type) p; p += s->sb_cols *
n
* sizeof(*var)
#define assign(var, type, n) var = (type) p; p += s->sb_cols *
(n)
* sizeof(*var)
av_freep
(
&
s
->
intra_pred_data
[
0
]);
p
=
av_malloc
(
s
->
sb_cols
*
(
240
+
sizeof
(
*
s
->
lflvl
)
+
16
*
sizeof
(
*
s
->
above_mv_ctx
)));
if
(
!
p
)
...
...
libavcodec/vp9dsp.c
View file @
aab23f5d
...
...
@@ -896,7 +896,7 @@ itxfm_wrapper(iadst, idct, sz, bits, 0) \
itxfm_wrapper(idct, iadst, sz, bits, 0) \
itxfm_wrapper(iadst, iadst, sz, bits, 0)
#define IN(x) in[
x
* stride]
#define IN(x) in[
(x)
* stride]
static
av_always_inline
void
idct4_1d
(
const
int16_t
*
in
,
ptrdiff_t
stride
,
int16_t
*
out
,
int
pass
)
...
...
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