Commit 2649ea42 authored by bcoudurier's avatar bcoudurier

simplify PRINT_KEY

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5850 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8f1cbe00
......@@ -163,14 +163,8 @@ static const uint8_t mxf_essence_element_key[] = { 0x06,0x0e,0x2b,0x
#define IS_KLV_KEY(x, y) (!memcmp(x, y, sizeof(y)))
#define PRINT_KEY(x) \
do { \
int iterpk; \
for (iterpk = 0; iterpk < 16; iterpk++) { \
av_log(NULL, AV_LOG_DEBUG, "%02X ", x[iterpk]); \
} \
av_log(NULL, AV_LOG_DEBUG, "\n"); \
} while (0); \
#define PRINT_KEY(x) dprintf("%02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n", \
x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9], x[10], x[11], x[12], x[13], x[14], x[15])
static int64_t klv_decode_ber_length(ByteIOContext *pb)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment