platform/upstream/videoproto.git
11 years agovideoproto 2.3.2 videoproto-2.3.2
Alan Coopersmith [Tue, 23 Jul 2013 04:40:14 +0000 (21:40 -0700)]
videoproto 2.3.2

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11 years agoconfig: Add missing AC_CONFIG_SRCDIR
Alan Coopersmith [Tue, 23 Jul 2013 04:36:29 +0000 (21:36 -0700)]
config: Add missing AC_CONFIG_SRCDIR

Regroup AC statements under the Autoconf initialization section.
Regroup AM statements under the Automake initialization section.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11 years agoTrim trailing whitespace
Alan Coopersmith [Fri, 28 Jun 2013 05:14:36 +0000 (22:14 -0700)]
Trim trailing whitespace

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11 years agoXvproto.h: fix xvQueryEncodingsReply to match actual wire protocol
Alan Coopersmith [Sun, 23 Jun 2013 07:34:52 +0000 (00:34 -0700)]
Xvproto.h: fix xvQueryEncodingsReply to match actual wire protocol

padl3 was declared as CARD32, which for proper alignment, got two
additional bytes of padding silently inserted before it.  Declaring
it as CARD16 aligns it properly after the CARD16 num_encodings.

Fixes clang warning:
Xvproto.h:462:10: warning: padding struct 'struct _QueryEncodingsReply' with 2 bytes to align 'padl3' [-Wpadded]
  CARD32 padl3 B32;
         ^
This makes sizeof(xvQueryEncodingsReply) match the sz_xvQueryEncodingsReply
which is used in libXv & the X server for the size sent over the wire.

Reported-by: Daniel Martin <consume.noise@gmail.com>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11 years agoXvproto: fix xvEncodingInfo to match actual wire protocol
Julien Cristau [Sun, 9 Jun 2013 17:00:29 +0000 (19:00 +0200)]
Xvproto: fix xvEncodingInfo to match actual wire protocol

The padding is *before* the rate field, so the rate is placed on a 32bit
boundary.  This change adds explicit padding between height and rate,
and removes extraneous padding after the rate field, which the server
never sent and xlib never read.

This changes sizeof(xvEncodingInfo).  Hopefully that's not a big deal as
clients only see the Xlib structure XvEncodingInfo.

Debian bug#657215

Reported-by: Kevin Ryde <user42@zip.com.au>
Signed-off-by: Julien Cristau <jcristau@debian.org>
Reviewed-by: Daniel Martin <consume.noise@gmail.com>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11 years agoautogen.sh: Implement GNOME Build API
Colin Walters [Wed, 4 Jan 2012 22:37:06 +0000 (17:37 -0500)]
autogen.sh: Implement GNOME Build API

http://people.gnome.org/~walters/docs/build-api.txt

Signed-off-by: Adam Jackson <ajax@redhat.com>
11 years agoconfigure: Remove AM_MAINTAINER_MODE
Adam Jackson [Tue, 15 Jan 2013 19:01:10 +0000 (14:01 -0500)]
configure: Remove AM_MAINTAINER_MODE

Signed-off-by: Adam Jackson <ajax@redhat.com>
14 years agovideoproto 2.3.1 videoproto-2.3.1
Adam Jackson [Tue, 10 Aug 2010 14:17:10 +0000 (10:17 -0400)]
videoproto 2.3.1

Signed-off-by: Adam Jackson <ajax@redhat.com>
14 years agoconfig: remove the pkgconfig pc.in file from EXTRA_DIST
Gaetan Nadon [Sun, 28 Mar 2010 23:00:31 +0000 (19:00 -0400)]
config: remove the pkgconfig pc.in file from EXTRA_DIST

Automake always includes it in the tarball.

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
14 years agorequire autoconf 2.60 because of $(docdir) use
Rémi Cardona [Thu, 17 Dec 2009 07:42:27 +0000 (08:42 +0100)]
require autoconf 2.60 because of $(docdir) use

Signed-off-by: Rémi Cardona <remi@gentoo.org>
Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
14 years agoMakefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Gaetan Nadon [Mon, 23 Nov 2009 00:24:48 +0000 (19:24 -0500)]
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES

Now that the INSTALL file is generated.
Allows running make maintainer-clean.

14 years agoREADME: file created or updated #24206
Gaetan Nadon [Mon, 16 Nov 2009 16:13:30 +0000 (11:13 -0500)]
README: file created or updated #24206

Contains a set of URLs to freedesktop.org.

14 years agoMakefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
Gaetan Nadon [Mon, 16 Nov 2009 00:45:27 +0000 (19:45 -0500)]
Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432

ChangeLog filename is known to Automake and requires no further
coding in the makefile.

14 years agoMakefile.am: INSTALL file is missing or incorrect #24206
Gaetan Nadon [Sun, 15 Nov 2009 23:31:29 +0000 (18:31 -0500)]
Makefile.am: INSTALL file is missing or incorrect #24206

