You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

276 lines
7.1KB

  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. #ifndef AVCODEC_CAVS_H
  22. #define AVCODEC_CAVS_H
  23. #include "cavsdsp.h"
  24. #include "dsputil.h"
  25. #include "h264chroma.h"
  26. #include "get_bits.h"
  27. #include "videodsp.h"
  28. #define SLICE_MAX_START_CODE 0x000001af
  29. #define EXT_START_CODE 0x000001b5
  30. #define USER_START_CODE 0x000001b2
  31. #define CAVS_START_CODE 0x000001b0
  32. #define PIC_I_START_CODE 0x000001b3
  33. #define PIC_PB_START_CODE 0x000001b6
  34. #define A_AVAIL 1
  35. #define B_AVAIL 2
  36. #define C_AVAIL 4
  37. #define D_AVAIL 8
  38. #define NOT_AVAIL -1
  39. #define REF_INTRA -2
  40. #define REF_DIR -3
  41. #define ESCAPE_CODE 59
  42. #define FWD0 0x01
  43. #define FWD1 0x02
  44. #define BWD0 0x04
  45. #define BWD1 0x08
  46. #define SYM0 0x10
  47. #define SYM1 0x20
  48. #define SPLITH 0x40
  49. #define SPLITV 0x80
  50. #define MV_BWD_OFFS 12
  51. #define MV_STRIDE 4
  52. enum cavs_mb {
  53. I_8X8 = 0,
  54. P_SKIP,
  55. P_16X16,
  56. P_16X8,
  57. P_8X16,
  58. P_8X8,
  59. B_SKIP,
  60. B_DIRECT,
  61. B_FWD_16X16,
  62. B_BWD_16X16,
  63. B_SYM_16X16,
  64. B_8X8 = 29
  65. };
  66. enum cavs_sub_mb {
  67. B_SUB_DIRECT,
  68. B_SUB_FWD,
  69. B_SUB_BWD,
  70. B_SUB_SYM
  71. };
  72. enum cavs_intra_luma {
  73. INTRA_L_VERT,
  74. INTRA_L_HORIZ,
  75. INTRA_L_LP,
  76. INTRA_L_DOWN_LEFT,
  77. INTRA_L_DOWN_RIGHT,
  78. INTRA_L_LP_LEFT,
  79. INTRA_L_LP_TOP,
  80. INTRA_L_DC_128
  81. };
  82. enum cavs_intra_chroma {
  83. INTRA_C_LP,
  84. INTRA_C_HORIZ,
  85. INTRA_C_VERT,
  86. INTRA_C_PLANE,
  87. INTRA_C_LP_LEFT,
  88. INTRA_C_LP_TOP,
  89. INTRA_C_DC_128,
  90. };
  91. enum cavs_mv_pred {
  92. MV_PRED_MEDIAN,
  93. MV_PRED_LEFT,
  94. MV_PRED_TOP,
  95. MV_PRED_TOPRIGHT,
  96. MV_PRED_PSKIP,
  97. MV_PRED_BSKIP
  98. };
  99. enum cavs_block {
  100. BLK_16X16,
  101. BLK_16X8,
  102. BLK_8X16,
  103. BLK_8X8
  104. };
  105. enum cavs_mv_loc {
  106. MV_FWD_D3 = 0,
  107. MV_FWD_B2,
  108. MV_FWD_B3,
  109. MV_FWD_C2,
  110. MV_FWD_A1,
  111. MV_FWD_X0,
  112. MV_FWD_X1,
  113. MV_FWD_A3 = 8,
  114. MV_FWD_X2,
  115. MV_FWD_X3,
  116. MV_BWD_D3 = MV_BWD_OFFS,
  117. MV_BWD_B2,
  118. MV_BWD_B3,
  119. MV_BWD_C2,
  120. MV_BWD_A1,
  121. MV_BWD_X0,
  122. MV_BWD_X1,
  123. MV_BWD_A3 = MV_BWD_OFFS+8,
  124. MV_BWD_X2,
  125. MV_BWD_X3
  126. };
  127. DECLARE_ALIGNED(8, typedef, struct) {
  128. int16_t x;
  129. int16_t y;
  130. int16_t dist;
  131. int16_t ref;
  132. } cavs_vector;
  133. struct dec_2dvlc {
  134. int8_t rltab[59][3];
  135. int8_t level_add[27];
  136. int8_t golomb_order;
  137. int inc_limit;
  138. int8_t max_run;
  139. };
  140. typedef struct AVSFrame {
  141. AVFrame *f;
  142. int poc;
  143. } AVSFrame;
  144. typedef struct AVSContext {
  145. AVCodecContext *avctx;
  146. DSPContext dsp;
  147. H264ChromaContext h264chroma;
  148. VideoDSPContext vdsp;
  149. CAVSDSPContext cdsp;
  150. GetBitContext gb;
  151. AVSFrame cur; ///< currently decoded frame
  152. AVSFrame DPB[2]; ///< reference frames
  153. int dist[2]; ///< temporal distances from current frame to ref frames
  154. int low_delay;
  155. int profile, level;
  156. int aspect_ratio;
  157. int mb_width, mb_height;
  158. int width, height;
  159. int stream_revision; ///<0 for samples from 2006, 1 for rm52j encoder
  160. int progressive;
  161. int pic_structure;
  162. int skip_mode_flag; ///< select between skip_count or one skip_flag per MB
  163. int loop_filter_disable;
  164. int alpha_offset, beta_offset;
  165. int ref_flag;
  166. int mbx, mby, mbidx; ///< macroblock coordinates
  167. int flags; ///< availability flags of neighbouring macroblocks
  168. int stc; ///< last start code
  169. uint8_t *cy, *cu, *cv; ///< current MB sample pointers
  170. int left_qp;
  171. uint8_t *top_qp;
  172. /** mv motion vector cache
  173. 0: D3 B2 B3 C2
  174. 4: A1 X0 X1 -
  175. 8: A3 X2 X3 -
  176. X are the vectors in the current macroblock (5,6,9,10)
  177. A is the macroblock to the left (4,8)
  178. B is the macroblock to the top (1,2)
  179. C is the macroblock to the top-right (3)
  180. D is the macroblock to the top-left (0)
  181. the same is repeated for backward motion vectors */
  182. cavs_vector mv[2*4*3];
  183. cavs_vector *top_mv[2];
  184. cavs_vector *col_mv;
  185. /** luma pred mode cache
  186. 0: -- B2 B3
  187. 3: A1 X0 X1
  188. 6: A3 X2 X3 */
  189. int pred_mode_Y[3*3];
  190. int *top_pred_Y;
  191. int l_stride, c_stride;
  192. int luma_scan[4];
  193. int qp;
  194. int qp_fixed;
  195. int cbp;
  196. ScanTable scantable;
  197. /** intra prediction is done with un-deblocked samples
  198. they are saved here before deblocking the MB */
  199. uint8_t *top_border_y, *top_border_u, *top_border_v;
  200. uint8_t left_border_y[26], left_border_u[10], left_border_v[10];
  201. uint8_t intern_border_y[26];
  202. uint8_t topleft_border_y, topleft_border_u, topleft_border_v;
  203. void (*intra_pred_l[8])(uint8_t *d,uint8_t *top,uint8_t *left,int stride);
  204. void (*intra_pred_c[7])(uint8_t *d,uint8_t *top,uint8_t *left,int stride);
  205. uint8_t *col_type_base;
  206. /* scaling factors for MV prediction */
  207. int sym_factor; ///< for scaling in symmetrical B block
  208. int direct_den[2]; ///< for scaling in direct B block
  209. int scale_den[2]; ///< for scaling neighbouring MVs
  210. uint8_t *edge_emu_buffer;
  211. int got_keyframe;
  212. int16_t *block;
  213. } AVSContext;
  214. extern const uint8_t ff_cavs_partition_flags[30];
  215. extern const cavs_vector ff_cavs_intra_mv;
  216. extern const cavs_vector ff_cavs_dir_mv;
  217. static inline void set_mvs(cavs_vector *mv, enum cavs_block size) {
  218. switch(size) {
  219. case BLK_16X16:
  220. mv[MV_STRIDE ] = mv[0];
  221. mv[MV_STRIDE+1] = mv[0];
  222. case BLK_16X8:
  223. mv[1] = mv[0];
  224. break;
  225. case BLK_8X16:
  226. mv[MV_STRIDE] = mv[0];
  227. break;
  228. }
  229. }
  230. void ff_cavs_filter(AVSContext *h, enum cavs_mb mb_type);
  231. void ff_cavs_load_intra_pred_luma(AVSContext *h, uint8_t *top, uint8_t **left,
  232. int block);
  233. void ff_cavs_load_intra_pred_chroma(AVSContext *h);
  234. void ff_cavs_modify_mb_i(AVSContext *h, int *pred_mode_uv);
  235. void ff_cavs_inter(AVSContext *h, enum cavs_mb mb_type);
  236. void ff_cavs_mv(AVSContext *h, enum cavs_mv_loc nP, enum cavs_mv_loc nC,
  237. enum cavs_mv_pred mode, enum cavs_block size, int ref);
  238. void ff_cavs_init_mb(AVSContext *h);
  239. int ff_cavs_next_mb(AVSContext *h);
  240. void ff_cavs_init_pic(AVSContext *h);
  241. void ff_cavs_init_top_lines(AVSContext *h);
  242. int ff_cavs_init(AVCodecContext *avctx);
  243. int ff_cavs_end (AVCodecContext *avctx);
  244. #endif /* AVCODEC_CAVS_H */