gstvp8parser.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. /*
  2. * gstvp8parser.h - VP8 parser
  3. *
  4. * Copyright (C) 2013-2014 Intel Corporation
  5. * Author: Halley Zhao <halley.zhao@intel.com>
  6. * Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Library General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2 of the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Library General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public
  19. * License along with this library; if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  21. * Boston, MA 02110-1301, USA.
  22. */
  23. #ifndef GST_VP8_PARSER_H
  24. #define GST_VP8_PARSER_H
  25. #include <gst/gst.h>
  26. G_BEGIN_DECLS
  27. typedef struct _GstVp8FrameHdr GstVp8FrameHdr;
  28. typedef struct _GstVp8QuantIndices GstVp8QuantIndices;
  29. typedef struct _GstVp8Segmentation GstVp8Segmentation;
  30. typedef struct _GstVp8MbLfAdjustments GstVp8MbLfAdjustments;
  31. typedef struct _GstVp8TokenProbs GstVp8TokenProbs;
  32. typedef struct _GstVp8MvProbs GstVp8MvProbs;
  33. typedef struct _GstVp8ModeProbs GstVp8ModeProbs;
  34. typedef struct _GstVp8Parser GstVp8Parser;
  35. /**
  36. * GstVp8ParserResult:
  37. * @GST_VP8_PARSER_OK: The parsing succeeded
  38. * @GST_VP8_PARSER_BROKEN_DATA: The data to parse is broken
  39. * @GST_VP8_PARSER_ERROR: An error accured when parsing
  40. *
  41. * The result of parsing VP8 data.
  42. */
  43. typedef enum {
  44. GST_VP8_PARSER_OK,
  45. GST_VP8_PARSER_BROKEN_DATA,
  46. GST_VP8_PARSER_ERROR,
  47. } GstVp8ParserResult;
  48. /**
  49. * GstVpQuantIndices:
  50. * @y_ac_qi: indicates the dequantization table index used for the
  51. * luma AC coefficients
  52. * @y_dc_delta: indicates the delta value that is added to the
  53. * baseline index to obtain the luma DC coefficient dequantization
  54. * index
  55. * @y2_dc_delta: indicates the delta value that is added to the
  56. * baseline index to obtain the Y2 block DC coefficient dequantization
  57. * index
  58. * @y2_ac_delta: indicates the delta value that is added to the
  59. * baseline index to obtain the Y2 block AC coefficient dequantization
  60. * index
  61. * @uv_dc_delta: indicates the delta value that is added to the
  62. * baseline index to obtain the chroma DC coefficient dequantization
  63. * index
  64. * @uv_ac_delta: indicates the delta value that is added to the
  65. * baseline index to obtain the chroma AC coefficient dequantization
  66. * index
  67. *
  68. * Dequantization indices.
  69. */
  70. struct _GstVp8QuantIndices
  71. {
  72. guint8 y_ac_qi;
  73. gint8 y_dc_delta;
  74. gint8 y2_dc_delta;
  75. gint8 y2_ac_delta;
  76. gint8 uv_dc_delta;
  77. gint8 uv_ac_delta;
  78. };
  79. /**
  80. * GstVp8Segmentation:
  81. * @segmentation_enabled: enables the segmentation feature for the
  82. * current frame
  83. * @update_mb_segmentation_map: determines if the MB segmentation map
  84. * is updated in the current frame
  85. * @update_segment_feature_data: indicates if the segment feature data
  86. * is updated in the current frame
  87. * @segment_feature_mode: indicates the feature data update mode (0:
  88. * delta, 1: absolute value)
  89. * @quantizer_update_value: indicates the update value for the segment
  90. * quantizer
  91. * @lf_update_value: indicates the update value for the loop filter level
  92. * @segment_prob: indicates the branch probabilities of the segment_id
  93. * decoding tree
  94. *
  95. * Segmentation feature data.
  96. */
  97. struct _GstVp8Segmentation
  98. {
  99. guint8 segmentation_enabled;
  100. guint8 update_mb_segmentation_map;
  101. guint8 update_segment_feature_data;
  102. /* if update_segment_feature_data == 1 */
  103. guint8 segment_feature_mode;
  104. gint8 quantizer_update_value[4];
  105. gint8 lf_update_value[4];
  106. /* if update_mb_segmentation_map == 1 */
  107. guint8 segment_prob[3];
  108. };
  109. /**
  110. * GstVp8MbLfAdjustments:
  111. * @loop_filter_adj_enable: indicates if the MB-level loop filter
  112. * adjustment is on for the current frame
  113. * @mode_ref_lf_delta_update: indicates if the delta values used in an
  114. * adjustment are updated in the current frame
  115. * @ref_frame_delta: indicates the adjustment delta value
  116. * corresponding to a certain used reference frame
  117. * @mb_mode_delta: indicates the adjustment delta value corresponding
  118. * to a certain MB prediction mode
  119. *
  120. * MB-level loop filter adjustments.
  121. */
  122. struct _GstVp8MbLfAdjustments
  123. {
  124. guint8 loop_filter_adj_enable;
  125. guint8 mode_ref_lf_delta_update;
  126. /* if mode_ref_lf_delta_update == 1 */
  127. gint8 ref_frame_delta[4];
  128. gint8 mb_mode_delta[4];
  129. };
  130. /**
  131. * GstVp8TokenProbs:
  132. * @prob: token probability
  133. *
  134. * Token probabilities, with cumulative updates applied.
  135. *
  136. * Each probability value in this matrix is live across frames, until
  137. * they are reset to their default values on key frame.
  138. */
  139. struct _GstVp8TokenProbs
  140. {
  141. guint8 prob[4][8][3][11];
  142. };
  143. /**
  144. * GstVp8MvProbs:
  145. * @prob: MV probability
  146. *
  147. * Probabilities used for motion vector decoding, with cumulative
  148. * updates applied.
  149. *
  150. * Each probability value in this matrix is live across frames, until
  151. * they are reset to their default values on key frame.
  152. */
  153. struct _GstVp8MvProbs
  154. {
  155. guint8 prob[2][19];
  156. };
  157. /**
  158. * GstVp8ModeProbs:
  159. * @y_prob: indicates the branch probabilities of the luma
  160. * intra-prediction mode decoding tree
  161. * @uv_prob: indicates the branch probabilities of the chroma
  162. * intra-prediction mode decoding tree
  163. *
  164. * Probabilities used for intra-prediction mode decoding tree.
  165. *
  166. * Each probability value in thie structure is live across frames,
  167. * until they are reset to their default values on key frame.
  168. */
  169. struct _GstVp8ModeProbs
  170. {
  171. guint8 y_prob[4];
  172. guint8 uv_prob[3];
  173. };
  174. /**
  175. * GstVp8FrameHdr:
  176. * @key_frame: indicates whether the frame is a key frame (1), or an
  177. * inter frame (0)
  178. * @version: version number
  179. * @show_frame: indicates whether the frame is meant to be displayed (1),
  180. * or not (0)
  181. * @data_chunk_size: the size in bytes of the Uncompressed Data Chunk
  182. * @first_part_size: the size in bytes of the first partition (control
  183. * partition), excluding the uncompressed data chunk
  184. * @width: the frame width in pixels
  185. * @height: the frame height in pixels
  186. * @horiz_scale_code: horizontal scale code value
  187. * @vert_scale_code: vertical scale code value
  188. * @color_space: defines the YUV color space of the sequence
  189. * @clamping_type: specifies if the decoder is required to clamp the
  190. * reconstructed pixel values
  191. * @filter_type: determines whether the normal or the simple loop
  192. * filter is used
  193. * @loop_filter_level: controls the deblocking filter
  194. * @sharpness_level: controls the deblocking filter
  195. * @log2_nbr_of_dct_partitions: determines the number of separate
  196. * partitions containing the DCT coefficients of the macroblocks
  197. * @partition_size: determines the size of each separate partition
  198. * containing the DCT coefficients of the macroblocks, including the
  199. * very last one (calculated size)
  200. * @quant_indices: dequantization indices (see #GstVp8QuantIndices)
  201. * @token_probs: token probabilities (see #GstVp8TokenProbs)
  202. * @mv_probs: probabilities used for motion vector decoding
  203. * (see #GstVp8MvProbs)
  204. * @mode_probs: probabilities used for intra-prediction mode decoding
  205. * tree (see #GstVp8ModeProbs)
  206. * @refresh_entropy_probs: determines whether updated token
  207. * probabilities are used only for this frame or until further update
  208. * @refresh_golden_frame: determines if the current decoded frame
  209. * refreshes the golden frame
  210. * @refresh_alternate_frame: determines if the current decoded frame
  211. * refreshes the alternate reference frame
  212. * @copy_buffer_to_golden: determines if the golden reference is
  213. * replaced by another reference
  214. * @copy_buffer_to_alternate: determines if the alternate reference is
  215. * replaced by another reference
  216. * @sign_bias_golden: controls the sign of motion vectors when the
  217. * golden frame is referenced
  218. * @sign_bias_alternate: controls the sign of motion vectors when the
  219. * alternate frame is referenced
  220. * @refresh_last: determines if the current decoded frame refreshes
  221. * the last frame reference buffer
  222. * @mb_no_skip_coeff: enables (0) or disables (1) the skipping of
  223. * macroblocks containing no non-zero coefficients
  224. * @prob_skip_false: indicates the probability that the macroblock is
  225. * not skipped
  226. * @prob_intra: indicates the probability of an intra macroblock
  227. * @prob_last: indicates the probability that the last reference frame
  228. * is used for inter-prediction
  229. * @prob_gf: indicates the probability that the golden reference frame
  230. * is used for inter-prediction
  231. * @rd_range: last range decoder value for "Range"
  232. * @rd_value: last range decoder value for "Value"
  233. * @rd_count: number of bits left in range decoder "Value" (@rd_value)
  234. * @header_size: the size in bits of the Frame Header, thus excluding
  235. * any Uncompressed Data Chunk bytes
  236. *
  237. * Frame header.
  238. */
  239. struct _GstVp8FrameHdr
  240. {
  241. guint8 key_frame;
  242. guint8 version;
  243. guint8 show_frame;
  244. guint8 data_chunk_size;
  245. guint32 first_part_size;
  246. /* if key_frame == 1 */
  247. guint16 width;
  248. guint16 height;
  249. guint8 horiz_scale_code;
  250. guint8 vert_scale_code;
  251. guint8 color_space;
  252. guint8 clamping_type;
  253. guint8 filter_type;
  254. guint8 loop_filter_level;
  255. guint8 sharpness_level;
  256. guint8 log2_nbr_of_dct_partitions;
  257. guint partition_size[8];
  258. GstVp8QuantIndices quant_indices;
  259. GstVp8TokenProbs token_probs;
  260. GstVp8MvProbs mv_probs;
  261. GstVp8ModeProbs mode_probs;
  262. guint8 refresh_entropy_probs;
  263. guint8 refresh_last;
  264. /* if key_frame != 1 */
  265. guint8 refresh_golden_frame;
  266. guint8 refresh_alternate_frame;
  267. guint8 copy_buffer_to_golden;
  268. guint8 copy_buffer_to_alternate;
  269. guint8 sign_bias_golden;
  270. guint8 sign_bias_alternate;
  271. guint8 mb_no_skip_coeff;
  272. guint8 prob_skip_false;
  273. /* if key_frame != 1 */
  274. guint8 prob_intra;
  275. guint8 prob_last;
  276. guint8 prob_gf;
  277. /* Range decoder state */
  278. guint8 rd_range;
  279. guint8 rd_value;
  280. guint8 rd_count;
  281. /* Size of the Frame Header in bits */
  282. guint header_size;
  283. };
  284. /**
  285. * GstVp8Parser:
  286. * @segmentation: segmentation feature data
  287. * @mb_lf_adjust: MB-level loop filter adjustments
  288. * @token_probs: token probabilities
  289. * @mv_probs: probabilities used for motion vector decoding
  290. * @mode_probs: probabilities used for intra-prediction mode decoding tree.
  291. *
  292. * Parser context that needs to be live across frames. For instance
  293. * the probabilities tables stored in #GstVp8FrameHdr may depend on
  294. * the previous frames.
  295. */
  296. struct _GstVp8Parser
  297. {
  298. GstVp8Segmentation segmentation;
  299. GstVp8MbLfAdjustments mb_lf_adjust;
  300. GstVp8TokenProbs token_probs;
  301. GstVp8MvProbs mv_probs;
  302. GstVp8ModeProbs mode_probs;
  303. };
  304. void
  305. gst_vp8_parser_init (GstVp8Parser * parser);
  306. GstVp8ParserResult
  307. gst_vp8_parser_parse_frame_header (GstVp8Parser * parser,
  308. GstVp8FrameHdr * frame_hdr, const guint8 * data, gsize size);
  309. G_END_DECLS
  310. #endif /* GST_VP8_PARSER_H */