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
707f58f5
Commit
707f58f5
authored
Oct 24, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cook: Remove some silly Doxygen comments
parent
8a61ba0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
17 deletions
+2
-17
cook.c
libavcodec/cook.c
+2
-17
No files found.
libavcodec/cook.c
View file @
707f58f5
...
@@ -84,11 +84,11 @@ typedef struct {
...
@@ -84,11 +84,11 @@ typedef struct {
int
bits_per_subpacket
;
int
bits_per_subpacket
;
int
bits_per_subpdiv
;
int
bits_per_subpdiv
;
int
total_subbands
;
int
total_subbands
;
int
numvector_size
;
//
/<
1 << log2_numvector_size;
int
numvector_size
;
// 1 << log2_numvector_size;
float
mono_previous_buffer1
[
1024
];
float
mono_previous_buffer1
[
1024
];
float
mono_previous_buffer2
[
1024
];
float
mono_previous_buffer2
[
1024
];
/** gain buffers */
cook_gains
gains1
;
cook_gains
gains1
;
cook_gains
gains2
;
cook_gains
gains2
;
int
gain_1
[
9
];
int
gain_1
[
9
];
...
@@ -299,9 +299,6 @@ static inline int decode_bytes(const uint8_t *inbuffer, uint8_t *out, int bytes)
...
@@ -299,9 +299,6 @@ static inline int decode_bytes(const uint8_t *inbuffer, uint8_t *out, int bytes)
return
off
;
return
off
;
}
}
/**
* Cook uninit
*/
static
av_cold
int
cook_decode_close
(
AVCodecContext
*
avctx
)
static
av_cold
int
cook_decode_close
(
AVCodecContext
*
avctx
)
{
{
int
i
;
int
i
;
...
@@ -631,12 +628,6 @@ static void decode_vectors(COOKContext *q, COOKSubpacket *p, int *category,
...
@@ -631,12 +628,6 @@ static void decode_vectors(COOKContext *q, COOKSubpacket *p, int *category,
}
}
/**
* function for decoding mono data
*
* @param q pointer to the COOKContext
* @param mlt_buffer pointer to mlt coefficients
*/
static
int
mono_decode
(
COOKContext
*
q
,
COOKSubpacket
*
p
,
float
*
mlt_buffer
)
static
int
mono_decode
(
COOKContext
*
q
,
COOKSubpacket
*
p
,
float
*
mlt_buffer
)
{
{
int
category_index
[
128
]
=
{
0
};
int
category_index
[
128
]
=
{
0
};
...
@@ -747,7 +738,6 @@ static void imlt_gain(COOKContext *q, float *inbuffer,
...
@@ -747,7 +738,6 @@ static void imlt_gain(COOKContext *q, float *inbuffer,
*
*
* @param q pointer to the COOKContext
* @param q pointer to the COOKContext
* @param decouple_tab decoupling array
* @param decouple_tab decoupling array
*
*/
*/
static
void
decouple_info
(
COOKContext
*
q
,
COOKSubpacket
*
p
,
int
*
decouple_tab
)
static
void
decouple_info
(
COOKContext
*
q
,
COOKSubpacket
*
p
,
int
*
decouple_tab
)
{
{
...
@@ -954,11 +944,6 @@ static int decode_subpacket(COOKContext *q, COOKSubpacket *p,
...
@@ -954,11 +944,6 @@ static int decode_subpacket(COOKContext *q, COOKSubpacket *p,
}
}
/**
* Cook frame decoding
*
* @param avctx pointer to the AVCodecContext
*/
static
int
cook_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
static
int
cook_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
{
...
...
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