gstvc1parser.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. /* Gstreamer
  2. * Copyright (C) <2011> Intel
  3. * Copyright (C) <2011> Collabora Ltd.
  4. * Copyright (C) <2011> Thibault Saunier <thibault.saunier@collabora.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  19. * Boston, MA 02110-1301, USA.
  20. */
  21. #ifndef __GST_VC1_PARSER_H__
  22. #define __GST_VC1_PARSER_H__
  23. #ifndef GST_USE_UNSTABLE_API
  24. #warning "The VC1 parsing library is unstable API and may change in future."
  25. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  26. #endif
  27. #include <gst/gst.h>
  28. G_BEGIN_DECLS
  29. #define MAX_HRD_NUM_LEAKY_BUCKETS 31
  30. /**
  31. * GST_VC1_BFRACTION_BASIS:
  32. * The @bfraction variable should be divided
  33. * by this constant to have the actual value.
  34. */
  35. #define GST_VC1_BFRACTION_BASIS 840
  36. #define GST_VC1_BFRACTION_RESERVED (GST_VC1_BFRACTION_BASIS + 1)
  37. #define GST_VC1_BFRACTION_PTYPE_BI (GST_VC1_BFRACTION_BASIS + 2)
  38. typedef enum {
  39. GST_VC1_END_OF_SEQ = 0x0A,
  40. GST_VC1_SLICE = 0x0B,
  41. GST_VC1_FIELD = 0x0C,
  42. GST_VC1_FRAME = 0x0D,
  43. GST_VC1_ENTRYPOINT = 0x0E,
  44. GST_VC1_SEQUENCE = 0x0F,
  45. GST_VC1_SLICE_USER = 0x1B,
  46. GST_VC1_FIELD_USER = 0x1C,
  47. GST_VC1_FRAME_USER = 0x1D,
  48. GST_VC1_ENTRY_POINT_USER = 0x1E,
  49. GST_VC1_SEQUENCE_USER = 0x1F
  50. } GstVC1StartCode;
  51. typedef enum {
  52. GST_VC1_PROFILE_SIMPLE,
  53. GST_VC1_PROFILE_MAIN,
  54. GST_VC1_PROFILE_RESERVED,
  55. GST_VC1_PROFILE_ADVANCED
  56. } GstVC1Profile;
  57. typedef enum {
  58. GST_VC1_PARSER_OK,
  59. GST_VC1_PARSER_BROKEN_DATA,
  60. GST_VC1_PARSER_NO_BDU,
  61. GST_VC1_PARSER_NO_BDU_END,
  62. GST_VC1_PARSER_ERROR,
  63. } GstVC1ParserResult;
  64. typedef enum
  65. {
  66. GST_VC1_PICTURE_TYPE_P,
  67. GST_VC1_PICTURE_TYPE_B,
  68. GST_VC1_PICTURE_TYPE_I,
  69. GST_VC1_PICTURE_TYPE_BI,
  70. GST_VC1_PICTURE_TYPE_SKIPPED
  71. } GstVC1PictureType;
  72. typedef enum
  73. {
  74. GST_VC1_LEVEL_LOW = 0, /* Simple/Main profile low level */
  75. GST_VC1_LEVEL_MEDIUM = 2, /* Simple/Main profile medium level */
  76. GST_VC1_LEVEL_HIGH = 4, /* Main profile high level */
  77. GST_VC1_LEVEL_L0 = 0, /* Advanced profile level 0 */
  78. GST_VC1_LEVEL_L1 = 1, /* Advanced profile level 1 */
  79. GST_VC1_LEVEL_L2 = 2, /* Advanced profile level 2 */
  80. GST_VC1_LEVEL_L3 = 3, /* Advanced profile level 3 */
  81. GST_VC1_LEVEL_L4 = 4, /* Advanced profile level 4 */
  82. /* 5 to 7 reserved */
  83. GST_VC1_LEVEL_UNKNOWN = 255 /* Unknown profile */
  84. } GstVC1Level;
  85. typedef enum
  86. {
  87. GST_VC1_QUANTIZER_IMPLICITLY,
  88. GST_VC1_QUANTIZER_EXPLICITLY,
  89. GST_VC1_QUANTIZER_NON_UNIFORM,
  90. GST_VC1_QUANTIZER_UNIFORM
  91. } GstVC1QuantizerSpec;
  92. typedef enum {
  93. GST_VC1_DQPROFILE_FOUR_EDGES,
  94. GST_VC1_DQPROFILE_DOUBLE_EDGES,
  95. GST_VC1_DQPROFILE_SINGLE_EDGE,
  96. GST_VC1_DQPROFILE_ALL_MBS
  97. } GstVC1DQProfile;
  98. typedef enum {
  99. GST_VC1_CONDOVER_NONE,
  100. GST_VC1_CONDOVER_ALL,
  101. GST_VC1_CONDOVER_SELECT
  102. } GstVC1Condover;
  103. /**
  104. * GstVC1MvMode:
  105. *
  106. */
  107. typedef enum
  108. {
  109. GST_VC1_MVMODE_1MV_HPEL_BILINEAR,
  110. GST_VC1_MVMODE_1MV,
  111. GST_VC1_MVMODE_1MV_HPEL,
  112. GST_VC1_MVMODE_MIXED_MV,
  113. GST_VC1_MVMODE_INTENSITY_COMP
  114. } GstVC1MvMode;
  115. typedef enum
  116. {
  117. GST_VC1_FRAME_PROGRESSIVE = 0x0,
  118. GST_VC1_FRAME_INTERLACE = 0x10,
  119. GST_VC1_FIELD_INTERLACE = 0x11
  120. } GstVC1FrameCodingMode;
  121. typedef struct _GstVC1SeqHdr GstVC1SeqHdr;
  122. typedef struct _GstVC1AdvancedSeqHdr GstVC1AdvancedSeqHdr;
  123. typedef struct _GstVC1HrdParam GstVC1HrdParam;
  124. typedef struct _GstVC1EntryPointHdr GstVC1EntryPointHdr;
  125. typedef struct _GstVC1SeqLayer GstVC1SeqLayer;
  126. typedef struct _GstVC1SeqStructA GstVC1SeqStructA;
  127. typedef struct _GstVC1SeqStructB GstVC1SeqStructB;
  128. typedef struct _GstVC1SeqStructC GstVC1SeqStructC;
  129. /* Pictures Structures */
  130. typedef struct _GstVC1FrameLayer GstVC1FrameLayer;
  131. typedef struct _GstVC1FrameHdr GstVC1FrameHdr;
  132. typedef struct _GstVC1PicAdvanced GstVC1PicAdvanced;
  133. typedef struct _GstVC1PicSimpleMain GstVC1PicSimpleMain;
  134. typedef struct _GstVC1Picture GstVC1Picture;
  135. typedef struct _GstVC1SliceHdr GstVC1SliceHdr;
  136. typedef struct _GstVC1VopDquant GstVC1VopDquant;
  137. typedef struct _GstVC1BitPlanes GstVC1BitPlanes;
  138. typedef struct _GstVC1BDU GstVC1BDU;
  139. struct _GstVC1HrdParam
  140. {
  141. guint8 hrd_num_leaky_buckets;
  142. guint8 bit_rate_exponent;
  143. guint8 buffer_size_exponent;
  144. guint16 hrd_rate[MAX_HRD_NUM_LEAKY_BUCKETS];
  145. guint16 hrd_buffer[MAX_HRD_NUM_LEAKY_BUCKETS];
  146. };
  147. /**
  148. * GstVC1EntryPointHdr:
  149. *
  150. * Structure for entrypoint header, this will be used only in advanced profiles
  151. */
  152. struct _GstVC1EntryPointHdr
  153. {
  154. guint8 broken_link;
  155. guint8 closed_entry;
  156. guint8 panscan_flag;
  157. guint8 refdist_flag;
  158. guint8 loopfilter;
  159. guint8 fastuvmc;
  160. guint8 extended_mv;
  161. guint8 dquant;
  162. guint8 vstransform;
  163. guint8 overlap;
  164. guint8 quantizer;
  165. guint8 coded_size_flag;
  166. guint16 coded_width;
  167. guint16 coded_height;
  168. guint8 extended_dmv;
  169. guint8 range_mapy_flag;
  170. guint8 range_mapy;
  171. guint8 range_mapuv_flag;
  172. guint8 range_mapuv;
  173. guint8 hrd_full[MAX_HRD_NUM_LEAKY_BUCKETS];
  174. };
  175. /**
  176. * GstVC1AdvancedSeqHdr:
  177. *
  178. * Structure for the advanced profile sequence headers specific parameters.
  179. */
  180. struct _GstVC1AdvancedSeqHdr
  181. {
  182. GstVC1Level level;
  183. guint8 frmrtq_postproc;
  184. guint8 bitrtq_postproc;
  185. guint8 postprocflag;
  186. guint16 max_coded_width;
  187. guint16 max_coded_height;
  188. guint8 pulldown;
  189. guint8 interlace;
  190. guint8 tfcntrflag;
  191. guint8 finterpflag;
  192. guint8 psf;
  193. guint8 display_ext;
  194. guint16 disp_horiz_size;
  195. guint16 disp_vert_size;
  196. guint8 aspect_ratio_flag;
  197. guint8 aspect_ratio;
  198. guint8 aspect_horiz_size;
  199. guint8 aspect_vert_size;
  200. guint8 framerate_flag;
  201. guint8 framerateind;
  202. guint8 frameratenr;
  203. guint8 frameratedr;
  204. guint16 framerateexp;
  205. guint8 color_format_flag;
  206. guint8 color_prim;
  207. guint8 transfer_char;
  208. guint8 matrix_coef;
  209. guint8 hrd_param_flag;
  210. guint8 colordiff_format;
  211. GstVC1HrdParam hrd_param;
  212. /* computed */
  213. guint framerate; /* Around in fps, 0 if unknown*/
  214. guint bitrate; /* Around in kpbs, 0 if unknown*/
  215. guint par_n;
  216. guint par_d;
  217. guint fps_n;
  218. guint fps_d;
  219. /* The last parsed entry point */
  220. GstVC1EntryPointHdr entrypoint;
  221. };
  222. struct _GstVC1SeqStructA
  223. {
  224. guint32 vert_size;
  225. guint32 horiz_size;
  226. };
  227. struct _GstVC1SeqStructB
  228. {
  229. GstVC1Level level;
  230. guint8 cbr;
  231. guint32 framerate;
  232. /* In simple and main profiles only */
  233. guint32 hrd_buffer;
  234. guint32 hrd_rate;
  235. };
  236. struct _GstVC1SeqStructC
  237. {
  238. GstVC1Profile profile;
  239. /* Only in simple and main profiles */
  240. guint8 frmrtq_postproc;
  241. guint8 bitrtq_postproc;
  242. guint8 res_sprite;
  243. guint8 loop_filter;
  244. guint8 multires;
  245. guint8 fastuvmc;
  246. guint8 extended_mv;
  247. guint8 dquant;
  248. guint8 vstransform;
  249. guint8 overlap;
  250. guint8 syncmarker;
  251. guint8 rangered;
  252. guint8 maxbframes;
  253. guint8 quantizer;
  254. guint8 finterpflag;
  255. /* Computed */
  256. guint framerate; /* Around in fps, 0 if unknown*/
  257. guint bitrate; /* Around in kpbs, 0 if unknown*/
  258. /* This should be filled by user if previously known */
  259. guint16 coded_width;
  260. /* This should be filled by user if previously known */
  261. guint16 coded_height;
  262. /* Wmvp specific */
  263. guint8 wmvp; /* Specify if the stream is wmp or not */
  264. /* In the wmvp case, the framerate is not computed but in the bistream */
  265. guint8 slice_code;
  266. };
  267. struct _GstVC1SeqLayer
  268. {
  269. guint32 numframes;
  270. GstVC1SeqStructA struct_a;
  271. GstVC1SeqStructB struct_b;
  272. GstVC1SeqStructC struct_c;
  273. };
  274. /**
  275. * GstVC1SeqHdr:
  276. *
  277. * Structure for sequence headers in any profile.
  278. */
  279. struct _GstVC1SeqHdr
  280. {
  281. GstVC1Profile profile;
  282. GstVC1SeqStructC struct_c;
  283. /* calculated */
  284. guint mb_height;
  285. guint mb_width;
  286. guint mb_stride;
  287. GstVC1AdvancedSeqHdr advanced;
  288. };
  289. /**
  290. * GstVC1PicSimpleMain:
  291. * @bfaction: Should be divided by #GST_VC1_BFRACTION_BASIS
  292. * to get the real value.
  293. */
  294. struct _GstVC1PicSimpleMain
  295. {
  296. guint8 frmcnt;
  297. guint8 mvrange;
  298. guint8 rangeredfrm;
  299. /* I and P pic simple and main profiles only */
  300. guint8 respic;
  301. /* I and BI pic simple and main profiles only */
  302. guint8 transacfrm2;
  303. guint8 bf;
  304. /* B and P pic simple and main profiles only */
  305. guint8 mvmode;
  306. guint8 mvtab;
  307. guint8 ttmbf;
  308. /* P pic simple and main profiles only */
  309. guint8 mvmode2;
  310. guint8 lumscale;
  311. guint8 lumshift;
  312. guint8 cbptab;
  313. guint8 ttfrm;
  314. /* B and BI picture only
  315. * Should be divided by #GST_VC1_BFRACTION_BASIS
  316. * to get the real value. */
  317. guint16 bfraction;
  318. /* Biplane value, those fields only mention the fact
  319. * that the bitplane is in raw mode or not */
  320. guint8 mvtypemb;
  321. guint8 skipmb;
  322. guint8 directmb; /* B pic main profile only */
  323. };
  324. /**
  325. * GstVC1PicAdvanced:
  326. * @bfaction: Should be divided by #GST_VC1_BFRACTION_BASIS
  327. * to get the real value.
  328. */
  329. struct _GstVC1PicAdvanced
  330. {
  331. GstVC1FrameCodingMode fcm;
  332. guint8 tfcntr;
  333. guint8 rptfrm;
  334. guint8 tff;
  335. guint8 rff;
  336. guint8 ps_present;
  337. guint32 ps_hoffset;
  338. guint32 ps_voffset;
  339. guint16 ps_width;
  340. guint16 ps_height;
  341. guint8 rndctrl;
  342. guint8 uvsamp;
  343. guint8 postproc;
  344. /* B and P picture specific */
  345. guint8 mvrange;
  346. guint8 mvmode;
  347. guint8 mvtab;
  348. guint8 cbptab;
  349. guint8 ttmbf;
  350. guint8 ttfrm;
  351. /* B and BI picture only
  352. * Should be divided by #GST_VC1_BFRACTION_BASIS
  353. * to get the real value. */
  354. guint16 bfraction;
  355. /* ppic */
  356. guint8 mvmode2;
  357. guint8 lumscale;
  358. guint8 lumshift;
  359. /* bipic */
  360. guint8 bf;
  361. guint8 condover;
  362. guint8 transacfrm2;
  363. /* Biplane value, those fields only mention the fact
  364. * that the bitplane is in raw mode or not */
  365. guint8 acpred;
  366. guint8 overflags;
  367. guint8 mvtypemb;
  368. guint8 skipmb;
  369. guint8 directmb;
  370. guint8 forwardmb; /* B pic interlace field only */
  371. /* For interlaced pictures only */
  372. guint8 fieldtx;
  373. /* P and B pictures */
  374. guint8 intcomp;
  375. guint8 dmvrange;
  376. guint8 mbmodetab;
  377. guint8 imvtab;
  378. guint8 icbptab;
  379. guint8 mvbptab2;
  380. guint8 mvbptab4; /* If 4mvswitch in ppic */
  381. /* P picture */
  382. guint8 mvswitch4;
  383. /* For interlaced fields only */
  384. guint16 refdist;
  385. guint8 fptype; /* Raw value */
  386. /* P pic */
  387. guint8 numref;
  388. guint8 reffield;
  389. guint8 lumscale2;
  390. guint8 lumshift2;
  391. guint8 intcompfield;
  392. };
  393. struct _GstVC1BitPlanes
  394. {
  395. guint8 *acpred;
  396. guint8 *fieldtx;
  397. guint8 *overflags;
  398. guint8 *mvtypemb;
  399. guint8 *skipmb;
  400. guint8 *directmb;
  401. guint8 *forwardmb;
  402. guint size; /* Size of the arrays */
  403. };
  404. struct _GstVC1VopDquant
  405. {
  406. guint8 pqdiff;
  407. guint8 abspq;
  408. /* Computed */
  409. guint8 altpquant;
  410. /* if dqant != 2*/
  411. guint8 dquantfrm;
  412. guint8 dqprofile;
  413. /* Boundary edge selection. This represents DQSBEDGE
  414. * if dqprofile == GST_VC1_DQPROFILE_SINGLE_EDGE or
  415. * DQDBEDGE if dqprofile == GST_VC1_DQPROFILE_DOUBLE_EDGE */
  416. guint8 dqbedge;
  417. /* FIXME: remove */
  418. guint8 unused;
  419. /* if dqprofile == GST_VC1_DQPROFILE_ALL_MBS */
  420. guint8 dqbilevel;
  421. };
  422. struct _GstVC1FrameLayer
  423. {
  424. guint8 key;
  425. guint32 framesize;
  426. guint32 timestamp;
  427. /* calculated */
  428. guint32 next_framelayer_offset;
  429. guint8 skiped_p_frame;
  430. };
  431. /**
  432. * GstVC1FrameHdr:
  433. *
  434. * Structure that represent picture in any profile or mode.
  435. * You should look at @ptype and @profile to know what is currently
  436. * in use.
  437. */
  438. struct _GstVC1FrameHdr
  439. {
  440. /* common fields */
  441. GstVC1PictureType ptype;
  442. guint8 interpfrm;
  443. guint8 halfqp;
  444. guint8 transacfrm;
  445. guint8 transdctab;
  446. guint8 pqindex;
  447. guint8 pquantizer;
  448. /* Computed */
  449. guint8 pquant;
  450. /* Convenience fields */
  451. guint8 profile;
  452. guint8 dquant;
  453. /* If dquant */
  454. GstVC1VopDquant vopdquant;
  455. union {
  456. GstVC1PicSimpleMain simple;
  457. GstVC1PicAdvanced advanced;
  458. } pic;
  459. /* Size of the picture layer in bits */
  460. guint header_size;
  461. };
  462. /**
  463. * GstVC1SliceHdr:
  464. *
  465. * Structure that represents slice layer in advanced profile.
  466. */
  467. struct _GstVC1SliceHdr
  468. {
  469. guint16 slice_addr;
  470. /* Size of the slice layer in bits */
  471. guint header_size;
  472. };
  473. /**
  474. * GstVC1BDU:
  475. *
  476. * Structure that represents a Bitstream Data Unit.
  477. */
  478. struct _GstVC1BDU
  479. {
  480. GstVC1StartCode type;
  481. guint size;
  482. guint sc_offset;
  483. guint offset;
  484. guint8 * data;
  485. };
  486. GstVC1ParserResult gst_vc1_identify_next_bdu (const guint8 *data,
  487. gsize size,
  488. GstVC1BDU *bdu);
  489. GstVC1ParserResult gst_vc1_parse_sequence_header (const guint8 *data,
  490. gsize size,
  491. GstVC1SeqHdr * seqhdr);
  492. GstVC1ParserResult gst_vc1_parse_entry_point_header (const guint8 *data,
  493. gsize size,
  494. GstVC1EntryPointHdr * entrypoint,
  495. GstVC1SeqHdr *seqhdr);
  496. GstVC1ParserResult gst_vc1_parse_sequence_layer (const guint8 *data,
  497. gsize size,
  498. GstVC1SeqLayer * seqlayer);
  499. GstVC1ParserResult
  500. gst_vc1_parse_sequence_header_struct_a (const guint8 *data,
  501. gsize size,
  502. GstVC1SeqStructA *structa);
  503. GstVC1ParserResult
  504. gst_vc1_parse_sequence_header_struct_b (const guint8 *data,
  505. gsize size,
  506. GstVC1SeqStructB *structb);
  507. GstVC1ParserResult
  508. gst_vc1_parse_sequence_header_struct_c (const guint8 *data,
  509. gsize size,
  510. GstVC1SeqStructC *structc);
  511. GstVC1ParserResult gst_vc1_parse_frame_layer (const guint8 *data,
  512. gsize size,
  513. GstVC1FrameLayer * framelayer);
  514. GstVC1ParserResult gst_vc1_parse_frame_header (const guint8 *data,
  515. gsize size,
  516. GstVC1FrameHdr * framehdr,
  517. GstVC1SeqHdr *seqhdr,
  518. GstVC1BitPlanes *bitplanes);
  519. GstVC1ParserResult gst_vc1_parse_field_header (const guint8 *data,
  520. gsize size,
  521. GstVC1FrameHdr * fieldhdr,
  522. GstVC1SeqHdr *seqhdr,
  523. GstVC1BitPlanes *bitplanes);
  524. GstVC1ParserResult gst_vc1_parse_slice_header (const guint8 *data,
  525. gsize size,
  526. GstVC1SliceHdr *slicehdr,
  527. GstVC1SeqHdr *seqhdr);
  528. GstVC1BitPlanes * gst_vc1_bitplanes_new (void);
  529. void gst_vc1_bitplanes_free (GstVC1BitPlanes *bitplanes);
  530. void gst_vc1_bitplanes_free_1 (GstVC1BitPlanes *bitplanes);
  531. gboolean gst_vc1_bitplanes_ensure_size (GstVC1BitPlanes *bitplanes,
  532. GstVC1SeqHdr *seqhdr);
  533. G_END_DECLS
  534. #endif