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
69915b48
Commit
69915b48
authored
Jan 21, 2011
by
Justin Ruggles
Committed by
Mans Rullgard
Jan 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iir: Change dst param to float* in ff_iir_filter_flt().
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
8f4a5d22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
iirfilter.c
libavcodec/iirfilter.c
+1
-1
iirfilter.h
libavcodec/iirfilter.h
+1
-1
No files found.
libavcodec/iirfilter.c
View file @
69915b48
...
...
@@ -269,7 +269,7 @@ void ff_iir_filter(const struct FFIIRFilterCoeffs *c,
void
ff_iir_filter_flt
(
const
struct
FFIIRFilterCoeffs
*
c
,
struct
FFIIRFilterState
*
s
,
int
size
,
const
float
*
src
,
int
sstep
,
void
*
dst
,
int
dstep
)
const
float
*
src
,
int
sstep
,
float
*
dst
,
int
dstep
)
{
if
(
c
->
order
==
4
)
{
FILTER_BW_O4
(
float
,
FLT
)
...
...
libavcodec/iirfilter.h
View file @
69915b48
...
...
@@ -117,6 +117,6 @@ void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterSta
*/
void
ff_iir_filter_flt
(
const
struct
FFIIRFilterCoeffs
*
coeffs
,
struct
FFIIRFilterState
*
state
,
int
size
,
const
float
*
src
,
int
sstep
,
void
*
dst
,
int
dstep
);
const
float
*
src
,
int
sstep
,
float
*
dst
,
int
dstep
);
#endif
/* AVCODEC_IIRFILTER_H */
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