gstvp9parser.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /*
  2. * gstvp9parser.h
  3. *
  4. * Copyright (C) 2013-2014 Intel Corporation
  5. * Copyright (C) 2015 Intel Corporation
  6. * Author: XuGuangxin<Guangxin.Xu@intel.com>
  7. * Author: Sreerenj Balachandran<sreerenj.balachandran@intel.com>
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Library General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2 of the License, or (at your option) any later version.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Library General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Library General Public
  20. * License along with this library; if not, write to the
  21. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  22. * Boston, MA 02110-1301, USA.
  23. */
  24. #ifndef GST_VP9_PARSER_H
  25. #define GST_VP9_PARSER_H
  26. #ifndef GST_USE_UNSTABLE_API
  27. #warning "The VP9 parsing library is unstable API and may change in future."
  28. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  29. #endif
  30. #include <gst/gst.h>
  31. G_BEGIN_DECLS
  32. #define GST_VP9_FRAME_MARKER 0x02
  33. #define GST_VP9_SYNC_CODE 0x498342
  34. #define GST_VP9_MAX_LOOP_FILTER 63
  35. #define GST_VP9_MAX_PROB 255
  36. #define GST_VP9_REFS_PER_FRAME 3
  37. #define GST_VP9_REF_FRAMES_LOG2 3
  38. #define GST_VP9_REF_FRAMES (1 << GST_VP9_REF_FRAMES_LOG2)
  39. #define GST_VP9_FRAME_CONTEXTS_LOG2 2
  40. #define GST_VP9_MAX_LOOP_FILTER 63
  41. #define GST_VP9_MAX_SHARPNESS 7
  42. #define GST_VP9_MAX_REF_LF_DELTAS 4
  43. #define GST_VP9_MAX_MODE_LF_DELTAS 2
  44. #define GST_VP9_SEGMENT_DELTADATA 0
  45. #define GST_VP9_SEGMENT_ABSDATA 1
  46. #define GST_VP9_MAX_SEGMENTS 8
  47. #define GST_VP9_SEG_TREE_PROBS (GST_VP9_MAX_SEGMENTS-1)
  48. #define GST_VP9_PREDICTION_PROBS 3
  49. typedef struct _GstVp9Parser GstVp9Parser;
  50. typedef struct _GstVp9FrameHdr GstVp9FrameHdr;
  51. typedef struct _GstVp9LoopFilter GstVp9LoopFilter;
  52. typedef struct _GstVp9QuantIndices GstVp9QuantIndices;
  53. typedef struct _GstVp9Segmentation GstVp9Segmentation;
  54. typedef struct _GstVp9SegmentationInfo GstVp9SegmentationInfo;
  55. typedef struct _GstVp9SegmentationInfoData GstVp9SegmentationInfoData;
  56. /**
  57. * GstVp9ParseResult:
  58. * @GST_VP9_PARSER_OK: The parsing went well
  59. * @GST_VP9_PARSER_BROKEN_DATA: The data to parse is broken
  60. * @GST_VP9_PARSER_NO_PACKET_ERROR: An error occured during the parsing
  61. *
  62. * Result type of any parsing function.
  63. *
  64. * Since: 1.8
  65. */
  66. typedef enum
  67. {
  68. GST_VP9_PARSER_OK,
  69. GST_VP9_PARSER_BROKEN_DATA,
  70. GST_VP9_PARSER_ERROR,
  71. } GstVp9ParserResult;
  72. /**
  73. * GstVp9Profile: Bitstream profiles indicated by 2-3 bits in the uncompressed header
  74. * @GST_VP9_PROFILE_0: Profile 0, 8-bit 4:2:0 only.
  75. * @GST_VP9_PROFILE_1: Profile 1, 8-bit 4:4:4, 4:2:2, and 4:4:0.
  76. * @GST_VP9_PROFILE_2: Profile 2, 10-bit and 12-bit color only, with 4:2:0 sampling.
  77. * @GST_VP9_PROFILE_3: Profile 3, 10-bit and 12-bit color only, with 4:2:2/4:4:4/4:4:0 sampling.
  78. * @GST_VP9_PROFILE_UNDEFINED: Undefined profile
  79. *
  80. * VP9 Profiles
  81. *
  82. * Since: 1.8
  83. */
  84. typedef enum {
  85. GST_VP9_PROFILE_0,
  86. GST_VP9_PROFILE_1,
  87. GST_VP9_PROFILE_2,
  88. GST_VP9_PROFILE_3,
  89. GST_VP9_PROFILE_UNDEFINED
  90. } GstVP9Profile;
  91. /**
  92. * GstVp9FrameType:
  93. * @GST_VP9_KEY_FRAME: Key frame, only have intra blocks
  94. * @GST_VP9_INTER_FRAME: Inter frame, both intra and inter blocks
  95. *
  96. * VP9 frame types
  97. *
  98. * Since: 1.8
  99. */
  100. typedef enum {
  101. GST_VP9_KEY_FRAME = 0,
  102. GST_VP9_INTER_FRAME = 1
  103. } GstVp9FrameType;
  104. /**
  105. * GstVp9BitDepth:
  106. * @GST_VP9_BIT_DEPTH_8: Bit depth is 8
  107. * @GST_VP9_BIT_DEPTH_10 Bit depth is 10
  108. * @GST_VP9_BIT_DEPTH_12:Bit depth is 12
  109. *
  110. * Bit depths of encoded frames
  111. *
  112. * Since: 1.8
  113. */
  114. typedef enum {
  115. GST_VP9_BIT_DEPTH_8 = 8,
  116. GST_VP9_BIT_DEPTH_10 = 10,
  117. GST_VP9_BIT_DEPTH_12 = 12
  118. } GstVp9BitDepth;
  119. /**
  120. * GstVp9ColorSpace:
  121. * @GST_VP9_CS_UNKNOWN: Unknown color space
  122. * @GST_VP9_CS_BT_601: BT.601
  123. * @GST_VP9_CS_BT_709: BT.709
  124. * @GST_VP9_CS_SMPTE_170: SMPTE.170
  125. * @GST_VP9_CS_SMPTE_240: SMPTE.240
  126. * @GST_VP9_CS_BT_2020: BT.2020
  127. * @GST_VP9_CS_RESERVED: Reserved
  128. * @GST_VP9_CS_SRGB: sRGB
  129. *
  130. * Supported ColorSpace standards
  131. *
  132. * Since: 1.8
  133. */
  134. typedef enum {
  135. GST_VP9_CS_UNKNOWN = 0,
  136. GST_VP9_CS_BT_601 = 1,
  137. GST_VP9_CS_BT_709 = 2,
  138. GST_VP9_CS_SMPTE_170 = 3,
  139. GST_VP9_CS_SMPTE_240 = 4,
  140. GST_VP9_CS_BT_2020 = 5,
  141. GST_VP9_CS_RESERVED_2 = 6,
  142. GST_VP9_CS_SRGB = 7
  143. } GstVp9ColorSpace;
  144. /**
  145. * GstVp9ColorRange:
  146. * @GST_VP9_CR_LIMITED: Y range is [16-235], UV range is [16-240]
  147. * @GST_VP9_CR_FULL: Full range for Y,U and V [0-255]
  148. *
  149. * Possible color value ranges
  150. *
  151. * Since: 1.8
  152. */
  153. typedef enum {
  154. GST_VP9_CR_LIMITED,
  155. GST_VP9_CR_FULL
  156. } GstVp9ColorRange;
  157. /**
  158. * GstVp9InterpolationFilter:
  159. * @GST_VP9_INTERPOLATION_FILTER_EIGHTTAP: EightTap interpolation filter
  160. * @GST_VP9_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH: Smooth interpolation filter
  161. * @GST_VP9_INTERPOLATION_FILTER_EIGHTTAP_SHARP: Shart interpolation filter
  162. * @GST_VP9_INTERPOLATION_FILTER_BILINEAR: Bilinear interpolation filter
  163. * @GST_VP9_INTERPOLATION_FILTER_SWITCHABLE: Selectable interpolation filter
  164. *
  165. * Interpolation Filters Types
  166. *
  167. * Since: 1.8
  168. */
  169. typedef enum {
  170. GST_VP9_INTERPOLATION_FILTER_EIGHTTAP = 0,
  171. GST_VP9_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1,
  172. GST_VP9_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2,
  173. GST_VP9_INTERPOLATION_FILTER_BILINEAR = 3,
  174. GST_VP9_INTERPOLATION_FILTER_SWITCHABLE = 4
  175. } GstVp9InterpolationFilter;
  176. /**
  177. * GstVp9RefFrameType:
  178. * @GST_VP9_REF_FRAME_INTRA: Intra reference frame
  179. * @GST_VP9_REF_FRAME_LAST: Last Reference frame
  180. * @GST_VP9_REF_FRAME_GOLDEN: Golden Reference frame
  181. * @GST_VP9_REF_FRAME_ALTREF: Alternate Reference frame
  182. * @GST_VP9_REF_FRAME_MAX:
  183. *
  184. * Reference Frame types
  185. *
  186. * Since: 1.8
  187. */
  188. typedef enum {
  189. GST_VP9_REF_FRAME_INTRA = 0,
  190. GST_VP9_REF_FRAME_LAST = 1,
  191. GST_VP9_REF_FRAME_GOLDEN = 2,
  192. GST_VP9_REF_FRAME_ALTREF = 3,
  193. GST_VP9_REF_FRAME_MAX = 4
  194. } GstVp9RefFrameType;
  195. /**
  196. * GstVp9QuantIndices:
  197. * @y_ac_qi: indicates the dequantization table index used for the
  198. * luma AC coefficients
  199. * @y_dc_delta: indicates the delta value that is added to the
  200. * baseline index to obtain the luma DC coefficient dequantization
  201. * index
  202. * @uv_dc_delta: indicates the delta value that is added to the
  203. * baseline index to obtain the chroma DC coefficient dequantization
  204. * index
  205. * @uv_ac_delta: indicates the delta value that is added to the
  206. * baseline index to obtain the chroma AC coefficient dequantization
  207. * index
  208. *
  209. * Dequantization indices.
  210. *
  211. * Since: 1.8
  212. */
  213. struct _GstVp9QuantIndices
  214. {
  215. guint8 y_ac_qi;
  216. gint8 y_dc_delta;
  217. gint8 uv_dc_delta;
  218. gint8 uv_ac_delta;
  219. };
  220. /**
  221. * GstVp9LoopFilter:
  222. * @filter_level: indicates loop filter level for the current frame
  223. * @sharpness_level: indicates sharpness level for thecurrent frame
  224. * @mode_ref_delta_enabled: indicate if filter adjust is on
  225. * @mode_ref_delta_update: indicates if the delta values used in an
  226. * adjustment are updated in the current frame
  227. * @update_ref_deltas: indicate which ref deltas are updated
  228. * @ref_deltas: Loop filter strength adjustments based on
  229. * frame type (intra, inter)
  230. * @update_mode_deltas: indicate with mode deltas are updated
  231. * @mode_deltas: Loop filter strength adjustments based on
  232. * mode (zero, new mv)
  233. *
  234. * Loop filter values
  235. *
  236. * Since: 1.8
  237. */
  238. struct _GstVp9LoopFilter {
  239. gint filter_level;
  240. gint sharpness_level;
  241. guint8 mode_ref_delta_enabled;
  242. guint8 mode_ref_delta_update;
  243. guint8 update_ref_deltas[GST_VP9_MAX_REF_LF_DELTAS];
  244. gint8 ref_deltas[GST_VP9_MAX_REF_LF_DELTAS];
  245. guint8 update_mode_deltas[GST_VP9_MAX_MODE_LF_DELTAS];
  246. gint8 mode_deltas[GST_VP9_MAX_MODE_LF_DELTAS];
  247. };
  248. /**
  249. * GstVp9SegmentationInfoData:
  250. * @alternate_quantizer_enabled: indicate alternate quantizer enabled at segment level
  251. * @alternate_quantizer: alternate quantizer value
  252. * @alternate_loop_filter_enabled: indicate alternate loop filter enabled at segment level
  253. * @alternate_loop_filter: alternate loop filter
  254. * @reference_frame_enabled: indicate alternate reference frame at segment level
  255. * @reference_frame: alternate reference frame
  256. * @reference_skip: a block skip mode that implies both the use of a (0,0)
  257. * motion vector and that no residual will be coded.
  258. *
  259. * Segmentation info for each segment
  260. *
  261. * Since: 1.8
  262. */
  263. struct _GstVp9SegmentationInfoData {
  264. /* SEG_LVL_ALT_Q */
  265. guint8 alternate_quantizer_enabled;
  266. gint16 alternate_quantizer;
  267. /* SEG_LVL_ALT_LF */
  268. guint8 alternate_loop_filter_enabled;
  269. gint8 alternate_loop_filter;
  270. /* SEG_LVL_REF_FRAME */
  271. guint8 reference_frame_enabled;
  272. gint reference_frame;
  273. guint8 reference_skip;
  274. };
  275. /**
  276. * GstVp9SegmentationInfo:
  277. * @enabled: enables the segmentation feature for the current frame
  278. * @update_map: determines if segmentation is updated in the current frame
  279. * @update_tree_probs: determines if tree probabilities updated or not
  280. * @tree_probs: segment tree probabilities
  281. * @update_pred_probs:determines if prediction probabilities updated or not
  282. * @pred_probs: prediction probabilities
  283. * @abs_delta: interpretation of segment data values
  284. * @temporal_update: type of map update
  285. * @update_data: indicates if the segment feature data
  286. * is updated in the current frame
  287. * @data: segment feature data
  288. *
  289. * Segmentation info
  290. *
  291. * Since: 1.8
  292. */
  293. struct _GstVp9SegmentationInfo {
  294. /* enable in setup_segmentation*/
  295. guint8 enabled;
  296. /* update_map in setup_segmentation*/
  297. guint8 update_map;
  298. /* tree_probs exist or not*/
  299. guint8 update_tree_probs[GST_VP9_SEG_TREE_PROBS];
  300. guint8 tree_probs[GST_VP9_SEG_TREE_PROBS];
  301. /* pred_probs exist or not*/
  302. guint8 update_pred_probs[GST_VP9_PREDICTION_PROBS];
  303. guint8 pred_probs[GST_VP9_PREDICTION_PROBS];
  304. /* abs_delta in setup_segmentation */
  305. guint8 abs_delta;
  306. /* temporal_update in setup_segmentation */
  307. guint8 temporal_update;
  308. /* update_data in setup_segmentation*/
  309. guint8 update_data;
  310. GstVp9SegmentationInfoData data[GST_VP9_MAX_SEGMENTS];
  311. };
  312. /**
  313. * GstVp9FrameHdr:
  314. * @profile: encoded profile
  315. * @show_existing_frame: display already decoded frame instead of doing the decoding
  316. * @frame_to_show: which frame to show if show_existing_frame is true
  317. * @frame_type: frame type
  318. * @show_frame: indicate whether it is a displayable frame or not
  319. * @error_resilient_mode: error resilent mode
  320. * @subsampling_x: horizontal subsampling
  321. * @subsampling_y: vertical subsampling
  322. * @width: frame width
  323. * @height: frame height
  324. * @display_size_enabled: display size enabled (cropping)
  325. * @display_width: display width
  326. * @display_height: display height
  327. * @frame_context_idx: frame context index
  328. * @bit_depth: bit depth of the stream
  329. * @color_space: color space standard
  330. * @color_range: color range standard
  331. * @intra_only: intra only frame
  332. * @reset_frame_context: reset frame context
  333. * @refresh_frame_flags: refresh reference frame flags
  334. * @ref_frame_indices: reference frame index
  335. * @ref_frame_sign_bias: sign bias for selecting altref,last and golden frames
  336. * @allow_high_precision_mv: allow hight precision motion vector
  337. * @mcomp_filter_type: interpolation filter type
  338. * @refresh_frame_context: refresh frame context indicator
  339. * @frame_parallel_decoding_mode: enable or disable parallel decoding support.
  340. * @loopfilter: loopfilter values
  341. * @quant_indices: quantization indeces
  342. * @segmentation: segmentation info
  343. * @log2_tile_rows: tile row indicator
  344. * @log2_tile_columns: tile column indicator
  345. * @first_partition_size: first partition size (after the uncompressed header)
  346. * @lossless_flag: lossless mode decode
  347. * @frame_header_length_in_bytes: length of uncompressed header
  348. *
  349. * Frame header
  350. *
  351. * Since: 1.8
  352. */
  353. struct _GstVp9FrameHdr
  354. {
  355. guint profile;
  356. guint8 show_existing_frame;
  357. gint frame_to_show;
  358. guint frame_type;
  359. guint8 show_frame;
  360. guint8 error_resilient_mode;
  361. gint subsampling_x;
  362. gint subsampling_y;
  363. guint32 width;
  364. guint32 height;
  365. guint8 display_size_enabled;
  366. guint32 display_width;
  367. guint32 display_height;
  368. guint frame_context_idx;
  369. guint bit_depth;
  370. guint color_space;
  371. guint color_range;
  372. guint8 intra_only;
  373. gint reset_frame_context;
  374. gint refresh_frame_flags;
  375. gint ref_frame_indices[GST_VP9_REFS_PER_FRAME];
  376. gint ref_frame_sign_bias[GST_VP9_REFS_PER_FRAME];
  377. gint allow_high_precision_mv;
  378. guint8 mcomp_filter_type;
  379. gint refresh_frame_context;
  380. /* frame_parallel_decoding_mode in vp9 code*/
  381. gint frame_parallel_decoding_mode;
  382. GstVp9LoopFilter loopfilter;
  383. GstVp9QuantIndices quant_indices;
  384. GstVp9SegmentationInfo segmentation;
  385. gint log2_tile_rows;
  386. gint log2_tile_columns;
  387. guint32 first_partition_size;
  388. /* calculated values */
  389. guint lossless_flag;
  390. guint32 frame_header_length_in_bytes;
  391. };
  392. /**
  393. * GstVp9Segmentation:
  394. * @filter_level: loop filter level
  395. * @luma_ac_quant_scale: AC quant scale for luma(Y) component
  396. * @luma_dc_quant_scale: DC quant scale for luma(Y) component
  397. * @chroma_ac_quant_scale AC quant scale for chroma(U/V) component
  398. * @chroma_dc_quant_scale: DC quant scale for chroma (U/V) component
  399. * @reference_frame_enabled: alternate reference frame enablement
  400. * @reference_frame: alternate reference frame
  401. * @reference_skip: a block skip mode that implies both the use of a (0,0)
  402. * motion vector and that no residual will be coded
  403. *
  404. * Segmentation info kept across multipe frames
  405. *
  406. * Since: 1.8
  407. */
  408. struct _GstVp9Segmentation
  409. {
  410. guint8 filter_level[4][2];
  411. gint16 luma_ac_quant_scale;
  412. gint16 luma_dc_quant_scale;
  413. gint16 chroma_ac_quant_scale;
  414. gint16 chroma_dc_quant_scale;
  415. guint8 reference_frame_enabled;
  416. gint reference_frame;
  417. guint8 reference_skip;
  418. };
  419. /**
  420. * GstVp9Parser:
  421. * @priv: GstVp9ParserPrivate struct to keep track of state variables
  422. * @mb_segment_tree_probs: decoding tree probabilities
  423. * @segment_pred_probs: segment prediction probabiilties
  424. * @segmentation: Segmentation info
  425. *
  426. * Parser context that needs to be live across frames
  427. *
  428. * Since: 1.8
  429. */
  430. struct _GstVp9Parser
  431. {
  432. /* private stuct for tracking state variables across frames */
  433. void *priv;
  434. guint8 mb_segment_tree_probs[GST_VP9_SEG_TREE_PROBS];
  435. guint8 segment_pred_probs[GST_VP9_PREDICTION_PROBS];
  436. GstVp9Segmentation segmentation[GST_VP9_MAX_SEGMENTS];
  437. };
  438. GstVp9Parser * gst_vp9_parser_new (void);
  439. GstVp9ParserResult gst_vp9_parser_parse_frame_header (GstVp9Parser* parser, GstVp9FrameHdr * frame_hdr, const guint8 * data, gsize size);
  440. void gst_vp9_parser_free (GstVp9Parser * parser);
  441. G_END_DECLS
  442. #endif /* GST_VP9_PARSER_H */