From dcd36c79c7ff124dacbe01b6c28f68585fd66a2b Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 16 Jun 2013 17:14:20 +0200 Subject: encode_lavc strings: use new option syntax --- video/out/vo_lavc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'video') diff --git a/video/out/vo_lavc.c b/video/out/vo_lavc.c index 73d1141b35..ca3f1c5a5f 100644 --- a/video/out/vo_lavc.c +++ b/video/out/vo_lavc.c @@ -66,7 +66,7 @@ static int preinit(struct vo *vo, const char *arg) struct priv *vc; if (!encode_lavc_available(vo->encode_lavc_ctx)) { mp_msg(MSGT_ENCODE, MSGL_ERR, - "vo-lavc: the option -o (output file) must be specified\n"); + "vo-lavc: the option --o (output file) must be specified\n"); return -1; } vo->priv = talloc_zero(vo, struct priv); @@ -399,7 +399,7 @@ static void draw_image(struct vo *vo, mp_image_t *mpi) int64_t step = vc->mindeltapts ? vc->mindeltapts : 1; if (frameipts < vc->lastipts + step) { mp_msg(MSGT_ENCODE, MSGL_INFO, - "vo-lavc: -oneverdrop increased pts by %d\n", + "vo-lavc: --oneverdrop increased pts by %d\n", (int) (vc->lastipts - frameipts + step)); frameipts = vc->lastipts + step; vc->lastpts = frameipts * timeunit - encode_lavc_getoffset(ectx, vc->stream); -- cgit v1.2.3