--- emms.c 2003/01/05 03:31:26 1.3.2.2 +++ emms.c 2002/10/19 11:41:11 1.6 @@ -3,6 +3,8 @@ * XVID MPEG-4 VIDEO CODEC * - emms C wrapper - * + * Copyright(C) 2002 Michael Militzer + * * This program is an implementation of a part of one or more MPEG-4 * Video tools as specified in ISO/IEC 14496-2 standard. Those intending * to use this software module in hardware or software products are @@ -27,16 +29,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ****************************************************************************/ -/***************************************************************************** - * - * History - * - * - Mon Jun 17 00:10:09 2002 Added legal header - * - * $Id: emms.c,v 1.3.2.2 2003/01/05 03:31:26 suxen_drol Exp $ - * - ****************************************************************************/ - #include "emms.h" #include "../portab.h" @@ -61,3 +53,12 @@ emms_c() { } + +/* The real mmx emms wrapper */ +void +emms_mmx() +{ + /* the EMMS macro is defined according to the compiler in portab.h */ + EMMS(); + +}