[XviD-devel] dev-api-4 this weekend

elcabesa elcabesa at inwind.it
Sun Feb 23 10:04:00 CET 2003


On Saturday 22 February 2003 23:30, suxen_drol wrote:

> > can you define ADD this version system in stable and dev-api-3 too?
> > it would make coders life easy have a common system versioning
> > p.s. i wrote ADD not replace=)
>
> the new versioning system was designed to make life easier. its been on
> my todo list since september. however, upgrading the api is a lot of
> work, which is why i've forked off to commit changes.
>
> when we're satisified with the new api (and ratecontrol/plugins issues
> are resolved), it will merged into the head. there's still much to be
> done, so please dont upgrade libmpcodecs\ve_xvid.c just yet.
>
> the stable releases (release_0_9_0 and release_0_9_1) shouldn't be
> changed. they are release versions, which are only maintained in the
> event of bugs.
>
> -- pete; life is like a box of ammo
>
hi
i mean
can something like this added to all cvs tag.

#define XVID_MAKE_VERSION(a,b,c)	( (((a)&0xff)<<16) | (((b)&0xff)<<8) | 
((c)&0xff) )
#define XVID_MAJOR(a)				( ((a)>>16) & 0xff )
#define XVID_MINOR(b)				((char)( ((b)>>8) & 0xff ))
#define XVID_PATCH(c)				( (c) & 0xff )

#define XVID_VERSION				XVID_MAKE_VERSION(1,-127,0)


More information about the XviD-devel mailing list