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
8868d310
Commit
8868d310
authored
Sep 07, 2005
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use av_log in debug mode
Originally committed as revision 4570 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
da7272b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
vp3.c
libavcodec/vp3.c
+10
-10
No files found.
libavcodec/vp3.c
View file @
8868d310
...
...
@@ -75,61 +75,61 @@
#define DEBUG_IDCT 0
#if DEBUG_VP3
#define debug_vp3
printf
#define debug_vp3
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_vp3
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_INIT
#define debug_init
printf
#define debug_init
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_init
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_DEQUANTIZERS
#define debug_dequantizers
printf
#define debug_dequantizers
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_dequantizers
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_BLOCK_CODING
#define debug_block_coding
printf
#define debug_block_coding
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_block_coding
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_MODES
#define debug_modes
printf
#define debug_modes
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_modes
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_VECTORS
#define debug_vectors
printf
#define debug_vectors
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_vectors
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_TOKEN
#define debug_token
printf
#define debug_token
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_token
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_VLC
#define debug_vlc
printf
#define debug_vlc
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_vlc
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_DC_PRED
#define debug_dc_pred
printf
#define debug_dc_pred
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_dc_pred
(
const
char
*
format
,
...)
{
}
#endif
#if DEBUG_IDCT
#define debug_idct
printf
#define debug_idct
(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
#else
static
inline
void
debug_idct
(
const
char
*
format
,
...)
{
}
#endif
...
...
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