From owner-cvs-ports@FreeBSD.ORG Fri Mar 26 01:03:08 2004 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F2416A4CE; Fri, 26 Mar 2004 01:03:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A29143D46; Fri, 26 Mar 2004 01:03:08 -0800 (PST) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2Q938Ge017166; Fri, 26 Mar 2004 01:03:08 -0800 (PST) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2Q938RW017165; Fri, 26 Mar 2004 01:03:08 -0800 (PST) (envelope-from pav) Message-Id: <200403260903.i2Q938RW017165@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 26 Mar 2004 01:03:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia Makefile ports/multimedia/y4mscaler Makefile distinfo pkg-descr X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Mar 2004 09:03:08 -0000 pav 2004/03/26 01:03:08 PST FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/y4mscaler Makefile distinfo pkg-descr Log: Add y4mscaler, a general-purpose video scaler which operates on YUV4MPEG2 streams, as produced and consumed by the MJPEGtools such as lav2yuv and mpeg2enc(1). y4mscaler is meant to be used in a pipeline. Thus, input is from stdin, and output is to stdout. The essential function of y4mscaler is to scale a specified "active" region of the input stream (the source) into a specified active region of the output stream (the target). Pixels outside of the active region of the source are ignored; pixels outside of the active region of the target are filled with a background color. The source may additionally have a matte applied to it; pixels outside the source matte are set to a separately specified background color. y4mscaler correctly handles chroma sampling, and thus it can also perform chroma subsampling conversions. The YUV4MPEG2 stream format currently only supports 4:2:0 subsampling, although y4mscaler can process 4:1:1, 4:2:2, and 4:4:4 modes by abusing the YUV4MPEG2 format a bit. Includes preset parameters for popular output streams: DVD, SVCD, VCD, DV, CVD, and SVCD/VCD still images. PR: ports/63962 Submitted by: michael johnson Revision Changes Path 1.62 +1 -0 ports/multimedia/Makefile 1.1 +53 -0 ports/multimedia/y4mscaler/Makefile (new) 1.1 +2 -0 ports/multimedia/y4mscaler/distinfo (new) 1.1 +24 -0 ports/multimedia/y4mscaler/pkg-descr (new)