You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

396 lines
13KB

  1. /*
  2. * RTP JPEG-compressed Video Depacketizer, RFC 2435
  3. * Copyright (c) 2012 Samuel Pitoiset
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avformat.h"
  22. #include "avio_internal.h"
  23. #include "rtpdec.h"
  24. #include "rtpdec_formats.h"
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavcodec/jpegtables.h"
  27. #include "libavcodec/mjpeg.h"
  28. #include "libavcodec/bytestream.h"
  29. /**
  30. * RTP/JPEG specific private data.
  31. */
  32. struct PayloadContext {
  33. AVIOContext *frame; ///< current frame buffer
  34. uint32_t timestamp; ///< current frame timestamp
  35. int hdr_size; ///< size of the current frame header
  36. uint8_t qtables[128][128];
  37. uint8_t qtables_len[128];
  38. };
  39. static const uint8_t default_quantizers[128] = {
  40. /* luma table */
  41. 16, 11, 12, 14, 12, 10, 16, 14,
  42. 13, 14, 18, 17, 16, 19, 24, 40,
  43. 26, 24, 22, 22, 24, 49, 35, 37,
  44. 29, 40, 58, 51, 61, 60, 57, 51,
  45. 56, 55, 64, 72, 92, 78, 64, 68,
  46. 87, 69, 55, 56, 80, 109, 81, 87,
  47. 95, 98, 103, 104, 103, 62, 77, 113,
  48. 121, 112, 100, 120, 92, 101, 103, 99,
  49. /* chroma table */
  50. 17, 18, 18, 24, 21, 24, 47, 26,
  51. 26, 47, 99, 66, 56, 66, 99, 99,
  52. 99, 99, 99, 99, 99, 99, 99, 99,
  53. 99, 99, 99, 99, 99, 99, 99, 99,
  54. 99, 99, 99, 99, 99, 99, 99, 99,
  55. 99, 99, 99, 99, 99, 99, 99, 99,
  56. 99, 99, 99, 99, 99, 99, 99, 99,
  57. 99, 99, 99, 99, 99, 99, 99, 99
  58. };
  59. static void jpeg_close_context(PayloadContext *jpeg)
  60. {
  61. ffio_free_dyn_buf(&jpeg->frame);
  62. }
  63. static int jpeg_create_huffman_table(PutByteContext *p, int table_class,
  64. int table_id, const uint8_t *bits_table,
  65. const uint8_t *value_table)
  66. {
  67. int i, n = 0;
  68. bytestream2_put_byte(p, table_class << 4 | table_id);
  69. for (i = 1; i <= 16; i++) {
  70. n += bits_table[i];
  71. bytestream2_put_byte(p, bits_table[i]);
  72. }
  73. for (i = 0; i < n; i++) {
  74. bytestream2_put_byte(p, value_table[i]);
  75. }
  76. return n + 17;
  77. }
  78. static void jpeg_put_marker(PutByteContext *pbc, int code)
  79. {
  80. bytestream2_put_byte(pbc, 0xff);
  81. bytestream2_put_byte(pbc, code);
  82. }
  83. static int jpeg_create_header(uint8_t *buf, int size, uint32_t type, uint32_t w,
  84. uint32_t h, const uint8_t *qtable, int nb_qtable,
  85. int dri)
  86. {
  87. PutByteContext pbc;
  88. uint8_t *dht_size_ptr;
  89. int dht_size, i;
  90. bytestream2_init_writer(&pbc, buf, size);
  91. /* Convert from blocks to pixels. */
  92. w <<= 3;
  93. h <<= 3;
  94. /* SOI */
  95. jpeg_put_marker(&pbc, SOI);
  96. /* JFIF header */
  97. jpeg_put_marker(&pbc, APP0);
  98. bytestream2_put_be16(&pbc, 16);
  99. bytestream2_put_buffer(&pbc, "JFIF", 5);
  100. bytestream2_put_be16(&pbc, 0x0201);
  101. bytestream2_put_byte(&pbc, 0);
  102. bytestream2_put_be16(&pbc, 1);
  103. bytestream2_put_be16(&pbc, 1);
  104. bytestream2_put_byte(&pbc, 0);
  105. bytestream2_put_byte(&pbc, 0);
  106. if (dri) {
  107. jpeg_put_marker(&pbc, DRI);
  108. bytestream2_put_be16(&pbc, 4);
  109. bytestream2_put_be16(&pbc, dri);
  110. }
  111. /* DQT */
  112. jpeg_put_marker(&pbc, DQT);
  113. bytestream2_put_be16(&pbc, 2 + nb_qtable * (1 + 64));
  114. for (i = 0; i < nb_qtable; i++) {
  115. bytestream2_put_byte(&pbc, i);
  116. /* Each table is an array of 64 values given in zig-zag
  117. * order, identical to the format used in a JFIF DQT
  118. * marker segment. */
  119. bytestream2_put_buffer(&pbc, qtable + 64 * i, 64);
  120. }
  121. /* DHT */
  122. jpeg_put_marker(&pbc, DHT);
  123. dht_size_ptr = pbc.buffer;
  124. bytestream2_put_be16(&pbc, 0);
  125. dht_size = 2;
  126. dht_size += jpeg_create_huffman_table(&pbc, 0, 0,avpriv_mjpeg_bits_dc_luminance,
  127. avpriv_mjpeg_val_dc);
  128. dht_size += jpeg_create_huffman_table(&pbc, 0, 1, avpriv_mjpeg_bits_dc_chrominance,
  129. avpriv_mjpeg_val_dc);
  130. dht_size += jpeg_create_huffman_table(&pbc, 1, 0, avpriv_mjpeg_bits_ac_luminance,
  131. avpriv_mjpeg_val_ac_luminance);
  132. dht_size += jpeg_create_huffman_table(&pbc, 1, 1, avpriv_mjpeg_bits_ac_chrominance,
  133. avpriv_mjpeg_val_ac_chrominance);
  134. AV_WB16(dht_size_ptr, dht_size);
  135. /* SOF0 */
  136. jpeg_put_marker(&pbc, SOF0);
  137. bytestream2_put_be16(&pbc, 17); /* size */
  138. bytestream2_put_byte(&pbc, 8); /* bits per component */
  139. bytestream2_put_be16(&pbc, h);
  140. bytestream2_put_be16(&pbc, w);
  141. bytestream2_put_byte(&pbc, 3); /* number of components */
  142. bytestream2_put_byte(&pbc, 1); /* component number */
  143. bytestream2_put_byte(&pbc, (2 << 4) | (type ? 2 : 1)); /* hsample/vsample */
  144. bytestream2_put_byte(&pbc, 0); /* matrix number */
  145. bytestream2_put_byte(&pbc, 2); /* component number */
  146. bytestream2_put_byte(&pbc, 1 << 4 | 1); /* hsample/vsample */
  147. bytestream2_put_byte(&pbc, nb_qtable == 2 ? 1 : 0); /* matrix number */
  148. bytestream2_put_byte(&pbc, 3); /* component number */
  149. bytestream2_put_byte(&pbc, 1 << 4 | 1); /* hsample/vsample */
  150. bytestream2_put_byte(&pbc, nb_qtable == 2 ? 1 : 0); /* matrix number */
  151. /* SOS */
  152. jpeg_put_marker(&pbc, SOS);
  153. bytestream2_put_be16(&pbc, 12);
  154. bytestream2_put_byte(&pbc, 3);
  155. bytestream2_put_byte(&pbc, 1);
  156. bytestream2_put_byte(&pbc, 0);
  157. bytestream2_put_byte(&pbc, 2);
  158. bytestream2_put_byte(&pbc, 17);
  159. bytestream2_put_byte(&pbc, 3);
  160. bytestream2_put_byte(&pbc, 17);
  161. bytestream2_put_byte(&pbc, 0);
  162. bytestream2_put_byte(&pbc, 63);
  163. bytestream2_put_byte(&pbc, 0);
  164. /* Return the length in bytes of the JPEG header. */
  165. return bytestream2_tell_p(&pbc);
  166. }
  167. static void create_default_qtables(uint8_t *qtables, uint8_t q)
  168. {
  169. int factor = q;
  170. int i;
  171. factor = av_clip(q, 1, 99);
  172. if (q < 50)
  173. q = 5000 / factor;
  174. else
  175. q = 200 - factor * 2;
  176. for (i = 0; i < 128; i++) {
  177. int val = (default_quantizers[i] * q + 50) / 100;
  178. /* Limit the quantizers to 1 <= q <= 255. */
  179. val = av_clip(val, 1, 255);
  180. qtables[i] = val;
  181. }
  182. }
  183. static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
  184. AVStream *st, AVPacket *pkt, uint32_t *timestamp,
  185. const uint8_t *buf, int len, uint16_t seq,
  186. int flags)
  187. {
  188. uint8_t type, q, width, height;
  189. const uint8_t *qtables = NULL;
  190. uint16_t qtable_len;
  191. uint32_t off;
  192. int ret, dri = 0;
  193. if (len < 8) {
  194. av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
  195. return AVERROR_INVALIDDATA;
  196. }
  197. /* Parse the main JPEG header. */
  198. off = AV_RB24(buf + 1); /* fragment byte offset */
  199. type = AV_RB8(buf + 4); /* id of jpeg decoder params */
  200. q = AV_RB8(buf + 5); /* quantization factor (or table id) */
  201. width = AV_RB8(buf + 6); /* frame width in 8 pixel blocks */
  202. height = AV_RB8(buf + 7); /* frame height in 8 pixel blocks */
  203. buf += 8;
  204. len -= 8;
  205. if (type & 0x40) {
  206. if (len < 4) {
  207. av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
  208. return AVERROR_INVALIDDATA;
  209. }
  210. dri = AV_RB16(buf);
  211. buf += 4;
  212. len -= 4;
  213. type &= ~0x40;
  214. }
  215. /* Parse the restart marker header. */
  216. if (type > 63) {
  217. av_log(ctx, AV_LOG_ERROR,
  218. "Unimplemented RTP/JPEG restart marker header.\n");
  219. return AVERROR_PATCHWELCOME;
  220. }
  221. if (type > 1) {
  222. av_log(ctx, AV_LOG_ERROR, "Unimplemented RTP/JPEG type %d\n", type);
  223. return AVERROR_PATCHWELCOME;
  224. }
  225. /* Parse the quantization table header. */
  226. if (off == 0) {
  227. /* Start of JPEG data packet. */
  228. uint8_t new_qtables[128];
  229. uint8_t hdr[1024];
  230. if (q > 127) {
  231. uint8_t precision;
  232. if (len < 4) {
  233. av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
  234. return AVERROR_INVALIDDATA;
  235. }
  236. /* The first byte is reserved for future use. */
  237. precision = AV_RB8(buf + 1); /* size of coefficients */
  238. qtable_len = AV_RB16(buf + 2); /* length in bytes */
  239. buf += 4;
  240. len -= 4;
  241. if (precision)
  242. av_log(ctx, AV_LOG_WARNING, "Only 8-bit precision is supported.\n");
  243. if (qtable_len > 0) {
  244. if (len < qtable_len) {
  245. av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
  246. return AVERROR_INVALIDDATA;
  247. }
  248. qtables = buf;
  249. buf += qtable_len;
  250. len -= qtable_len;
  251. if (q < 255) {
  252. if (jpeg->qtables_len[q - 128] &&
  253. (jpeg->qtables_len[q - 128] != qtable_len ||
  254. memcmp(qtables, &jpeg->qtables[q - 128][0], qtable_len))) {
  255. av_log(ctx, AV_LOG_WARNING,
  256. "Quantization tables for q=%d changed\n", q);
  257. } else if (!jpeg->qtables_len[q - 128] && qtable_len <= 128) {
  258. memcpy(&jpeg->qtables[q - 128][0], qtables,
  259. qtable_len);
  260. jpeg->qtables_len[q - 128] = qtable_len;
  261. }
  262. }
  263. } else {
  264. if (q == 255) {
  265. av_log(ctx, AV_LOG_ERROR,
  266. "Invalid RTP/JPEG packet. Quantization tables not found.\n");
  267. return AVERROR_INVALIDDATA;
  268. }
  269. if (!jpeg->qtables_len[q - 128]) {
  270. av_log(ctx, AV_LOG_ERROR,
  271. "No quantization tables known for q=%d yet.\n", q);
  272. return AVERROR_INVALIDDATA;
  273. }
  274. qtables = &jpeg->qtables[q - 128][0];
  275. qtable_len = jpeg->qtables_len[q - 128];
  276. }
  277. } else { /* q <= 127 */
  278. if (q == 0 || q > 99) {
  279. av_log(ctx, AV_LOG_ERROR, "Reserved q value %d\n", q);
  280. return AVERROR_INVALIDDATA;
  281. }
  282. create_default_qtables(new_qtables, q);
  283. qtables = new_qtables;
  284. qtable_len = sizeof(new_qtables);
  285. }
  286. /* Skip the current frame in case of the end packet
  287. * has been lost somewhere. */
  288. ffio_free_dyn_buf(&jpeg->frame);
  289. if ((ret = avio_open_dyn_buf(&jpeg->frame)) < 0)
  290. return ret;
  291. jpeg->timestamp = *timestamp;
  292. /* Generate a frame and scan headers that can be prepended to the
  293. * RTP/JPEG data payload to produce a JPEG compressed image in
  294. * interchange format. */
  295. jpeg->hdr_size = jpeg_create_header(hdr, sizeof(hdr), type, width,
  296. height, qtables,
  297. qtable_len / 64, dri);
  298. /* Copy JPEG header to frame buffer. */
  299. avio_write(jpeg->frame, hdr, jpeg->hdr_size);
  300. }
  301. if (!jpeg->frame) {
  302. av_log(ctx, AV_LOG_ERROR,
  303. "Received packet without a start chunk; dropping frame.\n");
  304. return AVERROR(EAGAIN);
  305. }
  306. if (jpeg->timestamp != *timestamp) {
  307. /* Skip the current frame if timestamp is incorrect.
  308. * A start packet has been lost somewhere. */
  309. ffio_free_dyn_buf(&jpeg->frame);
  310. av_log(ctx, AV_LOG_ERROR, "RTP timestamps don't match.\n");
  311. return AVERROR_INVALIDDATA;
  312. }
  313. if (off != avio_tell(jpeg->frame) - jpeg->hdr_size) {
  314. av_log(ctx, AV_LOG_ERROR,
  315. "Missing packets; dropping frame.\n");
  316. return AVERROR(EAGAIN);
  317. }
  318. /* Copy data to frame buffer. */
  319. avio_write(jpeg->frame, buf, len);
  320. if (flags & RTP_FLAG_MARKER) {
  321. /* End of JPEG data packet. */
  322. uint8_t buf[2] = { 0xff, EOI };
  323. /* Put EOI marker. */
  324. avio_write(jpeg->frame, buf, sizeof(buf));
  325. /* Prepare the JPEG packet. */
  326. if ((ret = ff_rtp_finalize_packet(pkt, &jpeg->frame, st->index)) < 0) {
  327. av_log(ctx, AV_LOG_ERROR,
  328. "Error occurred when getting frame buffer.\n");
  329. return ret;
  330. }
  331. return 0;
  332. }
  333. return AVERROR(EAGAIN);
  334. }
  335. RTPDynamicProtocolHandler ff_jpeg_dynamic_handler = {
  336. .enc_name = "JPEG",
  337. .codec_type = AVMEDIA_TYPE_VIDEO,
  338. .codec_id = AV_CODEC_ID_MJPEG,
  339. .priv_data_size = sizeof(PayloadContext),
  340. .close = jpeg_close_context,
  341. .parse_packet = jpeg_parse_packet,
  342. .static_payload_id = 26,
  343. };