⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vlc.h

📁 mpeg2dec-0.4.1.tar.gz mpeg2 decoder source code.Have been compiled successfully.
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * vlc.h * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org> * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> * * This file is part of mpeg2dec, a free MPEG-2 video stream decoder. * See http://libmpeg2.sourceforge.net/ for updates. * * mpeg2dec is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * mpeg2dec is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#define GETWORD(bit_buf,shift,bit_ptr)				\do {								\    bit_buf |= ((bit_ptr[0] << 8) | bit_ptr[1]) << (shift);	\    bit_ptr += 2;						\} while (0)static inline void bitstream_init (mpeg2_decoder_t * decoder,				   const uint8_t * start){    decoder->bitstream_buf =	(start[0] << 24) | (start[1] << 16) | (start[2] << 8) | start[3];    decoder->bitstream_ptr = start + 4;    decoder->bitstream_bits = -16;}/* make sure that there are at least 16 valid bits in bit_buf */#define NEEDBITS(bit_buf,bits,bit_ptr)		\do {						\    if (unlikely (bits > 0)) {			\	GETWORD (bit_buf, bits, bit_ptr);	\	bits -= 16;				\    }						\} while (0)/* remove num valid bits from bit_buf */#define DUMPBITS(bit_buf,bits,num)	\do {					\    bit_buf <<= (num);			\    bits += (num);			\} while (0)/* take num bits from the high part of bit_buf and zero extend them */#define UBITS(bit_buf,num) (((uint32_t)(bit_buf)) >> (32 - (num)))/* take num bits from the high part of bit_buf and sign extend them */#define SBITS(bit_buf,num) (((int32_t)(bit_buf)) >> (32 - (num)))typedef struct {    uint8_t modes;    uint8_t len;} MBtab;typedef struct {    uint8_t delta;    uint8_t len;} MVtab;typedef struct {    int8_t dmv;    uint8_t len;} DMVtab;typedef struct {    uint8_t cbp;    uint8_t len;} CBPtab;typedef struct {    uint8_t size;    uint8_t len;} DCtab;typedef struct {    uint8_t run;    uint8_t level;    uint8_t len;} DCTtab;typedef struct {    uint8_t mba;    uint8_t len;} MBAtab;#define INTRA MACROBLOCK_INTRA#define QUANT MACROBLOCK_QUANTstatic const MBtab MB_I [] = {    {INTRA|QUANT, 2}, {INTRA, 1}};#define MC MACROBLOCK_MOTION_FORWARD#define CODED MACROBLOCK_PATTERNstatic const MBtab MB_P [] = {    {INTRA|QUANT, 6}, {CODED|QUANT, 5}, {MC|CODED|QUANT, 5}, {INTRA,    5},    {MC,          3}, {MC,          3}, {MC,             3}, {MC,       3},    {CODED,       2}, {CODED,       2}, {CODED,          2}, {CODED,    2},    {CODED,       2}, {CODED,       2}, {CODED,          2}, {CODED,    2},    {MC|CODED,    1}, {MC|CODED,    1}, {MC|CODED,       1}, {MC|CODED, 1},    {MC|CODED,    1}, {MC|CODED,    1}, {MC|CODED,       1}, {MC|CODED, 1},    {MC|CODED,    1}, {MC|CODED,    1}, {MC|CODED,       1}, {MC|CODED, 1},    {MC|CODED,    1}, {MC|CODED,    1}, {MC|CODED,       1}, {MC|CODED, 1}};#define FWD MACROBLOCK_MOTION_FORWARD#define BWD MACROBLOCK_MOTION_BACKWARD#define INTER MACROBLOCK_MOTION_FORWARD|MACROBLOCK_MOTION_BACKWARDstatic const MBtab MB_B [] = {    {0,                 0}, {INTRA|QUANT,       6},    {BWD|CODED|QUANT,   6}, {FWD|CODED|QUANT,   6},    {INTER|CODED|QUANT, 5}, {INTER|CODED|QUANT, 5},					{INTRA,       5}, {INTRA,       5},    {FWD,         4}, {FWD,         4}, {FWD,         4}, {FWD,         4},    {FWD|CODED,   4}, {FWD|CODED,   4}, {FWD|CODED,   4}, {FWD|CODED,   4},    {BWD,         3}, {BWD,         3}, {BWD,         3}, {BWD,         3},    {BWD,         3}, {BWD,         3}, {BWD,         3}, {BWD,         3},    {BWD|CODED,   3}, {BWD|CODED,   3}, {BWD|CODED,   3}, {BWD|CODED,   3},    {BWD|CODED,   3}, {BWD|CODED,   3}, {BWD|CODED,   3}, {BWD|CODED,   3},    {INTER,       2}, {INTER,       2}, {INTER,       2}, {INTER,       2},    {INTER,       2}, {INTER,       2}, {INTER,       2}, {INTER,       2},    {INTER,       2}, {INTER,       2}, {INTER,       2}, {INTER,       2},    {INTER,       2}, {INTER,       2}, {INTER,       2}, {INTER,       2},    {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2},    {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2},    {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2},    {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2}, {INTER|CODED, 2}};#undef INTRA#undef QUANT#undef MC#undef CODED#undef FWD#undef BWD#undef INTERstatic const MVtab MV_4 [] = {    { 3, 6}, { 2, 4}, { 1, 3}, { 1, 3}, { 0, 2}, { 0, 2}, { 0, 2}, { 0, 2}};static const MVtab MV_10 [] = {    { 0,10}, { 0,10}, { 0,10}, { 0,10}, { 0,10}, { 0,10}, { 0,10}, { 0,10},    { 0,10}, { 0,10}, { 0,10}, { 0,10}, {15,10}, {14,10}, {13,10}, {12,10},    {11,10}, {10,10}, { 9, 9}, { 9, 9}, { 8, 9}, { 8, 9}, { 7, 9}, { 7, 9},    { 6, 7}, { 6, 7}, { 6, 7}, { 6, 7}, { 6, 7}, { 6, 7}, { 6, 7}, { 6, 7},    { 5, 7}, { 5, 7}, { 5, 7}, { 5, 7}, { 5, 7}, { 5, 7}, { 5, 7}, { 5, 7},    { 4, 7}, { 4, 7}, { 4, 7}, { 4, 7}, { 4, 7}, { 4, 7}, { 4, 7}, { 4, 7}};static const DMVtab DMV_2 [] = {    { 0, 1}, { 0, 1}, { 1, 2}, {-1, 2}};static const CBPtab CBP_7 [] = {    {0x11, 7}, {0x12, 7}, {0x14, 7}, {0x18, 7},    {0x21, 7}, {0x22, 7}, {0x24, 7}, {0x28, 7},    {0x3f, 6}, {0x3f, 6}, {0x30, 6}, {0x30, 6},    {0x09, 6}, {0x09, 6}, {0x06, 6}, {0x06, 6},    {0x1f, 5}, {0x1f, 5}, {0x1f, 5}, {0x1f, 5},    {0x10, 5}, {0x10, 5}, {0x10, 5}, {0x10, 5},    {0x2f, 5}, {0x2f, 5}, {0x2f, 5}, {0x2f, 5},    {0x20, 5}, {0x20, 5}, {0x20, 5}, {0x20, 5},    {0x07, 5}, {0x07, 5}, {0x07, 5}, {0x07, 5},    {0x0b, 5}, {0x0b, 5}, {0x0b, 5}, {0x0b, 5},    {0x0d, 5}, {0x0d, 5}, {0x0d, 5}, {0x0d, 5},    {0x0e, 5}, {0x0e, 5}, {0x0e, 5}, {0x0e, 5},    {0x05, 5}, {0x05, 5}, {0x05, 5}, {0x05, 5},    {0x0a, 5}, {0x0a, 5}, {0x0a, 5}, {0x0a, 5},    {0x03, 5}, {0x03, 5}, {0x03, 5}, {0x03, 5},    {0x0c, 5}, {0x0c, 5}, {0x0c, 5}, {0x0c, 5},    {0x01, 4}, {0x01, 4}, {0x01, 4}, {0x01, 4},    {0x01, 4}, {0x01, 4}, {0x01, 4}, {0x01, 4},    {0x02, 4}, {0x02, 4}, {0x02, 4}, {0x02, 4},    {0x02, 4}, {0x02, 4}, {0x02, 4}, {0x02, 4},    {0x04, 4}, {0x04, 4}, {0x04, 4}, {0x04, 4},    {0x04, 4}, {0x04, 4}, {0x04, 4}, {0x04, 4},    {0x08, 4}, {0x08, 4}, {0x08, 4}, {0x08, 4},    {0x08, 4}, {0x08, 4}, {0x08, 4}, {0x08, 4},    {0x0f, 3}, {0x0f, 3}, {0x0f, 3}, {0x0f, 3},    {0x0f, 3}, {0x0f, 3}, {0x0f, 3}, {0x0f, 3},    {0x0f, 3}, {0x0f, 3}, {0x0f, 3}, {0x0f, 3},    {0x0f, 3}, {0x0f, 3}, {0x0f, 3}, {0x0f, 3}};static const CBPtab CBP_9 [] = {    {0,    0}, {0x00, 9}, {0x39, 9}, {0x36, 9},    {0x37, 9}, {0x3b, 9}, {0x3d, 9}, {0x3e, 9},    {0x17, 8}, {0x17, 8}, {0x1b, 8}, {0x1b, 8},    {0x1d, 8}, {0x1d, 8}, {0x1e, 8}, {0x1e, 8},    {0x27, 8}, {0x27, 8}, {0x2b, 8}, {0x2b, 8},    {0x2d, 8}, {0x2d, 8}, {0x2e, 8}, {0x2e, 8},    {0x19, 8}, {0x19, 8}, {0x16, 8}, {0x16, 8},    {0x29, 8}, {0x29, 8}, {0x26, 8}, {0x26, 8},    {0x35, 8}, {0x35, 8}, {0x3a, 8}, {0x3a, 8},    {0x33, 8}, {0x33, 8}, {0x3c, 8}, {0x3c, 8},    {0x15, 8}, {0x15, 8}, {0x1a, 8}, {0x1a, 8},    {0x13, 8}, {0x13, 8}, {0x1c, 8}, {0x1c, 8},

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -