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
c89be82c
Commit
c89be82c
authored
Jun 18, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vp8: fix () in macros
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
aab23f5d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vp8.c
libavcodec/vp8.c
+1
-1
vp8dsp.c
libavcodec/vp8dsp.c
+1
-1
No files found.
libavcodec/vp8.c
View file @
c89be82c
...
...
@@ -2755,7 +2755,7 @@ static av_cold int vp8_decode_init_thread_copy(AVCodecContext *avctx)
return
0
;
}
#define REBASE(pic)
pic ? pic - &s_src->frames[0] + &s->frames[0] : NULL
#define REBASE(pic)
((pic) ? (pic) - &s_src->frames[0] + &s->frames[0] : NULL)
static
int
vp8_decode_update_thread_context
(
AVCodecContext
*
dst
,
const
AVCodecContext
*
src
)
...
...
libavcodec/vp8dsp.c
View file @
c89be82c
...
...
@@ -254,7 +254,7 @@ MK_IDCT_DC_ADD4_C(vp8)
int av_unused q2 = p[ 2 * stride]; \
int av_unused q3 = p[ 3 * stride];
#define clip_int8(n) (cm[
n
+ 0x80] - 0x80)
#define clip_int8(n) (cm[
(n)
+ 0x80] - 0x80)
static
av_always_inline
void
filter_common
(
uint8_t
*
p
,
ptrdiff_t
stride
,
int
is4tap
,
int
is_vp7
)
...
...
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