/************************************************************************** * * * This code has been developed by Andrea Graziani. This software 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 advised that its * * use may infringe existing patents or copyrights, and any such use * * would be at such party's own risk. The original developer of this * * software module and his/her company, and subsequent editors and their * * companies (including Project Mayo), will have no liability for use of * * this software or modifications or derivatives thereof. * * * * Project Mayo gives users of the Codec a license to this software * * module or modifications thereof for use in hardware or software * * products claiming conformance to the MPEG-4 Video Standard as * * described in the Open DivX license. * * * * The complete Open DivX license can be found at * * http://www.projectmayo.com/opendivx/license.php * * * **************************************************************************/ /** * Copyright (C) 2001 - Project Mayo * * Andrea Graziani (Ag) * * DivX Advanced Research Center * **/ // mp4_decoder.h // #ifndef _MP4_DECODER_H_ #define _MP4_DECODER_H_ #define MODE_INTER 0 #define MODE_INTER_Q 1 #define MODE_INTER4V 2 #define MODE_INTRA 3 #define MODE_INTRA_Q 4 #define MODE_INTER4V_Q 5 #define ESCAPE 7167 #define ESCAPE_INDEX 102 /* this is necessary for the max resolution (juice resolution) */ #define MBC 45 #define MBR 36 #endif // _MP4_DECODER_H_ /*** *** ***/ extern void get_mp4picture (unsigned char *bmp, int render_flag); extern void initdecoder (); extern void closedecoder ();