gsth264parser.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082
  1. /* Gstreamer
  2. * Copyright (C) <2011> Intel Corporation
  3. * Copyright (C) <2011> Collabora Ltd.
  4. * Copyright (C) <2011> Thibault Saunier <thibault.saunier@collabora.com>
  5. *
  6. * Some bits C-c,C-v'ed and s/4/3 from h264parse and videoparsers/h264parse.c:
  7. * Copyright (C) <2010> Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
  8. * Copyright (C) <2010> Collabora Multimedia
  9. * Copyright (C) <2010> Nokia Corporation
  10. *
  11. * (C) 2005 Michal Benes <michal.benes@itonis.tv>
  12. * (C) 2008 Wim Taymans <wim.taymans@gmail.com>
  13. *
  14. * This library is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU Library General Public
  16. * License as published by the Free Software Foundation; either
  17. * version 2 of the License, or (at your option) any later version.
  18. *
  19. * This library is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * Library General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Library General Public
  25. * License along with this library; if not, write to the
  26. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  27. * Boston, MA 02110-1301, USA.
  28. */
  29. #ifndef __GST_H264_PARSER_H__
  30. #define __GST_H264_PARSER_H__
  31. #ifndef GST_USE_UNSTABLE_API
  32. #warning "The H.264 parsing library is unstable API and may change in future."
  33. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  34. #endif
  35. #include <gst/gst.h>
  36. G_BEGIN_DECLS
  37. #define GST_H264_MAX_SPS_COUNT 32
  38. #define GST_H264_MAX_PPS_COUNT 256
  39. #define GST_H264_MAX_VIEW_COUNT 1024
  40. #define GST_H264_MAX_VIEW_ID (GST_H264_MAX_VIEW_COUNT - 1)
  41. #define GST_H264_IS_P_SLICE(slice) (((slice)->type % 5) == GST_H264_P_SLICE)
  42. #define GST_H264_IS_B_SLICE(slice) (((slice)->type % 5) == GST_H264_B_SLICE)
  43. #define GST_H264_IS_I_SLICE(slice) (((slice)->type % 5) == GST_H264_I_SLICE)
  44. #define GST_H264_IS_SP_SLICE(slice) (((slice)->type % 5) == GST_H264_SP_SLICE)
  45. #define GST_H264_IS_SI_SLICE(slice) (((slice)->type % 5) == GST_H264_SI_SLICE)
  46. /**
  47. * GST_H264_IS_SVC_NALU:
  48. * @nalu: a #GstH264NalUnit
  49. *
  50. * Check if @nalu is a scalable extension NAL unit.
  51. *
  52. * Since: 1.6
  53. */
  54. #define GST_H264_IS_SVC_NALU(nalu) \
  55. ((nalu)->extension_type == GST_H264_NAL_EXTENSION_SVC)
  56. /**
  57. * GST_H264_IS_MVC_NALU:
  58. * @nalu: a #GstH264NalUnit
  59. *
  60. * Check if @nalu is a multiview extension NAL unit.
  61. *
  62. * Since: 1.6
  63. */
  64. #define GST_H264_IS_MVC_NALU(nalu) \
  65. ((nalu)->extension_type == GST_H264_NAL_EXTENSION_MVC)
  66. /**
  67. * GstH264Profile:
  68. * @GST_H264_PROFILE_BASELINE: Baseline profile (A.2.1)
  69. * @GST_H264_PROFILE_MAIN: Main profile (A.2.2)
  70. * @GST_H264_PROFILE_EXTENDED: Extended profile (A.2.3)
  71. * @GST_H264_PROFILE_HIGH: High profile (A.2.4)
  72. * @GST_H264_PROFILE_HIGH10: High 10 profile (A.2.5) or High 10 Intra
  73. * profile (A.2.8), depending on constraint_set3_flag
  74. * @GST_H264_PROFILE_HIGH_422: High 4:2:2 profile (A.2.6) or High
  75. * 4:2:2 Intra profile (A.2.9), depending on constraint_set3_flag
  76. * @GST_H264_PROFILE_HIGH_444: High 4:4:4 Predictive profile (A.2.7)
  77. * or High 4:4:4 Intra profile (A.2.10), depending on the value of
  78. * constraint_set3_flag
  79. * @GST_H264_PROFILE_MULTIVIEW_HIGH: Multiview High profile (H.10.1.1)
  80. * @GST_H264_PROFILE_STEREO_HIGH: Stereo High profile (H.10.1.2)
  81. * @GST_H264_PROFILE_SCALABLE_BASELINE: Scalable Baseline profile (G.10.1.1)
  82. * @GST_H264_PROFILE_SCALABLE_HIGH: Scalable High profile (G.10.1.2)
  83. * or Scalable High Intra profile (G.10.1.3), depending on the value
  84. * of constraint_set3_flag
  85. *
  86. * H.264 Profiles.
  87. *
  88. * Since: 1.2
  89. */
  90. typedef enum {
  91. GST_H264_PROFILE_BASELINE = 66,
  92. GST_H264_PROFILE_MAIN = 77,
  93. GST_H264_PROFILE_EXTENDED = 88,
  94. GST_H264_PROFILE_HIGH = 100,
  95. GST_H264_PROFILE_HIGH10 = 110,
  96. GST_H264_PROFILE_HIGH_422 = 122,
  97. GST_H264_PROFILE_HIGH_444 = 244,
  98. GST_H264_PROFILE_MULTIVIEW_HIGH = 118,
  99. GST_H264_PROFILE_STEREO_HIGH = 128,
  100. GST_H264_PROFILE_SCALABLE_BASELINE = 83,
  101. GST_H264_PROFILE_SCALABLE_HIGH = 86
  102. } GstH264Profile;
  103. /**
  104. * GstH264NalUnitType:
  105. * @GST_H264_NAL_UNKNOWN: Unknown nal type
  106. * @GST_H264_NAL_SLICE: Slice nal
  107. * @GST_H264_NAL_SLICE_DPA: DPA slice nal
  108. * @GST_H264_NAL_SLICE_DPB: DPB slice nal
  109. * @GST_H264_NAL_SLICE_DPC: DPC slice nal
  110. * @GST_H264_NAL_SLICE_IDR: DPR slice nal
  111. * @GST_H264_NAL_SEI: Supplemental enhancement information (SEI) nal unit
  112. * @GST_H264_NAL_SPS: Sequence parameter set (SPS) nal unit
  113. * @GST_H264_NAL_PPS: Picture parameter set (PPS) nal unit
  114. * @GST_H264_NAL_AU_DELIMITER: Access unit (AU) delimiter nal unit
  115. * @GST_H264_NAL_SEQ_END: End of sequence nal unit
  116. * @GST_H264_NAL_STREAM_END: End of stream nal unit
  117. * @GST_H264_NAL_FILLER_DATA: Filler data nal lunit
  118. * @GST_H264_NAL_SPS_EXT: Sequence parameter set (SPS) extension NAL unit
  119. * @GST_H264_NAL_PREFIX_UNIT: Prefix NAL unit
  120. * @GST_H264_NAL_SUBSET_SPS: Subset sequence parameter set (SSPS) NAL unit
  121. * @GST_H264_NAL_DEPTH_SPS: Depth parameter set (DPS) NAL unit
  122. * @GST_H264_NAL_SLICE_AUX: Auxiliary coded picture without partitioning NAL unit
  123. * @GST_H264_NAL_SLICE_EXT: Coded slice extension NAL unit
  124. * @GST_H264_NAL_SLICE_DEPTH: Coded slice extension for depth or 3D-AVC texture view
  125. *
  126. * Indicates the type of H264 Nal Units
  127. */
  128. typedef enum
  129. {
  130. GST_H264_NAL_UNKNOWN = 0,
  131. GST_H264_NAL_SLICE = 1,
  132. GST_H264_NAL_SLICE_DPA = 2,
  133. GST_H264_NAL_SLICE_DPB = 3,
  134. GST_H264_NAL_SLICE_DPC = 4,
  135. GST_H264_NAL_SLICE_IDR = 5,
  136. GST_H264_NAL_SEI = 6,
  137. GST_H264_NAL_SPS = 7,
  138. GST_H264_NAL_PPS = 8,
  139. GST_H264_NAL_AU_DELIMITER = 9,
  140. GST_H264_NAL_SEQ_END = 10,
  141. GST_H264_NAL_STREAM_END = 11,
  142. GST_H264_NAL_FILLER_DATA = 12,
  143. GST_H264_NAL_SPS_EXT = 13,
  144. GST_H264_NAL_PREFIX_UNIT = 14,
  145. GST_H264_NAL_SUBSET_SPS = 15,
  146. GST_H264_NAL_DEPTH_SPS = 16,
  147. GST_H264_NAL_SLICE_AUX = 19,
  148. GST_H264_NAL_SLICE_EXT = 20,
  149. GST_H264_NAL_SLICE_DEPTH = 21
  150. } GstH264NalUnitType;
  151. /**
  152. * GstH264NalUnitExtensionType:
  153. * @GST_H264_NAL_EXTENSION_NONE: No NAL unit header extension is available
  154. * @GST_H264_NAL_EXTENSION_SVC: NAL unit header extension for SVC (Annex G)
  155. * @GST_H264_NAL_EXTENSION_MVC: NAL unit header extension for MVC (Annex H)
  156. *
  157. * Indicates the type of H.264 NAL unit extension.
  158. *
  159. * Since: 1.6
  160. */
  161. typedef enum
  162. {
  163. GST_H264_NAL_EXTENSION_NONE = 0,
  164. GST_H264_NAL_EXTENSION_SVC,
  165. GST_H264_NAL_EXTENSION_MVC,
  166. } GstH264NalUnitExtensionType;
  167. /**
  168. * GstH264ParserResult:
  169. * @GST_H264_PARSER_OK: The parsing succeded
  170. * @GST_H264_PARSER_BROKEN_DATA: The data to parse is broken
  171. * @GST_H264_PARSER_BROKEN_LINK: The link to structure needed for the parsing couldn't be found
  172. * @GST_H264_PARSER_ERROR: An error occured when parsing
  173. * @GST_H264_PARSER_NO_NAL: No nal found during the parsing
  174. * @GST_H264_PARSER_NO_NAL_END: Start of the nal found, but not the end.
  175. *
  176. * The result of parsing H264 data.
  177. */
  178. typedef enum
  179. {
  180. GST_H264_PARSER_OK,
  181. GST_H264_PARSER_BROKEN_DATA,
  182. GST_H264_PARSER_BROKEN_LINK,
  183. GST_H264_PARSER_ERROR,
  184. GST_H264_PARSER_NO_NAL,
  185. GST_H264_PARSER_NO_NAL_END
  186. } GstH264ParserResult;
  187. /**
  188. * GstH264FramePackingType:
  189. * @GST_H264_FRAME_PACKING_NONE: A complete 2D frame without any frame packing
  190. * @GST_H264_FRAME_PACKING_CHECKERBOARD_INTERLEAVING: Checkerboard
  191. * based interleaving
  192. * @GST_H264_FRAME_PACKING_COLUMN_INTERLEAVING: Column based interleaving
  193. * @GST_H264_FRAME_PACKING_ROW_INTERLEAVING: Row based interleaving
  194. * @GST_H264_FRAME_PACKING_SIDE_BY_SIDE: Side-by-side packing
  195. * @GST_H264_FRMAE_PACKING_TOP_BOTTOM: Top-Bottom packing
  196. * @GST_H264_FRAME_PACKING_TEMPORAL_INTERLEAVING: Temporal interleaving
  197. *
  198. * Frame packing arrangement types.
  199. *
  200. * Since: 1.6
  201. */
  202. typedef enum
  203. {
  204. GST_H264_FRAME_PACKING_NONE = 6,
  205. GST_H264_FRAME_PACKING_CHECKERBOARD_INTERLEAVING = 0,
  206. GST_H264_FRAME_PACKING_COLUMN_INTERLEAVING = 1,
  207. GST_H264_FRAME_PACKING_ROW_INTERLEAVING = 2,
  208. GST_H264_FRAME_PACKING_SIDE_BY_SIDE = 3,
  209. GST_H264_FRMAE_PACKING_TOP_BOTTOM = 4,
  210. GST_H264_FRAME_PACKING_TEMPORAL_INTERLEAVING = 5
  211. } GstH264FramePackingType;
  212. /**
  213. * GstH264SEIPayloadType:
  214. * @GST_H264_SEI_BUF_PERIOD: Buffering Period SEI Message
  215. * @GST_H264_SEI_PIC_TIMING: Picture Timing SEI Message
  216. * @GST_H264_SEI_RECOVERY_POINT: Recovery Point SEI Message (D.2.7)
  217. * @GST_H264_SEI_STEREO_VIDEO_INFO: stereo video info SEI message (Since: 1.6)
  218. * @GST_H264_SEI_FRAME_PACKING: Frame Packing Arrangement (FPA) message that
  219. * contains the 3D arrangement for stereoscopic 3D video (Since: 1.6)
  220. * ...
  221. *
  222. * The type of SEI message.
  223. */
  224. typedef enum
  225. {
  226. GST_H264_SEI_BUF_PERIOD = 0,
  227. GST_H264_SEI_PIC_TIMING = 1,
  228. GST_H264_SEI_RECOVERY_POINT = 6,
  229. GST_H264_SEI_STEREO_VIDEO_INFO = 21,
  230. GST_H264_SEI_FRAME_PACKING = 45
  231. /* and more... */
  232. } GstH264SEIPayloadType;
  233. /**
  234. * GstH264SEIPicStructType:
  235. * @GST_H264_SEI_PIC_STRUCT_FRAME: Picture is a frame
  236. * @GST_H264_SEI_PIC_STRUCT_TOP_FIELD: Top field of frame
  237. * @GST_H264_SEI_PIC_STRUCT_BOTTOM_FIELD: Botom field of frame
  238. * @GST_H264_SEI_PIC_STRUCT_TOP_BOTTOM: Top bottom field of frame
  239. * @GST_H264_SEI_PIC_STRUCT_BOTTOM_TOP: bottom top field of frame
  240. * @GST_H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP: top bottom top field of frame
  241. * @GST_H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM: bottom top bottom field of frame
  242. * @GST_H264_SEI_PIC_STRUCT_FRAME_DOUBLING: indicates that the frame should
  243. * be displayed two times consecutively
  244. * @GST_H264_SEI_PIC_STRUCT_FRAME_TRIPLING: indicates that the frame should be
  245. * displayed three times consecutively
  246. *
  247. * SEI pic_struct type
  248. */
  249. typedef enum
  250. {
  251. GST_H264_SEI_PIC_STRUCT_FRAME = 0,
  252. GST_H264_SEI_PIC_STRUCT_TOP_FIELD = 1,
  253. GST_H264_SEI_PIC_STRUCT_BOTTOM_FIELD = 2,
  254. GST_H264_SEI_PIC_STRUCT_TOP_BOTTOM = 3,
  255. GST_H264_SEI_PIC_STRUCT_BOTTOM_TOP = 4,
  256. GST_H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP = 5,
  257. GST_H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM = 6,
  258. GST_H264_SEI_PIC_STRUCT_FRAME_DOUBLING = 7,
  259. GST_H264_SEI_PIC_STRUCT_FRAME_TRIPLING = 8
  260. } GstH264SEIPicStructType;
  261. /**
  262. * GstH264SliceType:
  263. *
  264. * Type of Picture slice
  265. */
  266. typedef enum
  267. {
  268. GST_H264_P_SLICE = 0,
  269. GST_H264_B_SLICE = 1,
  270. GST_H264_I_SLICE = 2,
  271. GST_H264_SP_SLICE = 3,
  272. GST_H264_SI_SLICE = 4,
  273. GST_H264_S_P_SLICE = 5,
  274. GST_H264_S_B_SLICE = 6,
  275. GST_H264_S_I_SLICE = 7,
  276. GST_H264_S_SP_SLICE = 8,
  277. GST_H264_S_SI_SLICE = 9
  278. } GstH264SliceType;
  279. typedef struct _GstH264NalParser GstH264NalParser;
  280. typedef struct _GstH264NalUnit GstH264NalUnit;
  281. typedef struct _GstH264NalUnitExtensionMVC GstH264NalUnitExtensionMVC;
  282. typedef struct _GstH264SPSExtMVCView GstH264SPSExtMVCView;
  283. typedef struct _GstH264SPSExtMVCLevelValue GstH264SPSExtMVCLevelValue;
  284. typedef struct _GstH264SPSExtMVCLevelValueOp GstH264SPSExtMVCLevelValueOp;
  285. typedef struct _GstH264SPSExtMVC GstH264SPSExtMVC;
  286. typedef struct _GstH264SPS GstH264SPS;
  287. typedef struct _GstH264PPS GstH264PPS;
  288. typedef struct _GstH264HRDParams GstH264HRDParams;
  289. typedef struct _GstH264VUIParams GstH264VUIParams;
  290. typedef struct _GstH264RefPicListModification GstH264RefPicListModification;
  291. typedef struct _GstH264DecRefPicMarking GstH264DecRefPicMarking;
  292. typedef struct _GstH264RefPicMarking GstH264RefPicMarking;
  293. typedef struct _GstH264PredWeightTable GstH264PredWeightTable;
  294. typedef struct _GstH264SliceHdr GstH264SliceHdr;
  295. typedef struct _GstH264ClockTimestamp GstH264ClockTimestamp;
  296. typedef struct _GstH264PicTiming GstH264PicTiming;
  297. typedef struct _GstH264BufferingPeriod GstH264BufferingPeriod;
  298. typedef struct _GstH264RecoveryPoint GstH264RecoveryPoint;
  299. typedef struct _GstH264StereoVideoInfo GstH264StereoVideoInfo;
  300. typedef struct _GstH264FramePacking GstH264FramePacking;
  301. typedef struct _GstH264SEIMessage GstH264SEIMessage;
  302. /**
  303. * GstH264NalUnitExtensionMVC:
  304. * @non_idr_flag: If equal to 0, it specifies that the current access
  305. * unit is an IDR access unit
  306. * @priority_id: The priority identifier for the NAL unit
  307. * @view_id: The view identifier for the NAL unit
  308. * @temporal_id: The temporal identifier for the NAL unit
  309. * @anchor_pic_flag: If equal to 1, it specifies that the current
  310. * access unit is an anchor access unit
  311. * @inter_view_flag: If equal to 0, it specifies that the current view
  312. * component is not used for inter-view prediction by any other view
  313. * component in the current access unit
  314. *
  315. * Since: 1.6
  316. */
  317. struct _GstH264NalUnitExtensionMVC
  318. {
  319. guint8 non_idr_flag;
  320. guint8 priority_id;
  321. guint16 view_id;
  322. guint8 temporal_id;
  323. guint8 anchor_pic_flag;
  324. guint8 inter_view_flag;
  325. };
  326. /**
  327. * GstH264NalUnit:
  328. * @ref_idc: not equal to 0 specifies that the content of the NAL unit
  329. * contains a sequence parameter set, a sequence parameter set
  330. * extension, a subset sequence parameter set, a picture parameter
  331. * set, a slice of a reference picture, a slice data partition of a
  332. * reference picture, or a prefix NAL unit preceding a slice of a
  333. * reference picture.
  334. * @type: A #GstH264NalUnitType
  335. * @idr_pic_flag: calculated idr_pic_flag
  336. * @size: The size of the nal unit starting from @offset, thus
  337. * including the header bytes. e.g. @type (nal_unit_type)
  338. * @offset: The offset of the actual start of the nal unit, thus
  339. * including the header bytes
  340. * @sc_offset: The offset of the start code of the nal unit
  341. * @valid: If the nal unit is valid, which means it has
  342. * already been parsed
  343. * @data: The data from which the Nalu has been parsed
  344. * @header_bytes: The size of the NALU header in bytes (Since 1.6)
  345. * @extension_type: the extension type (Since 1.6)
  346. *
  347. * Structure defining the Nal unit headers
  348. */
  349. struct _GstH264NalUnit
  350. {
  351. guint16 ref_idc;
  352. guint16 type;
  353. /* calculated values */
  354. guint8 idr_pic_flag;
  355. guint size;
  356. guint offset;
  357. guint sc_offset;
  358. gboolean valid;
  359. guint8 *data;
  360. guint8 header_bytes;
  361. guint8 extension_type;
  362. union {
  363. GstH264NalUnitExtensionMVC mvc;
  364. } extension;
  365. };
  366. /**
  367. * GstH264HRDParams:
  368. * @cpb_cnt_minus1: plus 1 specifies the number of alternative
  369. * CPB specifications in the bitstream
  370. * @bit_rate_scale: specifies the maximum input bit rate of the
  371. * SchedSelIdx-th CPB
  372. * @cpb_size_scale: specifies the CPB size of the SchedSelIdx-th CPB
  373. * @guint32 bit_rate_value_minus1: specifies the maximum input bit rate for the
  374. * SchedSelIdx-th CPB
  375. * @cpb_size_value_minus1: is used together with cpb_size_scale to specify the
  376. * SchedSelIdx-th CPB size
  377. * @cbr_flag: Specifies if running in itermediate bitrate mode or constant
  378. * @initial_cpb_removal_delay_length_minus1: specifies the length in bits of
  379. * the cpb_removal_delay syntax element
  380. * @cpb_removal_delay_length_minus1: specifies the length in bits of the
  381. * dpb_output_delay syntax element
  382. * @dpb_output_delay_length_minus1: >0 specifies the length in bits of the time_offset syntax element.
  383. * =0 specifies that the time_offset syntax element is not present
  384. * @time_offset_length: Length of the time offset
  385. *
  386. * Defines the HRD parameters
  387. */
  388. struct _GstH264HRDParams
  389. {
  390. guint8 cpb_cnt_minus1;
  391. guint8 bit_rate_scale;
  392. guint8 cpb_size_scale;
  393. guint32 bit_rate_value_minus1[32];
  394. guint32 cpb_size_value_minus1[32];
  395. guint8 cbr_flag[32];
  396. guint8 initial_cpb_removal_delay_length_minus1;
  397. guint8 cpb_removal_delay_length_minus1;
  398. guint8 dpb_output_delay_length_minus1;
  399. guint8 time_offset_length;
  400. };
  401. /**
  402. * GstH264VUIParams:
  403. * @aspect_ratio_info_present_flag: %TRUE specifies that aspect_ratio_idc is present.
  404. * %FALSE specifies that aspect_ratio_idc is not present
  405. * @aspect_ratio_idc specifies the value of the sample aspect ratio of the luma samples
  406. * @sar_width indicates the horizontal size of the sample aspect ratio
  407. * @sar_height indicates the vertical size of the sample aspect ratio
  408. * @overscan_info_present_flag: %TRUE overscan_appropriate_flag is present %FALSE otherwize
  409. * @overscan_appropriate_flag: %TRUE indicates that the cropped decoded pictures
  410. * output are suitable for display using overscan. %FALSE the cropped decoded pictures
  411. * output contain visually important information
  412. * @video_signal_type_present_flag: %TRUE specifies that video_format, video_full_range_flag and
  413. * colour_description_present_flag are present.
  414. * @video_format: indicates the representation of the picture
  415. * @video_full_range_flag: indicates the black level and range of the luma and chroma signals
  416. * @colour_description_present_flag: %TRUE specifies that colour_primaries,
  417. * transfer_characteristics and matrix_coefficients are present
  418. * @colour_primaries: indicates the chromaticity coordinates of the source primaries
  419. * @transfer_characteristics: indicates the opto-electronic transfer characteristic
  420. * @matrix_coefficients: describes the matrix coefficients used in deriving luma and chroma signals
  421. * @chroma_loc_info_present_flag: %TRUE specifies that chroma_sample_loc_type_top_field and
  422. * chroma_sample_loc_type_bottom_field are present, %FALSE otherwize
  423. * @chroma_sample_loc_type_top_field: specify the location of chroma for top field
  424. * @chroma_sample_loc_type_bottom_field specify the location of chroma for bottom field
  425. * @timing_info_present_flag: %TRUE specifies that num_units_in_tick,
  426. * time_scale and fixed_frame_rate_flag are present in the bitstream
  427. * @num_units_in_tick: is the number of time units of a clock operating at the frequency time_scale Hz
  428. * time_scale: is the number of time units that pass in one second
  429. * @fixed_frame_rate_flag: %TRUE indicates that the temporal distance between the HRD output times
  430. * of any two consecutive pictures in output order is constrained as specified in the spec, %FALSE
  431. * otherwize.
  432. * @nal_hrd_parameters_present_flag: %TRUE if nal hrd parameters present in the bitstream
  433. * @vcl_hrd_parameters_present_flag: %TRUE if nal vlc hrd parameters present in the bitstream
  434. * @low_delay_hrd_flag: specifies the HRD operational mode
  435. * @pic_struct_present_flag: %TRUE specifies that picture timing SEI messages are present or not
  436. * @bitstream_restriction_flag: %TRUE specifies that the following coded video sequence bitstream restriction
  437. * parameters are present
  438. * @motion_vectors_over_pic_boundaries_flag: %FALSE indicates that no sample outside the
  439. * picture boundaries and no sample at a fractional sample position, %TRUE indicates that one or more
  440. * samples outside picture boundaries may be used in inter prediction
  441. * @max_bytes_per_pic_denom: indicates a number of bytes not exceeded by the sum of the sizes of
  442. * the VCL NAL units associated with any coded picture in the coded video sequence.
  443. * @max_bits_per_mb_denom: indicates the maximum number of coded bits of macroblock_layer
  444. * @log2_max_mv_length_horizontal: indicate the maximum absolute value of a decoded horizontal
  445. * motion vector component
  446. * @log2_max_mv_length_vertical: indicate the maximum absolute value of a decoded vertical
  447. * motion vector component
  448. * @num_reorder_frames: indicates the maximum number of frames, complementary field pairs,
  449. * or non-paired fields that precede any frame,
  450. * @max_dec_frame_buffering: specifies the required size of the HRD decoded picture buffer in
  451. * units of frame buffers.
  452. *
  453. * The structure representing the VUI parameters.
  454. */
  455. struct _GstH264VUIParams
  456. {
  457. guint8 aspect_ratio_info_present_flag;
  458. guint8 aspect_ratio_idc;
  459. /* if aspect_ratio_idc == 255 */
  460. guint16 sar_width;
  461. guint16 sar_height;
  462. guint8 overscan_info_present_flag;
  463. /* if overscan_info_present_flag */
  464. guint8 overscan_appropriate_flag;
  465. guint8 video_signal_type_present_flag;
  466. guint8 video_format;
  467. guint8 video_full_range_flag;
  468. guint8 colour_description_present_flag;
  469. guint8 colour_primaries;
  470. guint8 transfer_characteristics;
  471. guint8 matrix_coefficients;
  472. guint8 chroma_loc_info_present_flag;
  473. guint8 chroma_sample_loc_type_top_field;
  474. guint8 chroma_sample_loc_type_bottom_field;
  475. guint8 timing_info_present_flag;
  476. /* if timing_info_present_flag */
  477. guint32 num_units_in_tick;
  478. guint32 time_scale;
  479. guint8 fixed_frame_rate_flag;
  480. guint8 nal_hrd_parameters_present_flag;
  481. /* if nal_hrd_parameters_present_flag */
  482. GstH264HRDParams nal_hrd_parameters;
  483. guint8 vcl_hrd_parameters_present_flag;
  484. /* if vcl_hrd_parameters_present_flag */
  485. GstH264HRDParams vcl_hrd_parameters;
  486. guint8 low_delay_hrd_flag;
  487. guint8 pic_struct_present_flag;
  488. guint8 bitstream_restriction_flag;
  489. /* if bitstream_restriction_flag */
  490. guint8 motion_vectors_over_pic_boundaries_flag;
  491. guint32 max_bytes_per_pic_denom;
  492. guint32 max_bits_per_mb_denom;
  493. guint32 log2_max_mv_length_horizontal;
  494. guint32 log2_max_mv_length_vertical;
  495. guint32 num_reorder_frames;
  496. guint32 max_dec_frame_buffering;
  497. /* calculated values */
  498. guint par_n;
  499. guint par_d;
  500. };
  501. /**
  502. * GstH264SPSExtMVCView:
  503. * @num_anchor_refs_l0: specifies the number of view components for
  504. * inter-view prediction in the initialized RefPicList0 in decoding
  505. * anchor view components.
  506. * @anchor_ref_l0: specifies the view_id for inter-view prediction in
  507. * the initialized RefPicList0 in decoding anchor view components.
  508. * @num_anchor_refs_l1: specifies the number of view components for
  509. * inter-view prediction in the initialized RefPicList1 in decoding
  510. * anchor view components.
  511. * @anchor_ref_l1: specifies the view_id for inter-view prediction in
  512. * the initialized RefPicList1 in decoding anchor view components.
  513. * @num_non_anchor_refs_l0: specifies the number of view components
  514. * for inter-view prediction in the initialized RefPicList0 in
  515. * decoding non-anchor view components.
  516. * @non_anchor_ref_l0: specifies the view_id for inter-view prediction
  517. * in the initialized RefPicList0 in decoding non-anchor view
  518. * components.
  519. * @num_non_anchor_refs_l1: specifies the number of view components
  520. * for inter-view prediction in the initialized RefPicList1 in
  521. * decoding non-anchor view components.
  522. * @non_anchor_ref_l1: specifies the view_id for inter-view prediction
  523. * in the initialized RefPicList1 in decoding non-anchor view
  524. * components.
  525. *
  526. * Represents inter-view dependency relationships for the coded video
  527. * sequence.
  528. *
  529. * Since: 1.6
  530. */
  531. struct _GstH264SPSExtMVCView
  532. {
  533. guint16 view_id;
  534. guint8 num_anchor_refs_l0;
  535. guint16 anchor_ref_l0[15];
  536. guint8 num_anchor_refs_l1;
  537. guint16 anchor_ref_l1[15];
  538. guint8 num_non_anchor_refs_l0;
  539. guint16 non_anchor_ref_l0[15];
  540. guint8 num_non_anchor_refs_l1;
  541. guint16 non_anchor_ref_l1[15];
  542. };
  543. /**
  544. * GstH264SPSExtMVCLevelValueOp:
  545. *
  546. * Represents an operation point for the coded video sequence.
  547. *
  548. * Since: 1.6
  549. */
  550. struct _GstH264SPSExtMVCLevelValueOp
  551. {
  552. guint8 temporal_id;
  553. guint16 num_target_views_minus1;
  554. guint16 *target_view_id;
  555. guint16 num_views_minus1;
  556. };
  557. /**
  558. * GstH264SPSExtMVCLevelValue:
  559. * @level_idc: specifies the level value signalled for the coded video
  560. * sequence
  561. * @num_applicable_ops_minus1: plus 1 specifies the number of
  562. * operation points to which the level indicated by level_idc applies
  563. * @applicable_op: specifies the applicable operation point
  564. *
  565. * Represents level values for a subset of the operation points for
  566. * the coded video sequence.
  567. *
  568. * Since: 1.6
  569. */
  570. struct _GstH264SPSExtMVCLevelValue
  571. {
  572. guint8 level_idc;
  573. guint16 num_applicable_ops_minus1;
  574. GstH264SPSExtMVCLevelValueOp *applicable_op;
  575. };
  576. /**
  577. * GstH264SPSExtMVC:
  578. * @num_views_minus1: plus 1 specifies the maximum number of coded
  579. * views in the coded video sequence
  580. * @view: array of #GstH264SPSExtMVCView
  581. * @num_level_values_signalled_minus1: plus 1 specifies the number of
  582. * level values signalled for the coded video sequence.
  583. * @level_value: array of #GstH264SPSExtMVCLevelValue
  584. *
  585. * Represents the parsed seq_parameter_set_mvc_extension().
  586. *
  587. * Since: 1.6
  588. */
  589. struct _GstH264SPSExtMVC
  590. {
  591. guint16 num_views_minus1;
  592. GstH264SPSExtMVCView *view;
  593. guint8 num_level_values_signalled_minus1;
  594. GstH264SPSExtMVCLevelValue *level_value;
  595. };
  596. /**
  597. * GstH264SPS:
  598. * @id: The ID of the sequence parameter set
  599. * @profile_idc: indicate the profile to which the coded video sequence conforms
  600. *
  601. * H264 Sequence Parameter Set (SPS)
  602. */
  603. struct _GstH264SPS
  604. {
  605. gint id;
  606. guint8 profile_idc;
  607. guint8 constraint_set0_flag;
  608. guint8 constraint_set1_flag;
  609. guint8 constraint_set2_flag;
  610. guint8 constraint_set3_flag;
  611. guint8 constraint_set4_flag;
  612. guint8 constraint_set5_flag;
  613. guint8 level_idc;
  614. guint8 chroma_format_idc;
  615. guint8 separate_colour_plane_flag;
  616. guint8 bit_depth_luma_minus8;
  617. guint8 bit_depth_chroma_minus8;
  618. guint8 qpprime_y_zero_transform_bypass_flag;
  619. guint8 scaling_matrix_present_flag;
  620. guint8 scaling_lists_4x4[6][16];
  621. guint8 scaling_lists_8x8[6][64];
  622. guint8 log2_max_frame_num_minus4;
  623. guint8 pic_order_cnt_type;
  624. /* if pic_order_cnt_type == 0 */
  625. guint8 log2_max_pic_order_cnt_lsb_minus4;
  626. /* else if pic_order_cnt_type == 1 */
  627. guint8 delta_pic_order_always_zero_flag;
  628. gint32 offset_for_non_ref_pic;
  629. gint32 offset_for_top_to_bottom_field;
  630. guint8 num_ref_frames_in_pic_order_cnt_cycle;
  631. gint32 offset_for_ref_frame[255];
  632. guint32 num_ref_frames;
  633. guint8 gaps_in_frame_num_value_allowed_flag;
  634. guint32 pic_width_in_mbs_minus1;
  635. guint32 pic_height_in_map_units_minus1;
  636. guint8 frame_mbs_only_flag;
  637. guint8 mb_adaptive_frame_field_flag;
  638. guint8 direct_8x8_inference_flag;
  639. guint8 frame_cropping_flag;
  640. /* if frame_cropping_flag */
  641. guint32 frame_crop_left_offset;
  642. guint32 frame_crop_right_offset;
  643. guint32 frame_crop_top_offset;
  644. guint32 frame_crop_bottom_offset;
  645. guint8 vui_parameters_present_flag;
  646. /* if vui_parameters_present_flag */
  647. GstH264VUIParams vui_parameters;
  648. /* calculated values */
  649. guint8 chroma_array_type;
  650. guint32 max_frame_num;
  651. gint width, height;
  652. gint crop_rect_width, crop_rect_height;
  653. gint crop_rect_x, crop_rect_y;
  654. gint fps_num, fps_den;
  655. gboolean valid;
  656. /* Subset SPS extensions */
  657. guint8 extension_type;
  658. union {
  659. GstH264SPSExtMVC mvc;
  660. } extension;
  661. };
  662. /**
  663. * GstH264PPS:
  664. *
  665. * H264 Picture Parameter Set
  666. */
  667. struct _GstH264PPS
  668. {
  669. gint id;
  670. GstH264SPS *sequence;
  671. guint8 entropy_coding_mode_flag;
  672. guint8 pic_order_present_flag;
  673. guint32 num_slice_groups_minus1;
  674. /* if num_slice_groups_minus1 > 0 */
  675. guint8 slice_group_map_type;
  676. /* and if slice_group_map_type == 0 */
  677. guint32 run_length_minus1[8];
  678. /* or if slice_group_map_type == 2 */
  679. guint32 top_left[8];
  680. guint32 bottom_right[8];
  681. /* or if slice_group_map_type == (3, 4, 5) */
  682. guint8 slice_group_change_direction_flag;
  683. guint32 slice_group_change_rate_minus1;
  684. /* or if slice_group_map_type == 6 */
  685. guint32 pic_size_in_map_units_minus1;
  686. guint8 *slice_group_id;
  687. guint8 num_ref_idx_l0_active_minus1;
  688. guint8 num_ref_idx_l1_active_minus1;
  689. guint8 weighted_pred_flag;
  690. guint8 weighted_bipred_idc;
  691. gint8 pic_init_qp_minus26;
  692. gint8 pic_init_qs_minus26;
  693. gint8 chroma_qp_index_offset;
  694. guint8 deblocking_filter_control_present_flag;
  695. guint8 constrained_intra_pred_flag;
  696. guint8 redundant_pic_cnt_present_flag;
  697. guint8 transform_8x8_mode_flag;
  698. guint8 scaling_lists_4x4[6][16];
  699. guint8 scaling_lists_8x8[6][64];
  700. guint8 second_chroma_qp_index_offset;
  701. gboolean valid;
  702. };
  703. struct _GstH264RefPicListModification
  704. {
  705. guint8 modification_of_pic_nums_idc;
  706. union
  707. {
  708. /* if modification_of_pic_nums_idc == 0 || 1 */
  709. guint32 abs_diff_pic_num_minus1;
  710. /* if modification_of_pic_nums_idc == 2 */
  711. guint32 long_term_pic_num;
  712. /* if modification_of_pic_nums_idc == 4 || 5 */
  713. guint32 abs_diff_view_idx_minus1;
  714. } value;
  715. };
  716. struct _GstH264PredWeightTable
  717. {
  718. guint8 luma_log2_weight_denom;
  719. guint8 chroma_log2_weight_denom;
  720. gint16 luma_weight_l0[32];
  721. gint8 luma_offset_l0[32];
  722. /* if seq->ChromaArrayType != 0 */
  723. gint16 chroma_weight_l0[32][2];
  724. gint8 chroma_offset_l0[32][2];
  725. /* if slice->slice_type % 5 == 1 */
  726. gint16 luma_weight_l1[32];
  727. gint8 luma_offset_l1[32];
  728. /* and if seq->ChromaArrayType != 0 */
  729. gint16 chroma_weight_l1[32][2];
  730. gint8 chroma_offset_l1[32][2];
  731. };
  732. struct _GstH264RefPicMarking
  733. {
  734. guint8 memory_management_control_operation;
  735. guint32 difference_of_pic_nums_minus1;
  736. guint32 long_term_pic_num;
  737. guint32 long_term_frame_idx;
  738. guint32 max_long_term_frame_idx_plus1;
  739. };
  740. struct _GstH264DecRefPicMarking
  741. {
  742. /* if slice->nal_unit.IdrPicFlag */
  743. guint8 no_output_of_prior_pics_flag;
  744. guint8 long_term_reference_flag;
  745. guint8 adaptive_ref_pic_marking_mode_flag;
  746. GstH264RefPicMarking ref_pic_marking[10];
  747. guint8 n_ref_pic_marking;
  748. };
  749. struct _GstH264SliceHdr
  750. {
  751. guint32 first_mb_in_slice;
  752. guint32 type;
  753. GstH264PPS *pps;
  754. /* if seq->separate_colour_plane_flag */
  755. guint8 colour_plane_id;
  756. guint16 frame_num;
  757. guint8 field_pic_flag;
  758. guint8 bottom_field_flag;
  759. /* if nal_unit.type == 5 */
  760. guint16 idr_pic_id;
  761. /* if seq->pic_order_cnt_type == 0 */
  762. guint16 pic_order_cnt_lsb;
  763. /* if seq->pic_order_present_flag && !field_pic_flag */
  764. gint32 delta_pic_order_cnt_bottom;
  765. gint32 delta_pic_order_cnt[2];
  766. guint8 redundant_pic_cnt;
  767. /* if slice_type == B_SLICE */
  768. guint8 direct_spatial_mv_pred_flag;
  769. guint8 num_ref_idx_l0_active_minus1;
  770. guint8 num_ref_idx_l1_active_minus1;
  771. guint8 ref_pic_list_modification_flag_l0;
  772. guint8 n_ref_pic_list_modification_l0;
  773. GstH264RefPicListModification ref_pic_list_modification_l0[32];
  774. guint8 ref_pic_list_modification_flag_l1;
  775. guint8 n_ref_pic_list_modification_l1;
  776. GstH264RefPicListModification ref_pic_list_modification_l1[32];
  777. GstH264PredWeightTable pred_weight_table;
  778. /* if nal_unit.ref_idc != 0 */
  779. GstH264DecRefPicMarking dec_ref_pic_marking;
  780. guint8 cabac_init_idc;
  781. gint8 slice_qp_delta;
  782. gint8 slice_qs_delta;
  783. guint8 disable_deblocking_filter_idc;
  784. gint8 slice_alpha_c0_offset_div2;
  785. gint8 slice_beta_offset_div2;
  786. guint16 slice_group_change_cycle;
  787. /* calculated values */
  788. guint32 max_pic_num;
  789. gboolean valid;
  790. /* Size of the slice_header() in bits */
  791. guint header_size;
  792. /* Number of emulation prevention bytes (EPB) in this slice_header() */
  793. guint n_emulation_prevention_bytes;
  794. };
  795. struct _GstH264ClockTimestamp
  796. {
  797. guint8 ct_type;
  798. guint8 nuit_field_based_flag;
  799. guint8 counting_type;
  800. guint8 discontinuity_flag;
  801. guint8 cnt_dropped_flag;
  802. guint8 n_frames;
  803. guint8 seconds_flag;
  804. guint8 seconds_value;
  805. guint8 minutes_flag;
  806. guint8 minutes_value;
  807. guint8 hours_flag;
  808. guint8 hours_value;
  809. guint32 time_offset;
  810. };
  811. /**
  812. * GstH264FramePacking:
  813. *
  814. * Since: 1.6
  815. */
  816. struct _GstH264FramePacking
  817. {
  818. guint32 frame_packing_id;
  819. guint8 frame_packing_cancel_flag;
  820. guint8 frame_packing_type; /* GstH264FramePackingType */
  821. guint8 quincunx_sampling_flag;
  822. guint8 content_interpretation_type;
  823. guint8 spatial_flipping_flag;
  824. guint8 frame0_flipped_flag;
  825. guint8 field_views_flag;
  826. guint8 current_frame_is_frame0_flag;
  827. guint8 frame0_self_contained_flag;
  828. guint8 frame1_self_contained_flag;
  829. guint8 frame0_grid_position_x;
  830. guint8 frame0_grid_position_y;
  831. guint8 frame1_grid_position_x;
  832. guint8 frame1_grid_position_y;
  833. guint16 frame_packing_repetition_period;
  834. };
  835. /**
  836. * GstH264StereoVideoInfo:
  837. *
  838. * Since: 1.6
  839. */
  840. struct _GstH264StereoVideoInfo
  841. {
  842. guint8 field_views_flag;
  843. guint8 top_field_is_left_view_flag;
  844. guint8 current_frame_is_left_view_flag;
  845. guint8 next_frame_is_second_view_flag;
  846. guint8 left_view_self_contained_flag;
  847. guint8 right_view_self_contained_flag;
  848. };
  849. struct _GstH264PicTiming
  850. {
  851. guint32 cpb_removal_delay;
  852. guint32 dpb_output_delay;
  853. guint8 pic_struct_present_flag;
  854. /* if pic_struct_present_flag */
  855. guint8 pic_struct;
  856. guint8 clock_timestamp_flag[3];
  857. GstH264ClockTimestamp clock_timestamp[3];
  858. };
  859. struct _GstH264BufferingPeriod
  860. {
  861. GstH264SPS *sps;
  862. /* seq->vui_parameters->nal_hrd_parameters_present_flag */
  863. guint32 nal_initial_cpb_removal_delay[32];
  864. guint32 nal_initial_cpb_removal_delay_offset[32];
  865. /* seq->vui_parameters->vcl_hrd_parameters_present_flag */
  866. guint32 vcl_initial_cpb_removal_delay[32];
  867. guint32 vcl_initial_cpb_removal_delay_offset[32];
  868. };
  869. struct _GstH264RecoveryPoint
  870. {
  871. guint32 recovery_frame_cnt;
  872. guint8 exact_match_flag;
  873. guint8 broken_link_flag;
  874. guint8 changing_slice_group_idc;
  875. };
  876. struct _GstH264SEIMessage
  877. {
  878. GstH264SEIPayloadType payloadType;
  879. union {
  880. GstH264BufferingPeriod buffering_period;
  881. GstH264PicTiming pic_timing;
  882. GstH264RecoveryPoint recovery_point;
  883. GstH264StereoVideoInfo stereo_video_info;
  884. GstH264FramePacking frame_packing;
  885. /* ... could implement more */
  886. } payload;
  887. };
  888. /**
  889. * GstH264NalParser:
  890. *
  891. * H264 NAL Parser (opaque structure).
  892. */
  893. struct _GstH264NalParser
  894. {
  895. /*< private >*/
  896. GstH264SPS sps[GST_H264_MAX_SPS_COUNT];
  897. GstH264PPS pps[GST_H264_MAX_PPS_COUNT];
  898. GstH264SPS *last_sps;
  899. GstH264PPS *last_pps;
  900. };
  901. GstH264NalParser *gst_h264_nal_parser_new (void);
  902. GstH264ParserResult gst_h264_parser_identify_nalu (GstH264NalParser *nalparser,
  903. const guint8 *data, guint offset,
  904. gsize size, GstH264NalUnit *nalu);
  905. GstH264ParserResult gst_h264_parser_identify_nalu_unchecked (GstH264NalParser *nalparser,
  906. const guint8 *data, guint offset,
  907. gsize size, GstH264NalUnit *nalu);
  908. GstH264ParserResult gst_h264_parser_identify_nalu_avc (GstH264NalParser *nalparser, const guint8 *data,
  909. guint offset, gsize size, guint8 nal_length_size,
  910. GstH264NalUnit *nalu);
  911. GstH264ParserResult gst_h264_parser_parse_nal (GstH264NalParser *nalparser,
  912. GstH264NalUnit *nalu);
  913. GstH264ParserResult gst_h264_parser_parse_slice_hdr (GstH264NalParser *nalparser, GstH264NalUnit *nalu,
  914. GstH264SliceHdr *slice, gboolean parse_pred_weight_table,
  915. gboolean parse_dec_ref_pic_marking);
  916. GstH264ParserResult gst_h264_parser_parse_subset_sps (GstH264NalParser *nalparser, GstH264NalUnit *nalu,
  917. GstH264SPS *sps, gboolean parse_vui_params);
  918. GstH264ParserResult gst_h264_parser_parse_sps (GstH264NalParser *nalparser, GstH264NalUnit *nalu,
  919. GstH264SPS *sps, gboolean parse_vui_params);
  920. GstH264ParserResult gst_h264_parser_parse_pps (GstH264NalParser *nalparser,
  921. GstH264NalUnit *nalu, GstH264PPS *pps);
  922. GstH264ParserResult gst_h264_parser_parse_sei (GstH264NalParser *nalparser,
  923. GstH264NalUnit *nalu, GArray ** messages);
  924. void gst_h264_nal_parser_free (GstH264NalParser *nalparser);
  925. GstH264ParserResult gst_h264_parse_subset_sps (GstH264NalUnit *nalu,
  926. GstH264SPS *sps, gboolean parse_vui_params);
  927. GstH264ParserResult gst_h264_parse_sps (GstH264NalUnit *nalu,
  928. GstH264SPS *sps, gboolean parse_vui_params);
  929. GstH264ParserResult gst_h264_parse_pps (GstH264NalParser *nalparser,
  930. GstH264NalUnit *nalu, GstH264PPS *pps);
  931. void gst_h264_sps_clear (GstH264SPS *sps);
  932. void gst_h264_pps_clear (GstH264PPS *pps);
  933. void gst_h264_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
  934. const guint8 quant[64]);
  935. void gst_h264_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
  936. const guint8 quant[64]);
  937. void gst_h264_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
  938. const guint8 quant[16]);
  939. void gst_h264_quant_matrix_4x4_get_raster_from_zigzag (guint8 out_quant[16],
  940. const guint8 quant[16]);
  941. void gst_h264_video_calculate_framerate (const GstH264SPS * sps, guint field_pic_flag,
  942. guint pic_struct, gint * fps_num, gint * fps_den);
  943. G_END_DECLS
  944. #endif