The standard GNU file on building/installing  tarball is copied
using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS
Add INSTALL target

14 years agoconfigure.ac: deploy the new XORG_DEFAULT_OPTIONS #24242
Gaetan Nadon [Sun, 15 Nov 2009 23:11:36 +0000 (18:11 -0500)]
configure.ac: deploy the new XORG_DEFAULT_OPTIONS #24242

This macro aggregate a number of existing macros that sets commmon
X.Org components configuration options. It shields the configuration file from
future changes.

14 years agoconfigure.ac: AM_MAINTAINER_MODE missing #24238
Gaetan Nadon [Sun, 15 Nov 2009 18:55:25 +0000 (13:55 -0500)]
configure.ac: AM_MAINTAINER_MODE missing #24238

This turns off maintainer mode build rules in tarballs.
Works in conjunction with autogen.sh --enable-maintainer-mode

14 years ago.gitignore: use common defaults with custom section # 24239
Gaetan Nadon [Sat, 14 Nov 2009 23:26:47 +0000 (18:26 -0500)]
.gitignore: use common defaults with custom section # 24239

Using common defaults will reduce errors and maintenance.
Only the very small or inexistent custom section need periodic maintenance
when the structure of the component changes. Do not edit defaults.

14 years agovldXvMC.h: stop uselessly including XvMClib.h.
Luc Verhaegen [Mon, 19 Oct 2009 21:59:20 +0000 (23:59 +0200)]
vldXvMC.h: stop uselessly including XvMClib.h.

Protocol header depending on client library header?

Only clients which depend on this header but which did not bother to
include it directly will run into trouble, but the fix is trivial,
general and backwards compatible.

Signed-off-by: Luc Verhaegen <libv@skynet.be>
14 years agoMove xv-protocol-v2.txt from xorg-docs to videoproto
Alan Coopersmith [Sat, 10 Oct 2009 23:35:12 +0000 (16:35 -0700)]
Move xv-protocol-v2.txt from xorg-docs to videoproto

Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
15 years agovideoproto 2.3.0 videoproto-2.3.0
Peter Hutterer [Thu, 27 Aug 2009 01:59:40 +0000 (11:59 +1000)]
videoproto 2.3.0

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
15 years agoRemove RCS tags
Peter Hutterer [Thu, 27 Aug 2009 01:55:47 +0000 (11:55 +1000)]
Remove RCS tags

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
15 years agoJanitor: Correct make distcheck and dont distribute autogen.sh
Paulo Cesar Pereira de Andrade [Tue, 27 Jan 2009 22:06:28 +0000 (20:06 -0200)]
Janitor: Correct make distcheck and dont distribute autogen.sh

16 years agoReplace static ChangeLog with dist-hook to generate from git log
James Cloos [Thu, 6 Dec 2007 21:39:08 +0000 (16:39 -0500)]
Replace static ChangeLog with dist-hook to generate from git log

17 years agoAdd *~ to .gitignore to skip patch/emacs droppings
James Cloos [Mon, 3 Sep 2007 09:54:21 +0000 (05:54 -0400)]
Add *~ to .gitignore to skip patch/emacs droppings

18 years agorenamed: .cvsignore -> .gitignore
Alan Coopersmith [Sat, 15 Jul 2006 01:56:36 +0000 (18:56 -0700)]
renamed: .cvsignore -> .gitignore

18 years agoUpdate package version number for final X11R7 release candidate. XORG-6_99_99_904 XORG-7_0 XORG-7_0_99_901 XORG-7_1 videoproto-2.2.2
Kevin E Martin [Thu, 15 Dec 2005 00:24:38 +0000 (00:24 +0000)]
Update package version number for final X11R7 release candidate.

18 years agoUpdate package version number for RC1 release. MODULAR_COPY XORG-6_99_99_901 XORG-6_99_99_902 XORG-6_99_99_903
Kevin E Martin [Wed, 19 Oct 2005 02:48:15 +0000 (02:48 +0000)]
Update package version number for RC1 release.

19 years agoAdd basic .cvsignore files for proto modules.
Eric Anholt [Tue, 2 Aug 2005 19:19:39 +0000 (19:19 +0000)]
Add basic .cvsignore files for proto modules.

19 years agoVarious changes preparing packages for RC0: XORG-6_99_99_900
Kevin E Martin [Fri, 29 Jul 2005 21:22:57 +0000 (21:22 +0000)]
Various changes preparing packages for RC0:
- Verify and update package version numbers as needed
- Implement versioning scheme
- Change bug address to point to bugzilla bug entry form
- Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
    reenable it)
- Fix makedepend to use pkgconfig and pass distcheck
- Update build script to build macros first
- Update modular Xorg version

19 years agoMove Xvlib.h and XvMClib.h to the libs.
Daniel Stone [Tue, 12 Jul 2005 01:22:22 +0000 (01:22 +0000)]
Move Xvlib.h and XvMClib.h to the libs.

