Fix missing comma

This commit is contained in:
Isaac Connor 2021-01-11 11:15:22 -05:00
parent 67f4359242
commit 9740b635dd
1 changed files with 2 additions and 2 deletions

View File

@ -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 \
);