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
b5a33ff1
Commit
b5a33ff1
authored
Feb 28, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
suppress the second warning
Originally committed as revision 12276 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
7e14b808
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
snow.c
libavcodec/snow.c
+3
-1
No files found.
libavcodec/snow.c
View file @
b5a33ff1
...
...
@@ -2891,7 +2891,9 @@ static int get_4block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index){
const
int
ref_stride
=
s
->
current_picture
.
linesize
[
plane_index
];
uint8_t
*
dst
=
s
->
current_picture
.
data
[
plane_index
];
uint8_t
*
src
=
s
->
input_picture
.
data
[
plane_index
];
static
const
IDWTELEM
zero_dst
[
4096
];
//FIXME
//FIXME zero_dst is const but add_yblock changes dst if add is 0 (this is never the case for dst=zero_dst
// const has only been removed from zero_dst to suppress a warning
static
IDWTELEM
zero_dst
[
4096
];
//FIXME
const
int
b_stride
=
s
->
b_width
<<
s
->
block_max_depth
;
const
int
w
=
p
->
width
;
const
int
h
=
p
->
height
;
...
...
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