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
3d80ab01
Commit
3d80ab01
authored
Oct 01, 2013
by
Maxim Poliakovski
Committed by
Michael Niedermayer
Oct 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atrac: Move doxygen comments to the header
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
cc2330fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
19 deletions
+16
-19
atrac.c
libavcodec/atrac.c
+1
-18
atrac.h
libavcodec/atrac.h
+15
-1
No files found.
libavcodec/atrac.c
View file @
3d80ab01
...
...
@@ -45,10 +45,6 @@ static const float qmf_48tap_half[24] = {
-
0
.
0435
96379
,
-
0
.
099384367
,
0
.
13207909
,
0
.
46424159
};
/**
* Generate common tables
*/
av_cold
void
ff_atrac_generate_tables
(
void
)
{
int
i
;
...
...
@@ -67,20 +63,7 @@ av_cold void ff_atrac_generate_tables(void)
}
}
/**
* Quadrature mirror synthesis filter.
*
* @param inlo lower part of spectrum
* @param inhi higher part of spectrum
* @param nIn size of spectrum buffer
* @param pOut out buffer
* @param delayBuf delayBuf buffer
* @param temp temp buffer
*/
void
ff_atrac_iqmf
(
float
*
inlo
,
float
*
inhi
,
unsigned
int
nIn
,
float
*
pOut
,
float
*
delayBuf
,
float
*
temp
)
void
ff_atrac_iqmf
(
float
*
inlo
,
float
*
inhi
,
unsigned
int
nIn
,
float
*
pOut
,
float
*
delayBuf
,
float
*
temp
)
{
int
i
,
j
;
float
*
p1
,
*
p3
;
...
...
libavcodec/atrac.h
View file @
3d80ab01
...
...
@@ -31,7 +31,21 @@
extern
float
ff_atrac_sf_table
[
64
];
/**
* Generate common tables.
*/
void
ff_atrac_generate_tables
(
void
);
void
ff_atrac_iqmf
(
float
*
inlo
,
float
*
inhi
,
unsigned
int
nIn
,
float
*
pOut
,
float
*
delayBuf
,
float
*
temp
);
/**
* Quadrature mirror synthesis filter.
*
* @param inlo lower part of spectrum
* @param inhi higher part of spectrum
* @param nIn size of spectrum buffer
* @param pOut out buffer
* @param delayBuf delayBuf buffer
* @param temp temp buffer
*/
void
ff_atrac_iqmf
(
float
*
inlo
,
float
*
inhi
,
unsigned
int
nIn
,
float
*
pOut
,
float
*
delayBuf
,
float
*
temp
);
#endif
/* AVCODEC_ATRAC_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