yading@10
|
1 /*
|
yading@10
|
2 * Copyright (c) 2003 Michael Niedermayer
|
yading@10
|
3 *
|
yading@10
|
4 * This file is part of FFmpeg.
|
yading@10
|
5 *
|
yading@10
|
6 * FFmpeg is free software; you can redistribute it and/or
|
yading@10
|
7 * modify it under the terms of the GNU Lesser General Public
|
yading@10
|
8 * License as published by the Free Software Foundation; either
|
yading@10
|
9 * version 2.1 of the License, or (at your option) any later version.
|
yading@10
|
10 *
|
yading@10
|
11 * FFmpeg is distributed in the hope that it will be useful,
|
yading@10
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@10
|
14 * Lesser General Public License for more details.
|
yading@10
|
15 *
|
yading@10
|
16 * You should have received a copy of the GNU Lesser General Public
|
yading@10
|
17 * License along with FFmpeg; if not, write to the Free Software
|
yading@10
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@10
|
19 */
|
yading@10
|
20
|
yading@10
|
21 /**
|
yading@10
|
22 * @file
|
yading@10
|
23 * ASUS V1/V2 encoder/decoder common data.
|
yading@10
|
24 */
|
yading@10
|
25
|
yading@10
|
26 #ifndef AVCODEC_ASV_H
|
yading@10
|
27 #define AVCODEC_ASV_H
|
yading@10
|
28
|
yading@10
|
29 #include <stdint.h>
|
yading@10
|
30
|
yading@10
|
31 #include "libavutil/mem.h"
|
yading@10
|
32
|
yading@10
|
33 #include "avcodec.h"
|
yading@10
|
34 #include "dsputil.h"
|
yading@10
|
35 #include "get_bits.h"
|
yading@10
|
36 #include "put_bits.h"
|
yading@10
|
37
|
yading@10
|
38 typedef struct ASV1Context{
|
yading@10
|
39 AVCodecContext *avctx;
|
yading@10
|
40 DSPContext dsp;
|
yading@10
|
41 AVFrame picture;
|
yading@10
|
42 PutBitContext pb;
|
yading@10
|
43 GetBitContext gb;
|
yading@10
|
44 ScanTable scantable;
|
yading@10
|
45 int inv_qscale;
|
yading@10
|
46 int mb_width;
|
yading@10
|
47 int mb_height;
|
yading@10
|
48 int mb_width2;
|
yading@10
|
49 int mb_height2;
|
yading@10
|
50 DECLARE_ALIGNED(16, int16_t, block)[6][64];
|
yading@10
|
51 uint16_t intra_matrix[64];
|
yading@10
|
52 int q_intra_matrix[64];
|
yading@10
|
53 uint8_t *bitstream_buffer;
|
yading@10
|
54 unsigned int bitstream_buffer_size;
|
yading@10
|
55 } ASV1Context;
|
yading@10
|
56
|
yading@10
|
57 extern const uint8_t ff_asv_scantab[64];
|
yading@10
|
58 extern const uint8_t ff_asv_ccp_tab[17][2];
|
yading@10
|
59 extern const uint8_t ff_asv_level_tab[7][2];
|
yading@10
|
60 extern const uint8_t ff_asv_dc_ccp_tab[8][2];
|
yading@10
|
61 extern const uint8_t ff_asv_ac_ccp_tab[16][2];
|
yading@10
|
62 extern const uint8_t ff_asv2_level_tab[63][2];
|
yading@10
|
63
|
yading@10
|
64 void ff_asv_common_init(AVCodecContext *avctx);
|
yading@10
|
65
|
yading@10
|
66 #endif /* AVCODEC_ASV_H */
|