annotate ffmpeg/libavcodec/msmpeg4data.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * MSMPEG4 backend for encoder and decoder
yading@10 3 * copyright (c) 2001 Fabrice Bellard
yading@10 4 * copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
yading@10 5 *
yading@10 6 * msmpeg4v1 & v2 stuff by Michael Niedermayer <michaelni@gmx.at>
yading@10 7 *
yading@10 8 * This file is part of FFmpeg.
yading@10 9 *
yading@10 10 * FFmpeg is free software; you can redistribute it and/or
yading@10 11 * modify it under the terms of the GNU Lesser General Public
yading@10 12 * License as published by the Free Software Foundation; either
yading@10 13 * version 2.1 of the License, or (at your option) any later version.
yading@10 14 *
yading@10 15 * FFmpeg is distributed in the hope that it will be useful,
yading@10 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 18 * Lesser General Public License for more details.
yading@10 19 *
yading@10 20 * You should have received a copy of the GNU Lesser General Public
yading@10 21 * License along with FFmpeg; if not, write to the Free Software
yading@10 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 23 */
yading@10 24
yading@10 25 /**
yading@10 26 * @file
yading@10 27 * MSMPEG4 data tables.
yading@10 28 */
yading@10 29
yading@10 30 #ifndef AVCODEC_MSMPEG4DATA_H
yading@10 31 #define AVCODEC_MSMPEG4DATA_H
yading@10 32
yading@10 33 #include "libavutil/common.h"
yading@10 34 #include "get_bits.h"
yading@10 35 #include "rl.h"
yading@10 36
yading@10 37 /* motion vector table */
yading@10 38 typedef struct MVTable {
yading@10 39 int n;
yading@10 40 const uint16_t *table_mv_code;
yading@10 41 const uint8_t *table_mv_bits;
yading@10 42 const uint8_t *table_mvx;
yading@10 43 const uint8_t *table_mvy;
yading@10 44 uint16_t *table_mv_index; /* encoding: convert mv to index in table_mv */
yading@10 45 VLC vlc; /* decoding: vlc */
yading@10 46 } MVTable;
yading@10 47
yading@10 48 extern VLC ff_msmp4_mb_i_vlc;
yading@10 49 extern VLC ff_msmp4_dc_luma_vlc[2];
yading@10 50 extern VLC ff_msmp4_dc_chroma_vlc[2];
yading@10 51
yading@10 52 /* intra picture macroblock coded block pattern */
yading@10 53 extern const uint16_t ff_msmp4_mb_i_table[64][2];
yading@10 54
yading@10 55 #define WMV1_SCANTABLE_COUNT 4
yading@10 56
yading@10 57 extern const uint8_t ff_wmv1_scantable[WMV1_SCANTABLE_COUNT][64];
yading@10 58
yading@10 59 #define NB_RL_TABLES 6
yading@10 60
yading@10 61 extern RLTable ff_rl_table[NB_RL_TABLES];
yading@10 62 extern uint8_t ff_static_rl_table_store[NB_RL_TABLES][2][2 * MAX_RUN + MAX_LEVEL + 3];
yading@10 63
yading@10 64 extern uint32_t ff_v2_dc_lum_table[512][2];
yading@10 65 extern uint32_t ff_v2_dc_chroma_table[512][2];
yading@10 66
yading@10 67 extern const uint8_t ff_wmv1_y_dc_scale_table[32];
yading@10 68 extern const uint8_t ff_wmv1_c_dc_scale_table[32];
yading@10 69 extern const uint8_t ff_old_ff_y_dc_scale_table[32];
yading@10 70
yading@10 71 extern MVTable ff_mv_tables[2];
yading@10 72
yading@10 73 extern const uint8_t ff_v2_mb_type[8][2];
yading@10 74 extern const uint8_t ff_v2_intra_cbpc[4][2];
yading@10 75
yading@10 76 extern const uint32_t ff_table_mb_non_intra[128][2];
yading@10 77 extern const uint8_t ff_table_inter_intra[4][2];
yading@10 78
yading@10 79 extern const uint32_t ff_table0_dc_lum[120][2];
yading@10 80 extern const uint32_t ff_table1_dc_lum[120][2];
yading@10 81 extern const uint32_t ff_table0_dc_chroma[120][2];
yading@10 82 extern const uint32_t ff_table1_dc_chroma[120][2];
yading@10 83
yading@10 84 #define WMV2_INTER_CBP_TABLE_COUNT 4
yading@10 85 extern const uint32_t (* const ff_wmv2_inter_table[WMV2_INTER_CBP_TABLE_COUNT])[2];
yading@10 86
yading@10 87 extern const uint8_t ff_wmv2_scantableA[64];
yading@10 88 extern const uint8_t ff_wmv2_scantableB[64];
yading@10 89
yading@10 90 #endif /* AVCODEC_MSMPEG4DATA_H */