1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

avcodec/xbm_parser: split long line

This commit is contained in:
Paul B Mahol 2021-02-05 15:43:50 +01:00
parent 84d5df5446
commit 4978512dcd

View File

@ -34,7 +34,11 @@ typedef struct XBMParseContext {
int count;
} XBMParseContext;
#define KEY (((uint64_t)'\n' << 56) | ((uint64_t)'#' << 48) | ((uint64_t)'d' << 40) | ((uint64_t)'e' << 32) | ((uint64_t)'f' << 24) | ('i' << 16) | ('n' << 8) | ('e' << 0))
#define KEY (((uint64_t)'\n' << 56) | ((uint64_t)'#' << 48) | \
((uint64_t)'d' << 40) | ((uint64_t)'e' << 32) | \
((uint64_t)'f' << 24) | ('i' << 16) | ('n' << 8) | \
('e' << 0))
#define END ((';' << 8) | ('\n' << 0))
static int xbm_init(AVCodecParserContext *s)