ffmpeg | branch: master | Paul B Mahol <[email protected]> | Fri Feb  5 15:43:50 
2021 +0100| [4978512dcd15adb30fb6dd9006819900c30fc686] | committer: Paul B Mahol

avcodec/xbm_parser: split long line

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4978512dcd15adb30fb6dd9006819900c30fc686
---

 libavcodec/xbm_parser.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libavcodec/xbm_parser.c b/libavcodec/xbm_parser.c
index 30d23200db..bcbc3222f4 100644
--- a/libavcodec/xbm_parser.c
+++ b/libavcodec/xbm_parser.c
@@ -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)

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to