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
752207e3
Commit
752207e3
authored
Jun 02, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cook: Remove unused debug functions.
parent
b751f611
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
32 deletions
+0
-32
cook.c
libavcodec/cook.c
+0
-32
No files found.
libavcodec/cook.c
View file @
752207e3
...
...
@@ -166,38 +166,6 @@ typedef struct cook {
static
float
pow2tab
[
127
];
static
float
rootpow2tab
[
127
];
/* debug functions */
#ifdef COOKDEBUG
static
void
dump_float_table
(
float
*
table
,
int
size
,
int
delimiter
)
{
int
i
=
0
;
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
);
for
(
i
=
0
;
i
<
size
;
i
++
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"%5.1f, "
,
table
[
i
]);
if
((
i
+
1
)
%
delimiter
==
0
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
+
1
);
}
}
static
void
dump_int_table
(
int
*
table
,
int
size
,
int
delimiter
)
{
int
i
=
0
;
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
);
for
(
i
=
0
;
i
<
size
;
i
++
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d, "
,
table
[
i
]);
if
((
i
+
1
)
%
delimiter
==
0
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
+
1
);
}
}
static
void
dump_short_table
(
short
*
table
,
int
size
,
int
delimiter
)
{
int
i
=
0
;
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
);
for
(
i
=
0
;
i
<
size
;
i
++
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d, "
,
table
[
i
]);
if
((
i
+
1
)
%
delimiter
==
0
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"
\n
[%d]: "
,
i
+
1
);
}
}
#endif
/*************** init functions ***************/
/* table generator */
...
...
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