2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* MSMPEG4 backend for ffmpeg encoder and decoder
|
|
|
|
* copyright (c) 2001 Fabrice Bellard
|
|
|
|
* copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2007-07-05 10:37:29 +00:00
|
|
|
* msmpeg4v1 & v2 stuff by Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2003-03-06 11:32:04 +00:00
|
|
|
/**
|
|
|
|
* @file msmpeg4data.h
|
2005-12-17 18:14:38 +00:00
|
|
|
* MSMPEG4 data tables.
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-10 10:03:16 +00:00
|
|
|
#ifndef MSMPEG4DATA_H
|
|
|
|
#define MSMPEG4DATA_H
|
2002-06-02 12:22:30 +00:00
|
|
|
|
2007-05-10 10:03:16 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "bitstream.h"
|
2002-04-05 04:09:04 +00:00
|
|
|
|
2007-05-10 10:03:16 +00:00
|
|
|
extern VLC ff_msmp4_mb_i_vlc;
|
|
|
|
extern VLC ff_msmp4_dc_luma_vlc[2];
|
|
|
|
extern VLC ff_msmp4_dc_chroma_vlc[2];
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2007-05-10 10:03:16 +00:00
|
|
|
/* intra picture macro block coded block pattern */
|
|
|
|
extern const uint16_t ff_msmp4_mb_i_table[64][2];
|
2002-12-27 23:51:46 +00:00
|
|
|
|
2007-05-10 10:03:16 +00:00
|
|
|
#endif /* MSMPEG4DATA_H */
|