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
29852ffc
Commit
29852ffc
authored
Aug 16, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dirac_dwt: Remove unused ff_spatial_idwt2()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
cbdf4d6a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
17 deletions
+0
-17
dirac_dwt.c
libavcodec/dirac_dwt.c
+0
-14
dirac_dwt.h
libavcodec/dirac_dwt.h
+0
-3
No files found.
libavcodec/dirac_dwt.c
View file @
29852ffc
...
...
@@ -569,17 +569,3 @@ void ff_spatial_idwt_slice2(DWTContext *d, int y)
}
}
int
ff_spatial_idwt2
(
IDWTELEM
*
buffer
,
int
width
,
int
height
,
int
stride
,
enum
dwt_type
type
,
int
decomposition_count
,
IDWTELEM
*
temp
)
{
DWTContext
d
;
int
y
;
if
(
ff_spatial_idwt_init2
(
&
d
,
buffer
,
width
,
height
,
stride
,
type
,
decomposition_count
,
temp
))
return
-
1
;
for
(
y
=
0
;
y
<
d
.
height
;
y
+=
4
)
ff_spatial_idwt_slice2
(
&
d
,
y
);
return
0
;
}
libavcodec/dirac_dwt.h
View file @
29852ffc
...
...
@@ -80,9 +80,6 @@ int ff_spatial_idwt_init2(DWTContext *d, IDWTELEM *buffer, int width, int height
int
stride
,
enum
dwt_type
type
,
int
decomposition_count
,
IDWTELEM
*
temp
);
int
ff_spatial_idwt2
(
IDWTELEM
*
buffer
,
int
width
,
int
height
,
int
stride
,
enum
dwt_type
type
,
int
decomposition_count
,
IDWTELEM
*
temp
);
void
ff_spatial_idwt_slice2
(
DWTContext
*
d
,
int
y
);
// shared stuff for simd optimiztions
...
...
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