Commit e01a2707 authored by Mark Thompson's avatar Mark Thompson

lavc/v4l2: Fix printf format for int64_t

parent c941e99b
......@@ -180,7 +180,7 @@ static int v4l2_prepare_encoder(V4L2m2mContext *s)
av_log(avctx, AV_LOG_DEBUG,
"Encoder Context: id (%d), profile (%d), frame rate(%d/%d), number b-frames (%d), "
"gop size (%d), bit rate (%ld), qmin (%d), qmax (%d)\n",
"gop size (%d), bit rate (%"PRId64"), qmin (%d), qmax (%d)\n",
avctx->codec_id, avctx->profile, avctx->framerate.num, avctx->framerate.den,
avctx->max_b_frames, avctx->gop_size, avctx->bit_rate, avctx->qmin, avctx->qmax);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment