gstjpegparser.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /* GStreamer JPEG parser
  2. * Copyright (C) 2011-2012 Intel Corporation
  3. * Copyright (C) 2015 Tim-Philipp Müller <tim@centricular.com>
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public License
  7. * as published by the Free Software Foundation; either version 2.1
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free
  17. * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  18. * Boston, MA 02110-1301 USA
  19. */
  20. #ifndef GST_JPEG_PARSER_H
  21. #define GST_JPEG_PARSER_H
  22. #ifndef GST_USE_UNSTABLE_API
  23. # warning "The JPEG parsing library is unstable API and may change in future."
  24. # warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  25. #endif
  26. #include <gst/gst.h>
  27. G_BEGIN_DECLS
  28. /**
  29. * GST_JPEG_MAX_FRAME_COMPONENTS:
  30. *
  31. * Maximum number of image components in a frame (Nf).
  32. *
  33. * Since: 1.6
  34. */
  35. #define GST_JPEG_MAX_FRAME_COMPONENTS 256
  36. /**
  37. * GST_JPEG_MAX_SCAN_COMPONENTS:
  38. *
  39. * Maximum number of image components in a scan (Ns).
  40. *
  41. * Since: 1.6
  42. */
  43. #define GST_JPEG_MAX_SCAN_COMPONENTS 4
  44. /**
  45. * GST_JPEG_MAX_QUANT_ELEMENTS:
  46. *
  47. * Number of elements in the quantization table.
  48. *
  49. * Since: 1.6
  50. */
  51. #define GST_JPEG_MAX_QUANT_ELEMENTS 64
  52. typedef struct _GstJpegQuantTable GstJpegQuantTable;
  53. typedef struct _GstJpegQuantTables GstJpegQuantTables;
  54. typedef struct _GstJpegHuffmanTable GstJpegHuffmanTable;
  55. typedef struct _GstJpegHuffmanTables GstJpegHuffmanTables;
  56. typedef struct _GstJpegScanComponent GstJpegScanComponent;
  57. typedef struct _GstJpegScanHdr GstJpegScanHdr;
  58. typedef struct _GstJpegFrameComponent GstJpegFrameComponent;
  59. typedef struct _GstJpegFrameHdr GstJpegFrameHdr;
  60. typedef struct _GstJpegSegment GstJpegSegment;
  61. /**
  62. * GstJpegMarker:
  63. * @GST_JPEG_MARKER_SOF0: Start of frame marker code (Baseline)
  64. * @GST_JPEG_MARKER_SOF1: Start of frame marker code (Extended Sequential, Huffman)
  65. * @GST_JPEG_MARKER_SOF2: Start of frame marker code (Progressive, Huffman)
  66. * @GST_JPEG_MARKER_SOF3: Start of frame marker code (Lossless, Huffman)
  67. * @GST_JPEG_MARKER_SOF5: Start of frame marker code (Differential Sequential, Huffman)
  68. * @GST_JPEG_MARKER_SOF6: Start of frame marker code (Differential Progressive, Huffman)
  69. * @GST_JPEG_MARKER_SOF7: Start of frame marker code (Differential Lossless, Huffman)
  70. * @GST_JPEG_MARKER_SOF9: Start of frame marker code (Extended Sequential, Arithmetic)
  71. * @GST_JPEG_MARKER_SOF10: Start of frame marker code (Progressive, Arithmetic)
  72. * @GST_JPEG_MARKER_SOF11: Start of frame marker code (Lossless, Arithmetic)
  73. * @GST_JPEG_MARKER_SOF13: Start of frame marker code (Differential Sequential, Arithmetic)
  74. * @GST_JPEG_MARKER_SOF14: Start of frame marker code (Differential Progressive, Arithmetic)
  75. * @GST_JPEG_MARKER_SOF15: Start of frame marker code (Differential Lossless, Arithmetic)
  76. * @GST_JPEG_MARKER_DHT: Huffman table marker code
  77. * @GST_JPEG_MARKER_DAC: Arithmetic coding marker code
  78. * @GST_JPEG_MARKER_RST_MIN: Restart interval min marker code
  79. * @GST_JPEG_MARKER_RST_MAX: Restart interval max marker code
  80. * @GST_JPEG_MARKER_SOI: Start of image marker code
  81. * @GST_JPEG_MARKER_EOI: End of image marker code
  82. * @GST_JPEG_MARKER_SOS: Start of scan marker code
  83. * @GST_JPEG_MARKER_DQT: Define quantization table marker code
  84. * @GST_JPEG_MARKER_DNL: Define number of lines marker code
  85. * @GST_JPEG_MARKER_DRI: Define restart interval marker code
  86. * @GST_JPEG_MARKER_APP0: Application segment 0 marker code
  87. * @GST_JPEG_MARKER_APP1: Application segment 1 marker code
  88. * @GST_JPEG_MARKER_APP2: Application segment 2 marker code
  89. * @GST_JPEG_MARKER_APP3: Application segment 3 marker code
  90. * @GST_JPEG_MARKER_APP4: Application segment 4 marker code
  91. * @GST_JPEG_MARKER_APP5: Application segment 5 marker code
  92. * @GST_JPEG_MARKER_APP6: Application segment 6 marker code
  93. * @GST_JPEG_MARKER_APP7: Application segment 7 marker code
  94. * @GST_JPEG_MARKER_APP8: Application segment 8 marker code
  95. * @GST_JPEG_MARKER_APP9: Application segment 9 marker code
  96. * @GST_JPEG_MARKER_APP10: Application segment 10 marker code
  97. * @GST_JPEG_MARKER_APP11: Application segment 11 marker code
  98. * @GST_JPEG_MARKER_APP12: Application segment 12 marker code
  99. * @GST_JPEG_MARKER_APP13: Application segment 13 marker code
  100. * @GST_JPEG_MARKER_APP14: Application segment 14 marker code
  101. * @GST_JPEG_MARKER_APP15: Application segment 15 marker code
  102. * @GST_JPEG_MARKER_COM: Comment marker code
  103. *
  104. * Indicates the type of JPEG segment.
  105. *
  106. * Since: 1.6
  107. */
  108. typedef enum {
  109. GST_JPEG_MARKER_SOF0 = 0xC0,
  110. GST_JPEG_MARKER_SOF1 = 0xC1,
  111. GST_JPEG_MARKER_SOF2 = 0xC2,
  112. GST_JPEG_MARKER_SOF3 = 0xC3,
  113. /* 0xC4 = DHT see below */
  114. GST_JPEG_MARKER_SOF5 = 0xC5,
  115. GST_JPEG_MARKER_SOF6 = 0xC6,
  116. GST_JPEG_MARKER_SOF7 = 0xC7,
  117. /* 0xC8 = reserved */
  118. GST_JPEG_MARKER_SOF9 = 0xC9,
  119. GST_JPEG_MARKER_SOF10 = 0xCA,
  120. GST_JPEG_MARKER_SOF11 = 0xCB,
  121. /* 0xCC = DAC see below */
  122. GST_JPEG_MARKER_SOF13 = 0xCD,
  123. GST_JPEG_MARKER_SOF14 = 0xCE,
  124. GST_JPEG_MARKER_SOF15 = 0xCF,
  125. GST_JPEG_MARKER_DHT = 0xC4,
  126. GST_JPEG_MARKER_DAC = 0xCC,
  127. GST_JPEG_MARKER_RST0 = 0xD0,
  128. GST_JPEG_MARKER_RST1 = 0xD1,
  129. GST_JPEG_MARKER_RST2 = 0xD2,
  130. GST_JPEG_MARKER_RST3 = 0xD3,
  131. GST_JPEG_MARKER_RST4 = 0xD4,
  132. GST_JPEG_MARKER_RST5 = 0xD5,
  133. GST_JPEG_MARKER_RST6 = 0xD6,
  134. GST_JPEG_MARKER_RST7 = 0xD7,
  135. GST_JPEG_MARKER_SOI = 0xD8,
  136. GST_JPEG_MARKER_EOI = 0xD9,
  137. GST_JPEG_MARKER_SOS = 0xDA,
  138. GST_JPEG_MARKER_DQT = 0xDB,
  139. GST_JPEG_MARKER_DNL = 0xDC,
  140. GST_JPEG_MARKER_DRI = 0xDD,
  141. GST_JPEG_MARKER_APP0 = 0xE0,
  142. GST_JPEG_MARKER_APP1 = 0xE1,
  143. GST_JPEG_MARKER_APP2 = 0xE2,
  144. GST_JPEG_MARKER_APP3 = 0xE3,
  145. GST_JPEG_MARKER_APP4 = 0xE4,
  146. GST_JPEG_MARKER_APP5 = 0xE5,
  147. GST_JPEG_MARKER_APP6 = 0xE6,
  148. GST_JPEG_MARKER_APP7 = 0xE7,
  149. GST_JPEG_MARKER_APP8 = 0xE8,
  150. GST_JPEG_MARKER_APP9 = 0xE9,
  151. GST_JPEG_MARKER_APP10 = 0xEA,
  152. GST_JPEG_MARKER_APP11 = 0xEB,
  153. GST_JPEG_MARKER_APP12 = 0xEC,
  154. GST_JPEG_MARKER_APP13 = 0xED,
  155. GST_JPEG_MARKER_APP14 = 0xEE,
  156. GST_JPEG_MARKER_APP15 = 0xEF,
  157. GST_JPEG_MARKER_COM = 0xFE,
  158. } GstJpegMarker;
  159. #define GST_JPEG_MARKER_SOF_MIN GST_JPEG_MARKER_SOF0
  160. #define GST_JPEG_MARKER_SOF_MAX GST_JPEG_MARKER_SOF15
  161. #define GST_JPEG_MARKER_APP_MIN GST_JPEG_MARKER_APP0
  162. #define GST_JPEG_MARKER_APP_MAX GST_JPEG_MARKER_APP15
  163. #define GST_JPEG_MARKER_RST_MIN GST_JPEG_MARKER_RST0
  164. #define GST_JPEG_MARKER_RST_MAX GST_JPEG_MARKER_RST7
  165. /**
  166. * GstJpegProfile:
  167. * @GST_JPEG_PROFILE_BASELINE: Baseline DCT
  168. * @GST_JPEG_PROFILE_EXTENDED: Extended sequential DCT
  169. * @GST_JPEG_PROFILE_PROGRESSIVE: Progressive DCT
  170. * @GST_JPEG_PROFILE_LOSSLESS: Lossless (sequential)
  171. *
  172. * JPEG encoding processes.
  173. *
  174. * Since: 1.6
  175. */
  176. typedef enum {
  177. GST_JPEG_PROFILE_BASELINE = 0x00,
  178. GST_JPEG_PROFILE_EXTENDED = 0x01,
  179. GST_JPEG_PROFILE_PROGRESSIVE = 0x02,
  180. GST_JPEG_PROFILE_LOSSLESS = 0x03,
  181. } GstJpegProfile;
  182. /**
  183. * GstJpegEntropyCodingMode:
  184. * @GST_JPEG_ENTROPY_CODING_HUFFMAN: Huffman coding
  185. * @GST_JPEG_ENTROPY_CODING_ARITHMETIC: arithmetic coding
  186. *
  187. * JPEG entropy coding mode.
  188. *
  189. * Since: 1.6
  190. */
  191. typedef enum {
  192. GST_JPEG_ENTROPY_CODING_HUFFMAN = 0x00,
  193. GST_JPEG_ENTROPY_CODING_ARITHMETIC = 0x08
  194. } GstJpegEntropyCodingMode;
  195. /**
  196. * GstJpegQuantTable:
  197. * @quant_precision: Quantization table element precision (Pq)
  198. * @quant_table: Quantization table elements (Qk)
  199. * @valid: If the quantization table is valid, which means it has
  200. * already been parsed
  201. *
  202. * Quantization table.
  203. *
  204. * Since: 1.6
  205. */
  206. struct _GstJpegQuantTable
  207. {
  208. guint8 quant_precision;
  209. guint16 quant_table[GST_JPEG_MAX_QUANT_ELEMENTS];
  210. gboolean valid;
  211. };
  212. /**
  213. * GstJpegQuantTables:
  214. * @quant_tables: All quantization tables
  215. *
  216. * Helper data structure that holds all quantization tables used to
  217. * decode an image.
  218. *
  219. * Since: 1.6
  220. */
  221. struct _GstJpegQuantTables
  222. {
  223. GstJpegQuantTable quant_tables[GST_JPEG_MAX_SCAN_COMPONENTS];
  224. };
  225. /**
  226. * GstJpegHuffmanTable:
  227. * @huf_bits: Number of Huffman codes of length i + 1 (Li)
  228. * @huf_vales: Value associated with each Huffman code (Vij)
  229. * @valid: If the Huffman table is valid, which means it has already
  230. * been parsed
  231. *
  232. * Huffman table.
  233. *
  234. * Since: 1.6
  235. */
  236. struct _GstJpegHuffmanTable
  237. {
  238. guint8 huf_bits[16];
  239. guint8 huf_values[256];
  240. gboolean valid;
  241. };
  242. /**
  243. * GstJpegHuffmanTables:
  244. * @dc_tables: DC Huffman tables
  245. * @ac_tables: AC Huffman tables
  246. *
  247. * Helper data structure that holds all AC/DC Huffman tables used to
  248. * decode an image.
  249. *
  250. * Since: 1.6
  251. */
  252. struct _GstJpegHuffmanTables
  253. {
  254. GstJpegHuffmanTable dc_tables[GST_JPEG_MAX_SCAN_COMPONENTS];
  255. GstJpegHuffmanTable ac_tables[GST_JPEG_MAX_SCAN_COMPONENTS];
  256. };
  257. /**
  258. * GstJpegScanComponent:
  259. * @component_selector: Scan component selector (Csj)
  260. * @dc_selector: DC entropy coding table destination selector (Tdj)
  261. * @ac_selector: AC entropy coding table destination selector (Taj)
  262. * Component-specification parameters.
  263. *
  264. * Since: 1.6
  265. */
  266. struct _GstJpegScanComponent
  267. {
  268. guint8 component_selector; /* 0 .. 255 */
  269. guint8 dc_selector; /* 0 .. 3 */
  270. guint8 ac_selector; /* 0 .. 3 */
  271. };
  272. /**
  273. * GstJpegScanHdr:
  274. * @num_components: Number of image components in scan (Ns)
  275. * @components: Image components
  276. *
  277. * Scan header.
  278. *
  279. * Since: 1.6
  280. */
  281. struct _GstJpegScanHdr
  282. {
  283. guint8 num_components; /* 1 .. 4 */
  284. GstJpegScanComponent components[GST_JPEG_MAX_SCAN_COMPONENTS];
  285. /*< private >*/
  286. guint8 _reserved1; /* Ss */
  287. guint8 _reserved2; /* Se */
  288. guint8 _reserved3; /* Al */
  289. guint8 _reserved4; /* Ah */
  290. };
  291. /**
  292. * GstJpegFrameComponent:
  293. * @identifier: Component identifier (Ci)
  294. * @horizontal_factor: Horizontal sampling factor (Hi)
  295. * @vertical_factor: Vertical sampling factor (Vi)
  296. * @quant_table_selector: Quantization table destination selector (Tqi)
  297. *
  298. * Component-specification parameters.
  299. *
  300. * Since: 1.6
  301. */
  302. struct _GstJpegFrameComponent
  303. {
  304. guint8 identifier; /* 0 .. 255 */
  305. guint8 horizontal_factor; /* 1 .. 4 */
  306. guint8 vertical_factor; /* 1 .. 4 */
  307. guint8 quant_table_selector; /* 0 .. 3 */
  308. };
  309. /**
  310. * GstJpegFrameHdr:
  311. * @sample_precision: Sample precision (P)
  312. * @height: Number of lines (Y)
  313. * @width: Number of samples per line (X)
  314. * @num_components: Number of image components in frame (Nf)
  315. * @components: Image components
  316. * @restart_interval: Number of MCU in the restart interval (Ri)
  317. *
  318. * Frame header.
  319. *
  320. * Since: 1.6
  321. */
  322. struct _GstJpegFrameHdr
  323. {
  324. guint8 sample_precision; /* 2 .. 16 */
  325. guint16 width; /* 1 .. 65535 */
  326. guint16 height; /* 0 .. 65535 */
  327. guint8 num_components; /* 1 .. 255 */
  328. GstJpegFrameComponent components[GST_JPEG_MAX_FRAME_COMPONENTS];
  329. };
  330. /**
  331. * GstJpegSegment:
  332. * @marker: The type of the segment that starts at @offset
  333. * @data: the data containing the jpeg segment starting at @offset
  334. * @offset: The offset to the segment start in bytes. This is the
  335. * exact start of the segment, no marker code included
  336. * @size: The size of the segment in bytes, or -1 if the end was not
  337. * found. It is the exact size of the segment, without the sync byte and
  338. * marker code but including any length bytes.
  339. *
  340. * A structure that contains the type of a segment, its offset and its size.
  341. *
  342. * Since: 1.6
  343. */
  344. struct _GstJpegSegment
  345. {
  346. GstJpegMarker marker;
  347. const guint8 *data;
  348. guint offset;
  349. gssize size;
  350. };
  351. gboolean gst_jpeg_parse (GstJpegSegment * seg,
  352. const guint8 * data,
  353. gsize size,
  354. guint offset);
  355. gboolean gst_jpeg_segment_parse_frame_header (const GstJpegSegment * segment,
  356. GstJpegFrameHdr * frame_hdr);
  357. gboolean gst_jpeg_segment_parse_scan_header (const GstJpegSegment * segment,
  358. GstJpegScanHdr * scan_hdr);
  359. gboolean gst_jpeg_segment_parse_huffman_table (const GstJpegSegment * segment,
  360. GstJpegHuffmanTables * huff_tables);
  361. gboolean gst_jpeg_segment_parse_restart_interval (const GstJpegSegment * segment,
  362. guint * interval);
  363. gboolean gst_jpeg_segment_parse_quantization_table (const GstJpegSegment * segment,
  364. GstJpegQuantTables * quant_tables);
  365. void gst_jpeg_get_default_quantization_tables (GstJpegQuantTables * quant_tables);
  366. void gst_jpeg_get_default_huffman_tables (GstJpegHuffmanTables * huff_tables);
  367. G_END_DECLS
  368. #endif /* GST_JPEG_PARSER_H */