]> git.sesse.net Git - ffmpeg/blob - libavcodec/cavs.h
eatgv: return meaningful error codes.
[ffmpeg] / libavcodec / cavs.h
1 /*
2  * Chinese AVS video (AVS1-P2, JiZhun profile) decoder.
3  * Copyright (c) 2006  Stefan Gehrer <stefan.gehrer@gmx.de>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #ifndef AVCODEC_CAVS_H
23 #define AVCODEC_CAVS_H
24
25 #include "cavsdsp.h"
26 #include "dsputil.h"
27 #include "get_bits.h"
28 #include "videodsp.h"
29
30 #define SLICE_MAX_START_CODE    0x000001af
31 #define EXT_START_CODE          0x000001b5
32 #define USER_START_CODE         0x000001b2
33 #define CAVS_START_CODE         0x000001b0
34 #define PIC_I_START_CODE        0x000001b3
35 #define PIC_PB_START_CODE       0x000001b6
36
37 #define A_AVAIL                          1
38 #define B_AVAIL                          2
39 #define C_AVAIL                          4
40 #define D_AVAIL                          8
41 #define NOT_AVAIL                       -1
42 #define REF_INTRA                       -2
43 #define REF_DIR                         -3
44
45 #define ESCAPE_CODE                     59
46
47 #define FWD0                          0x01
48 #define FWD1                          0x02
49 #define BWD0                          0x04
50 #define BWD1                          0x08
51 #define SYM0                          0x10
52 #define SYM1                          0x20
53 #define SPLITH                        0x40
54 #define SPLITV                        0x80
55
56 #define MV_BWD_OFFS                     12
57 #define MV_STRIDE                        4
58
59 enum cavs_mb {
60   I_8X8 = 0,
61   P_SKIP,
62   P_16X16,
63   P_16X8,
64   P_8X16,
65   P_8X8,
66   B_SKIP,
67   B_DIRECT,
68   B_FWD_16X16,
69   B_BWD_16X16,
70   B_SYM_16X16,
71   B_8X8 = 29
72 };
73
74 enum cavs_sub_mb {
75   B_SUB_DIRECT,
76   B_SUB_FWD,
77   B_SUB_BWD,
78   B_SUB_SYM
79 };
80
81 enum cavs_intra_luma {
82   INTRA_L_VERT,
83   INTRA_L_HORIZ,
84   INTRA_L_LP,
85   INTRA_L_DOWN_LEFT,
86   INTRA_L_DOWN_RIGHT,
87   INTRA_L_LP_LEFT,
88   INTRA_L_LP_TOP,
89   INTRA_L_DC_128
90 };
91
92 enum cavs_intra_chroma {
93   INTRA_C_LP,
94   INTRA_C_HORIZ,
95   INTRA_C_VERT,
96   INTRA_C_PLANE,
97   INTRA_C_LP_LEFT,
98   INTRA_C_LP_TOP,
99   INTRA_C_DC_128,
100 };
101
102 enum cavs_mv_pred {
103   MV_PRED_MEDIAN,
104   MV_PRED_LEFT,
105   MV_PRED_TOP,
106   MV_PRED_TOPRIGHT,
107   MV_PRED_PSKIP,
108   MV_PRED_BSKIP
109 };
110
111 enum cavs_block {
112   BLK_16X16,
113   BLK_16X8,
114   BLK_8X16,
115   BLK_8X8
116 };
117
118 enum cavs_mv_loc {
119   MV_FWD_D3 = 0,
120   MV_FWD_B2,
121   MV_FWD_B3,
122   MV_FWD_C2,
123   MV_FWD_A1,
124   MV_FWD_X0,
125   MV_FWD_X1,
126   MV_FWD_A3 = 8,
127   MV_FWD_X2,
128   MV_FWD_X3,
129   MV_BWD_D3 = MV_BWD_OFFS,
130   MV_BWD_B2,
131   MV_BWD_B3,
132   MV_BWD_C2,
133   MV_BWD_A1,
134   MV_BWD_X0,
135   MV_BWD_X1,
136   MV_BWD_A3 = MV_BWD_OFFS+8,
137   MV_BWD_X2,
138   MV_BWD_X3
139 };
140
141 DECLARE_ALIGNED(8, typedef, struct) {
142     int16_t x;
143     int16_t y;
144     int16_t dist;
145     int16_t ref;
146 } cavs_vector;
147
148 struct dec_2dvlc {
149   int8_t rltab[59][3];
150   int8_t level_add[27];
151   int8_t golomb_order;
152   int inc_limit;
153   int8_t max_run;
154 };
155
156 typedef struct AVSFrame {
157     AVFrame *f;
158     int poc;
159 } AVSFrame;
160
161 typedef struct AVSContext {
162     AVCodecContext *avctx;
163     DSPContext       dsp;
164     VideoDSPContext vdsp;
165     CAVSDSPContext  cdsp;
166     GetBitContext gb;
167     AVSFrame cur;     ///< currently decoded frame
168     AVSFrame DPB[2];  ///< reference frames
169     int dist[2];     ///< temporal distances from current frame to ref frames
170     int low_delay;
171     int profile, level;
172     int aspect_ratio;
173     int mb_width, mb_height;
174     int width, height;
175     int stream_revision; ///<0 for samples from 2006, 1 for rm52j encoder
176     int progressive;
177     int pic_structure;
178     int skip_mode_flag; ///< select between skip_count or one skip_flag per MB
179     int loop_filter_disable;
180     int alpha_offset, beta_offset;
181     int ref_flag;
182     int mbx, mby, mbidx; ///< macroblock coordinates
183     int flags;         ///< availability flags of neighbouring macroblocks
184     int stc;           ///< last start code
185     uint8_t *cy, *cu, *cv; ///< current MB sample pointers
186     int left_qp;
187     uint8_t *top_qp;
188
189     /** mv motion vector cache
190        0:    D3  B2  B3  C2
191        4:    A1  X0  X1   -
192        8:    A3  X2  X3   -
193
194        X are the vectors in the current macroblock (5,6,9,10)
195        A is the macroblock to the left (4,8)
196        B is the macroblock to the top (1,2)
197        C is the macroblock to the top-right (3)
198        D is the macroblock to the top-left (0)
199
200        the same is repeated for backward motion vectors */
201     cavs_vector mv[2*4*3];
202     cavs_vector *top_mv[2];
203     cavs_vector *col_mv;
204
205     /** luma pred mode cache
206        0:    --  B2  B3
207        3:    A1  X0  X1
208        6:    A3  X2  X3   */
209     int pred_mode_Y[3*3];
210     int *top_pred_Y;
211     int l_stride, c_stride;
212     int luma_scan[4];
213     int qp;
214     int qp_fixed;
215     int cbp;
216     ScanTable scantable;
217
218     /** intra prediction is done with un-deblocked samples
219      they are saved here before deblocking the MB  */
220     uint8_t *top_border_y, *top_border_u, *top_border_v;
221     uint8_t left_border_y[26], left_border_u[10], left_border_v[10];
222     uint8_t intern_border_y[26];
223     uint8_t topleft_border_y, topleft_border_u, topleft_border_v;
224
225     void (*intra_pred_l[8])(uint8_t *d,uint8_t *top,uint8_t *left,int stride);
226     void (*intra_pred_c[7])(uint8_t *d,uint8_t *top,uint8_t *left,int stride);
227     uint8_t *col_type_base;
228
229     /* scaling factors for MV prediction */
230     int sym_factor;    ///< for scaling in symmetrical B block
231     int direct_den[2]; ///< for scaling in direct B block
232     int scale_den[2];  ///< for scaling neighbouring MVs
233
234     uint8_t *edge_emu_buffer;
235
236     int got_keyframe;
237     int16_t *block;
238 } AVSContext;
239
240 extern const uint8_t     ff_cavs_partition_flags[30];
241 extern const cavs_vector ff_cavs_intra_mv;
242 extern const cavs_vector ff_cavs_dir_mv;
243
244 static inline void set_mvs(cavs_vector *mv, enum cavs_block size) {
245     switch(size) {
246     case BLK_16X16:
247         mv[MV_STRIDE  ] = mv[0];
248         mv[MV_STRIDE+1] = mv[0];
249     case BLK_16X8:
250         mv[1] = mv[0];
251         break;
252     case BLK_8X16:
253         mv[MV_STRIDE] = mv[0];
254         break;
255     }
256 }
257
258 void ff_cavs_filter(AVSContext *h, enum cavs_mb mb_type);
259 void ff_cavs_load_intra_pred_luma(AVSContext *h, uint8_t *top, uint8_t **left,
260                                   int block);
261 void ff_cavs_load_intra_pred_chroma(AVSContext *h);
262 void ff_cavs_modify_mb_i(AVSContext *h, int *pred_mode_uv);
263 void ff_cavs_inter(AVSContext *h, enum cavs_mb mb_type);
264 void ff_cavs_mv(AVSContext *h, enum cavs_mv_loc nP, enum cavs_mv_loc nC,
265                 enum cavs_mv_pred mode, enum cavs_block size, int ref);
266 void ff_cavs_init_mb(AVSContext *h);
267 int  ff_cavs_next_mb(AVSContext *h);
268 void ff_cavs_init_pic(AVSContext *h);
269 void ff_cavs_init_top_lines(AVSContext *h);
270 int ff_cavs_init(AVCodecContext *avctx);
271 int ff_cavs_end (AVCodecContext *avctx);
272
273 #endif /* AVCODEC_CAVS_H */