19 years agoChange version to 2.2 (Xv major version; XvMC is 1.1 still).
Daniel Stone [Sat, 21 May 2005 04:52:54 +0000 (04:52 +0000)]
Change version to 2.2 (Xv major version; XvMC is 1.1 still).

19 years agorevert last change, didn't do right thing at all, sorry for the noise
Adam Jackson [Thu, 19 May 2005 00:22:40 +0000 (00:22 +0000)]
revert last change, didn't do right thing at all, sorry for the noise

19 years agoRequire automake 1.7 in AM_INIT_AUTOMAKE
Adam Jackson [Thu, 19 May 2005 00:10:19 +0000 (00:10 +0000)]
Require automake 1.7 in AM_INIT_AUTOMAKE

19 years agoAdd COPYING file for Video.
Josh Triplett [Tue, 17 May 2005 22:12:59 +0000 (22:12 +0000)]
Add COPYING file for Video.

19 years agoChange all the protonames from <extension>Ext to <extension>Proto.
Søren Sandmann Pedersen [Mon, 9 May 2005 18:20:06 +0000 (18:20 +0000)]
Change all the protonames from <extension>Ext to <extension>Proto.

19 years agoInitial build system files for proto module.
Kevin E Martin [Fri, 6 May 2005 01:46:31 +0000 (01:46 +0000)]
Initial build system files for proto module.

19 years agoEncoding of numerous files changed to UTF-8 XORG-6_8_99_1 XORG-6_8_99_10 XORG-6_8_99_11 XORG-6_8_99_12 XORG-6_8_99_13 XORG-6_8_99_14 XORG-6_8_99_15 XORG-6_8_99_16 XORG-6_8_99_2 XORG-6_8_99_3 XORG-6_8_99_4 XORG-6_8_99_5 XORG-6_8_99_6 XORG-6_8_99_7 XORG-6_8_99_8 XORG-6_8_99_9 XORG-6_8_99_900 XORG-6_8_99_901 XORG-6_8_99_902 XORG-6_8_99_903 sco_port_update-base
Markus Kuhn [Sat, 4 Dec 2004 00:42:46 +0000 (00:42 +0000)]
Encoding of numerous files changed to UTF-8

19 years agolib/XvMC/Imake
Thomas Hellstrom [Sat, 13 Nov 2004 11:09:23 +0000 (11:09 +0000)]
lib/XvMC/Imake
Added support for automatic loading of the correct hardware XvMC driver.
    This involves a protocol extension of the XvMC protocol. The XvMC
    revision number was bumped.

19 years agoAdded the XvMC wrapper. First support for runtime loading of hardware-
Thomas Hellstrom [Sun, 26 Sep 2004 11:48:56 +0000 (11:48 +0000)]
Added the XvMC wrapper. First support for runtime loading of hardware-
    specific XvMC libraries.

20 years agoMerging XORG-CURRENT into trunk XACE-SELINUX-MERGE XORG-6_7_99_1 XORG-6_7_99_2 XORG-6_7_99_901 XORG-6_7_99_902 XORG-6_7_99_903 XORG-6_7_99_904 XORG-6_8_0 XORG-6_8_1 XORG-6_8_1_901 XORG-6_8_1_902 XORG-6_8_1_903 XORG-6_8_1_904 XORG-6_8_2 lg3d-base lg3d-rel-0-6-2 lg3d-rel-0-7-0 rel-0-6-1
Egbert Eich [Fri, 23 Apr 2004 18:43:06 +0000 (18:43 +0000)]
Merging XORG-CURRENT into trunk

20 years agoImporting vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 xf86-4_4_99_1
Egbert Eich [Sun, 14 Mar 2004 08:31:36 +0000 (08:31 +0000)]
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004

20 years agoImporting vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 xf86-4_4_0
Egbert Eich [Wed, 3 Mar 2004 12:10:54 +0000 (12:10 +0000)]
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004

20 years agoreadding XFree86's cvs IDs xf86-4_3_99_903
Egbert Eich [Thu, 26 Feb 2004 13:35:11 +0000 (13:35 +0000)]
readding XFree86's cvs IDs

20 years agoImporting vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
Egbert Eich [Thu, 26 Feb 2004 09:22:28 +0000 (09:22 +0000)]
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004

20 years agoXFree86 4.3.0.1 xf86-012804-2330 xf86-4_3_0_1 xf86-4_3_99_16 xf86-4_3_99_901 xf86-4_3_99_902 xf86-4_3_99_903_special
Kaleb Keithley [Fri, 14 Nov 2003 16:48:43 +0000 (16:48 +0000)]
XFree86 4.3.0.1

20 years agoInitial revision XEVIE-BASE XEVIE-MERGE XORG-RELEASE-1-BASE
Kaleb Keithley [Fri, 14 Nov 2003 16:48:43 +0000 (16:48 +0000)]
Initial revision