diff options
author | Raphael Graf <rapha@cvs.openbsd.org> | 2019-02-25 12:34:36 +0000 |
---|---|---|
committer | Raphael Graf <rapha@cvs.openbsd.org> | 2019-02-25 12:34:36 +0000 |
commit | bc481e26e152d14bd0bdd0701dad09b5ce41057e (patch) | |
tree | 0a26cbd6df46f18ff193d3f65702a6529cd10a17 /app/video/video.1 | |
parent | 49ac02a827824d69ffe9f5a5b77d5eb8ef4aa492 (diff) |
Add support for yv12 encoding to video(1).
Frame data is converted to yv12 if Xv(3) does not support yuy2 and uyvy.
OK mpi@, landry@
Diffstat (limited to 'app/video/video.1')
-rw-r--r-- | app/video/video.1 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/video/video.1 b/app/video/video.1 index ce174c838..684b3a0b9 100644 --- a/app/video/video.1 +++ b/app/video/video.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: video.1,v 1.13 2016/06/04 07:44:32 mglocker Exp $ +.\" $OpenBSD: video.1,v 1.14 2019/02/25 12:34:35 rapha Exp $ .\" .\" Copyright (c) 2010 Jacob Meuser <jakemsr@openbsd.org> .\" @@ -15,7 +15,7 @@ .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" -.Dd $Mdocdate: June 4 2016 $ +.Dd $Mdocdate: February 25 2019 $ .Dt VIDEO 1 .Os .Sh NAME @@ -84,9 +84,10 @@ The default is 0, the first adaptor reported by .It Fl e Ar encoding Lowercase FOURCC name of video encoding to use. Valid arguments are -.Ql uyvy +.Ql uyvy , +.Ql yuy2 and -.Ql yuy2 . +.Ql yv12 . The default is .Ql yuy2 unless |