Fix missing comma
This commit is contained in:
parent
67f4359242
commit
9740b635dd
|
@ -323,14 +323,14 @@ void zm_dump_codecpar(const AVCodecParameters *par);
|
||||||
);
|
);
|
||||||
|
|
||||||
#if LIBAVUTIL_VERSION_CHECK(54, 4, 0, 74, 100)
|
#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, \
|
text, \
|
||||||
frame->format, \
|
frame->format, \
|
||||||
av_get_pix_fmt_name((AVPixelFormat)frame->format), \
|
av_get_pix_fmt_name((AVPixelFormat)frame->format), \
|
||||||
frame->width, \
|
frame->width, \
|
||||||
frame->height, \
|
frame->height, \
|
||||||
frame->linesize[0], frame->linesize[1], \
|
frame->linesize[0], frame->linesize[1], \
|
||||||
frame->pts \
|
frame->pts, \
|
||||||
frame->key_frame \
|
frame->key_frame \
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue