mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-04 17:46:45 +00:00
avformat/internal: always check arguments of hex_dump_debug()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
374cf93548
commit
3e14ed05f1
@ -34,7 +34,7 @@
|
||||
#ifdef DEBUG
|
||||
# define hex_dump_debug(class, buf, size) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size)
|
||||
#else
|
||||
# define hex_dump_debug(class, buf, size)
|
||||
# define hex_dump_debug(class, buf, size) do { if (0) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size); } while(0)
|
||||
#endif
|
||||
|
||||
typedef struct AVCodecTag {
|
||||
|
Loading…
Reference in New Issue
Block a user