From 9740b635dd0b3306a2b720ffa45089f2c0f20d19 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 11 Jan 2021 11:15:22 -0500 Subject: [PATCH] Fix missing comma --- src/zm_ffmpeg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_ffmpeg.h b/src/zm_ffmpeg.h index c37fe3562..5c95bcad2 100644 --- a/src/zm_ffmpeg.h +++ b/src/zm_ffmpeg.h @@ -323,14 +323,14 @@ void zm_dump_codecpar(const AVCodecParameters *par); ); #if LIBAVUTIL_VERSION_CHECK(54, 4, 0, 74, 100) -#define zm_dump_video_frame(frame,text) Debug(1, "%s: format %d %s %dx%d linesize:%dx%d pts: %" PRId64 " keyframe: %d", \ +#define zm_dump_video_frame(frame, text) Debug(1, "%s: format %d %s %dx%d linesize:%dx%d pts: %" PRId64 " keyframe: %d", \ text, \ frame->format, \ av_get_pix_fmt_name((AVPixelFormat)frame->format), \ frame->width, \ frame->height, \ frame->linesize[0], frame->linesize[1], \ - frame->pts \ + frame->pts, \ frame->key_frame \ );