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.

277 lines
7.9KB

  1. /*
  2. * VP8 compatible video decoder
  3. *
  4. * Copyright (C) 2010 David Conrad
  5. * Copyright (C) 2010 Ronald S. Bultje
  6. * Copyright (C) 2010 Jason Garrett-Glaser
  7. * Copyright (C) 2012 Daniel Kang
  8. *
  9. * This file is part of FFmpeg.
  10. *
  11. * FFmpeg is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * FFmpeg is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with FFmpeg; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. */
  25. #ifndef AVCODEC_VP8_H
  26. #define AVCODEC_VP8_H
  27. #include "vp56.h"
  28. #include "vp56data.h"
  29. #include "vp8dsp.h"
  30. #include "h264pred.h"
  31. #if HAVE_PTHREADS
  32. #include <pthread.h>
  33. #elif HAVE_W32THREADS
  34. #include "w32pthreads.h"
  35. #elif HAVE_OS2THREADS
  36. #include "os2threads.h"
  37. #endif
  38. #define VP8_MAX_QUANT 127
  39. enum dct_token {
  40. DCT_0,
  41. DCT_1,
  42. DCT_2,
  43. DCT_3,
  44. DCT_4,
  45. DCT_CAT1,
  46. DCT_CAT2,
  47. DCT_CAT3,
  48. DCT_CAT4,
  49. DCT_CAT5,
  50. DCT_CAT6,
  51. DCT_EOB,
  52. NUM_DCT_TOKENS
  53. };
  54. // used to signal 4x4 intra pred in luma MBs
  55. #define MODE_I4x4 4
  56. enum inter_mvmode {
  57. VP8_MVMODE_ZERO = MODE_I4x4 + 1,
  58. VP8_MVMODE_MV,
  59. VP8_MVMODE_SPLIT
  60. };
  61. enum inter_splitmvmode {
  62. VP8_SPLITMVMODE_16x8 = 0, ///< 2 16x8 blocks (vertical)
  63. VP8_SPLITMVMODE_8x16, ///< 2 8x16 blocks (horizontal)
  64. VP8_SPLITMVMODE_8x8, ///< 2x2 blocks of 8x8px each
  65. VP8_SPLITMVMODE_4x4, ///< 4x4 blocks of 4x4px each
  66. VP8_SPLITMVMODE_NONE, ///< (only used in prediction) no split MVs
  67. };
  68. typedef struct VP8FilterStrength {
  69. uint8_t filter_level;
  70. uint8_t inner_limit;
  71. uint8_t inner_filter;
  72. } VP8FilterStrength;
  73. typedef struct VP8Macroblock {
  74. uint8_t skip;
  75. // todo: make it possible to check for at least (i4x4 or split_mv)
  76. // in one op. are others needed?
  77. uint8_t mode;
  78. uint8_t ref_frame;
  79. uint8_t partitioning;
  80. uint8_t chroma_pred_mode;
  81. uint8_t segment;
  82. uint8_t intra4x4_pred_mode_mb[16];
  83. uint8_t intra4x4_pred_mode_top[4];
  84. VP56mv mv;
  85. VP56mv bmv[16];
  86. } VP8Macroblock;
  87. typedef struct VP8ThreadData {
  88. DECLARE_ALIGNED(16, DCTELEM, block)[6][4][16];
  89. DECLARE_ALIGNED(16, DCTELEM, block_dc)[16];
  90. /**
  91. * This is the index plus one of the last non-zero coeff
  92. * for each of the blocks in the current macroblock.
  93. * So, 0 -> no coeffs
  94. * 1 -> dc-only (special transform)
  95. * 2+-> full transform
  96. */
  97. DECLARE_ALIGNED(16, uint8_t, non_zero_count_cache)[6][4];
  98. /**
  99. * For coeff decode, we need to know whether the above block had non-zero
  100. * coefficients. This means for each macroblock, we need data for 4 luma
  101. * blocks, 2 u blocks, 2 v blocks, and the luma dc block, for a total of 9
  102. * per macroblock. We keep the last row in top_nnz.
  103. */
  104. DECLARE_ALIGNED(8, uint8_t, left_nnz)[9];
  105. int thread_nr;
  106. #if HAVE_THREADS
  107. pthread_mutex_t lock;
  108. pthread_cond_t cond;
  109. #endif
  110. int thread_mb_pos; // (mb_y << 16) | (mb_x & 0xFFFF)
  111. int wait_mb_pos; // What the current thread is waiting on.
  112. uint8_t *edge_emu_buffer;
  113. VP8FilterStrength *filter_strength;
  114. } VP8ThreadData;
  115. #define MAX_THREADS 8
  116. typedef struct VP8Context {
  117. VP8ThreadData *thread_data;
  118. AVCodecContext *avctx;
  119. AVFrame *framep[4];
  120. AVFrame *next_framep[4];
  121. AVFrame *curframe;
  122. AVFrame *prev_frame;
  123. uint16_t mb_width; /* number of horizontal MB */
  124. uint16_t mb_height; /* number of vertical MB */
  125. int linesize;
  126. int uvlinesize;
  127. uint8_t keyframe;
  128. uint8_t deblock_filter;
  129. uint8_t mbskip_enabled;
  130. uint8_t profile;
  131. VP56mv mv_min;
  132. VP56mv mv_max;
  133. int8_t sign_bias[4]; ///< one state [0, 1] per ref frame type
  134. int ref_count[3];
  135. /**
  136. * Base parameters for segmentation, i.e. per-macroblock parameters.
  137. * These must be kept unchanged even if segmentation is not used for
  138. * a frame, since the values persist between interframes.
  139. */
  140. struct {
  141. uint8_t enabled;
  142. uint8_t absolute_vals;
  143. uint8_t update_map;
  144. int8_t base_quant[4];
  145. int8_t filter_level[4]; ///< base loop filter level
  146. } segmentation;
  147. struct {
  148. uint8_t simple;
  149. uint8_t level;
  150. uint8_t sharpness;
  151. } filter;
  152. VP8Macroblock *macroblocks;
  153. uint8_t *intra4x4_pred_mode_top;
  154. uint8_t intra4x4_pred_mode_left[4];
  155. /**
  156. * Macroblocks can have one of 4 different quants in a frame when
  157. * segmentation is enabled.
  158. * If segmentation is disabled, only the first segment's values are used.
  159. */
  160. struct {
  161. // [0] - DC qmul [1] - AC qmul
  162. int16_t luma_qmul[2];
  163. int16_t luma_dc_qmul[2]; ///< luma dc-only block quant
  164. int16_t chroma_qmul[2];
  165. } qmat[4];
  166. struct {
  167. uint8_t enabled; ///< whether each mb can have a different strength based on mode/ref
  168. /**
  169. * filter strength adjustment for the following macroblock modes:
  170. * [0-3] - i16x16 (always zero)
  171. * [4] - i4x4
  172. * [5] - zero mv
  173. * [6] - inter modes except for zero or split mv
  174. * [7] - split mv
  175. * i16x16 modes never have any adjustment
  176. */
  177. int8_t mode[VP8_MVMODE_SPLIT+1];
  178. /**
  179. * filter strength adjustment for macroblocks that reference:
  180. * [0] - intra / VP56_FRAME_CURRENT
  181. * [1] - VP56_FRAME_PREVIOUS
  182. * [2] - VP56_FRAME_GOLDEN
  183. * [3] - altref / VP56_FRAME_GOLDEN2
  184. */
  185. int8_t ref[4];
  186. } lf_delta;
  187. uint8_t (*top_border)[16+8+8];
  188. uint8_t (*top_nnz)[9];
  189. VP56RangeCoder c; ///< header context, includes mb modes and motion vectors
  190. /**
  191. * These are all of the updatable probabilities for binary decisions.
  192. * They are only implictly reset on keyframes, making it quite likely
  193. * for an interframe to desync if a prior frame's header was corrupt
  194. * or missing outright!
  195. */
  196. struct {
  197. uint8_t segmentid[3];
  198. uint8_t mbskip;
  199. uint8_t intra;
  200. uint8_t last;
  201. uint8_t golden;
  202. uint8_t pred16x16[4];
  203. uint8_t pred8x8c[3];
  204. uint8_t token[4][16][3][NUM_DCT_TOKENS-1];
  205. uint8_t mvc[2][19];
  206. } prob[2];
  207. VP8Macroblock *macroblocks_base;
  208. int invisible;
  209. int update_last; ///< update VP56_FRAME_PREVIOUS with the current one
  210. int update_golden; ///< VP56_FRAME_NONE if not updated, or which frame to copy if so
  211. int update_altref;
  212. /**
  213. * If this flag is not set, all the probability updates
  214. * are discarded after this frame is decoded.
  215. */
  216. int update_probabilities;
  217. /**
  218. * All coefficients are contained in separate arith coding contexts.
  219. * There can be 1, 2, 4, or 8 of these after the header context.
  220. */
  221. int num_coeff_partitions;
  222. VP56RangeCoder coeff_partition[8];
  223. DSPContext dsp;
  224. VP8DSPContext vp8dsp;
  225. H264PredContext hpc;
  226. vp8_mc_func put_pixels_tab[3][3][3];
  227. AVFrame frames[5];
  228. /**
  229. * A list of segmentation_map buffers that are to be free()'ed in
  230. * the next decoding iteration. We can't free() them right away
  231. * because the map may still be used by subsequent decoding threads.
  232. * Unused if frame threading is off.
  233. */
  234. uint8_t *segmentation_maps[5];
  235. int num_maps_to_be_freed;
  236. int maps_are_invalid;
  237. int num_jobs;
  238. /**
  239. * This describes the macroblock memory layout.
  240. * 0 -> Only width+height*2+1 macroblocks allocated (frame/single thread).
  241. * 1 -> Macroblocks for entire frame alloced (sliced thread).
  242. */
  243. int mb_layout;
  244. } VP8Context;
  245. #endif /* AVCODEC_VP8_H */