This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
log: Use a do {} while (0) for tlog
Avoid the warning `-Wempty-body`.
tags/n3.0
Luca Barbato
10 years ago
parent
febfb49a70
commit
34138ece23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/internal.h
+ 1
- 1
libavcodec/internal.h
View File
@@ -63,7 +63,7 @@
#ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
#else
# define ff_tlog(ctx, ...) while(0)
# define ff_tlog(ctx, ...)
do { }
while
(0)
#endif
Write
Preview
Loading…
Cancel
Save