summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2013-06-16 17:14:20 +0200
committerRudolf Polzer <divverent@xonotic.org>2013-06-16 17:14:47 +0200
commitdcd36c79c7ff124dacbe01b6c28f68585fd66a2b (patch)
treee3f0f38bff103cfa162710d72f790fbdfb23a7d3 /video
parent7ae4242820236bdd32ed080d05d674fdfe16483e (diff)
downloadmpv-dcd36c79c7ff124dacbe01b6c28f68585fd66a2b.tar.bz2
mpv-dcd36c79c7ff124dacbe01b6c28f68585fd66a2b.tar.xz
encode_lavc strings: use new option syntax
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_lavc.c4
1 files changed, 2 insertions, 2 deletions
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);