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.

301 lines
9.6KB

  1. /*
  2. * NuppelVideo decoder
  3. * Copyright (c) 2006 Reimar Doeffinger
  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 <stdio.h>
  22. #include <stdlib.h>
  23. #include <limits.h>
  24. #include "libavutil/bswap.h"
  25. #include "libavutil/lzo.h"
  26. #include "libavutil/imgutils.h"
  27. #include "avcodec.h"
  28. #include "dsputil.h"
  29. #include "rtjpeg.h"
  30. typedef struct {
  31. AVFrame pic;
  32. int codec_frameheader;
  33. int quality;
  34. int width, height;
  35. unsigned int decomp_size;
  36. unsigned char* decomp_buf;
  37. uint32_t lq[64], cq[64];
  38. RTJpegContext rtj;
  39. DSPContext dsp;
  40. } NuvContext;
  41. static const uint8_t fallback_lquant[] = {
  42. 16, 11, 10, 16, 24, 40, 51, 61,
  43. 12, 12, 14, 19, 26, 58, 60, 55,
  44. 14, 13, 16, 24, 40, 57, 69, 56,
  45. 14, 17, 22, 29, 51, 87, 80, 62,
  46. 18, 22, 37, 56, 68, 109, 103, 77,
  47. 24, 35, 55, 64, 81, 104, 113, 92,
  48. 49, 64, 78, 87, 103, 121, 120, 101,
  49. 72, 92, 95, 98, 112, 100, 103, 99
  50. };
  51. static const uint8_t fallback_cquant[] = {
  52. 17, 18, 24, 47, 99, 99, 99, 99,
  53. 18, 21, 26, 66, 99, 99, 99, 99,
  54. 24, 26, 56, 99, 99, 99, 99, 99,
  55. 47, 66, 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. 99, 99, 99, 99, 99, 99, 99, 99,
  59. 99, 99, 99, 99, 99, 99, 99, 99
  60. };
  61. /**
  62. * @brief copy frame data from buffer to AVFrame, handling stride.
  63. * @param f destination AVFrame
  64. * @param src source buffer, does not use any line-stride
  65. * @param width width of the video frame
  66. * @param height height of the video frame
  67. */
  68. static void copy_frame(AVFrame *f, const uint8_t *src,
  69. int width, int height) {
  70. AVPicture pic;
  71. avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height);
  72. av_picture_copy((AVPicture *)f, &pic, PIX_FMT_YUV420P, width, height);
  73. }
  74. /**
  75. * @brief extract quantization tables from codec data into our context
  76. */
  77. static int get_quant(AVCodecContext *avctx, NuvContext *c,
  78. const uint8_t *buf, int size) {
  79. int i;
  80. if (size < 2 * 64 * 4) {
  81. av_log(avctx, AV_LOG_ERROR, "insufficient rtjpeg quant data\n");
  82. return -1;
  83. }
  84. for (i = 0; i < 64; i++, buf += 4)
  85. c->lq[i] = AV_RL32(buf);
  86. for (i = 0; i < 64; i++, buf += 4)
  87. c->cq[i] = AV_RL32(buf);
  88. return 0;
  89. }
  90. /**
  91. * @brief set quantization tables from a quality value
  92. */
  93. static void get_quant_quality(NuvContext *c, int quality) {
  94. int i;
  95. quality = FFMAX(quality, 1);
  96. for (i = 0; i < 64; i++) {
  97. c->lq[i] = (fallback_lquant[i] << 7) / quality;
  98. c->cq[i] = (fallback_cquant[i] << 7) / quality;
  99. }
  100. }
  101. static int codec_reinit(AVCodecContext *avctx, int width, int height, int quality) {
  102. NuvContext *c = avctx->priv_data;
  103. width = FFALIGN(width, 2);
  104. height = FFALIGN(height, 2);
  105. if (quality >= 0)
  106. get_quant_quality(c, quality);
  107. if (width != c->width || height != c->height) {
  108. // also reserve space for a possible additional header
  109. int buf_size = 24 + height * width * 3 / 2 + AV_LZO_OUTPUT_PADDING;
  110. if (av_image_check_size(height, width, 0, avctx) < 0 ||
  111. buf_size > INT_MAX/8)
  112. return -1;
  113. avctx->width = c->width = width;
  114. avctx->height = c->height = height;
  115. av_fast_malloc(&c->decomp_buf, &c->decomp_size, buf_size);
  116. if (!c->decomp_buf) {
  117. av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
  118. return AVERROR(ENOMEM);
  119. }
  120. rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
  121. return 1;
  122. } else if (quality != c->quality)
  123. rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
  124. return 0;
  125. }
  126. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  127. AVPacket *avpkt) {
  128. const uint8_t *buf = avpkt->data;
  129. int buf_size = avpkt->size;
  130. NuvContext *c = avctx->priv_data;
  131. AVFrame *picture = data;
  132. int orig_size = buf_size;
  133. int keyframe;
  134. int size_change = 0;
  135. int result;
  136. enum {NUV_UNCOMPRESSED = '0', NUV_RTJPEG = '1',
  137. NUV_RTJPEG_IN_LZO = '2', NUV_LZO = '3',
  138. NUV_BLACK = 'N', NUV_COPY_LAST = 'L'} comptype;
  139. if (buf_size < 12) {
  140. av_log(avctx, AV_LOG_ERROR, "coded frame too small\n");
  141. return -1;
  142. }
  143. // codec data (rtjpeg quant tables)
  144. if (buf[0] == 'D' && buf[1] == 'R') {
  145. int ret;
  146. // skip rest of the frameheader.
  147. buf = &buf[12];
  148. buf_size -= 12;
  149. ret = get_quant(avctx, c, buf, buf_size);
  150. if (ret < 0)
  151. return ret;
  152. rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
  153. return orig_size;
  154. }
  155. if (buf[0] != 'V' || buf_size < 12) {
  156. av_log(avctx, AV_LOG_ERROR, "not a nuv video frame\n");
  157. return -1;
  158. }
  159. comptype = buf[1];
  160. switch (comptype) {
  161. case NUV_RTJPEG_IN_LZO:
  162. case NUV_RTJPEG:
  163. keyframe = !buf[2]; break;
  164. case NUV_COPY_LAST:
  165. keyframe = 0; break;
  166. default:
  167. keyframe = 1; break;
  168. }
  169. retry:
  170. // skip rest of the frameheader.
  171. buf = &buf[12];
  172. buf_size -= 12;
  173. if (comptype == NUV_RTJPEG_IN_LZO || comptype == NUV_LZO) {
  174. int outlen = c->decomp_size - AV_LZO_OUTPUT_PADDING, inlen = buf_size;
  175. if (av_lzo1x_decode(c->decomp_buf, &outlen, buf, &inlen))
  176. av_log(avctx, AV_LOG_ERROR, "error during lzo decompression\n");
  177. buf = c->decomp_buf;
  178. buf_size = c->decomp_size - AV_LZO_OUTPUT_PADDING - outlen;
  179. }
  180. if (c->codec_frameheader) {
  181. int w, h, q, res;
  182. if (buf[0] != 'V' || buf_size < 12) {
  183. av_log(avctx, AV_LOG_ERROR, "invalid nuv video frame (wrong codec_tag?)\n");
  184. return AVERROR_INVALIDDATA;
  185. }
  186. w = AV_RL16(&buf[6]);
  187. h = AV_RL16(&buf[8]);
  188. q = buf[10];
  189. res = codec_reinit(avctx, w, h, q);
  190. if (res < 0)
  191. return res;
  192. if (res) {
  193. buf = avpkt->data;
  194. buf_size = avpkt->size;
  195. size_change = 1;
  196. goto retry;
  197. }
  198. buf = &buf[12];
  199. buf_size -= 12;
  200. }
  201. if ((size_change || keyframe) && c->pic.data[0])
  202. avctx->release_buffer(avctx, &c->pic);
  203. c->pic.reference = 3;
  204. c->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_READABLE |
  205. FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
  206. result = avctx->reget_buffer(avctx, &c->pic);
  207. if (result < 0) {
  208. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  209. return -1;
  210. }
  211. c->pic.pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  212. c->pic.key_frame = keyframe;
  213. // decompress/copy/whatever data
  214. switch (comptype) {
  215. case NUV_LZO:
  216. case NUV_UNCOMPRESSED: {
  217. int height = c->height;
  218. if (buf_size < c->width * height * 3 / 2) {
  219. av_log(avctx, AV_LOG_ERROR, "uncompressed frame too short\n");
  220. height = buf_size / c->width / 3 * 2;
  221. }
  222. copy_frame(&c->pic, buf, c->width, height);
  223. break;
  224. }
  225. case NUV_RTJPEG_IN_LZO:
  226. case NUV_RTJPEG: {
  227. rtjpeg_decode_frame_yuv420(&c->rtj, &c->pic, buf, buf_size);
  228. break;
  229. }
  230. case NUV_BLACK: {
  231. memset(c->pic.data[0], 0, c->width * c->height);
  232. memset(c->pic.data[1], 128, c->width * c->height / 4);
  233. memset(c->pic.data[2], 128, c->width * c->height / 4);
  234. break;
  235. }
  236. case NUV_COPY_LAST: {
  237. /* nothing more to do here */
  238. break;
  239. }
  240. default:
  241. av_log(avctx, AV_LOG_ERROR, "unknown compression\n");
  242. return -1;
  243. }
  244. *picture = c->pic;
  245. *data_size = sizeof(AVFrame);
  246. return orig_size;
  247. }
  248. static av_cold int decode_init(AVCodecContext *avctx) {
  249. NuvContext *c = avctx->priv_data;
  250. avctx->pix_fmt = PIX_FMT_YUV420P;
  251. c->pic.data[0] = NULL;
  252. c->decomp_buf = NULL;
  253. c->quality = -1;
  254. c->width = 0;
  255. c->height = 0;
  256. c->codec_frameheader = avctx->codec_tag == MKTAG('R', 'J', 'P', 'G');
  257. if (avctx->extradata_size)
  258. get_quant(avctx, c, avctx->extradata, avctx->extradata_size);
  259. dsputil_init(&c->dsp, avctx);
  260. if (codec_reinit(avctx, avctx->width, avctx->height, -1) < 0)
  261. return 1;
  262. return 0;
  263. }
  264. static av_cold int decode_end(AVCodecContext *avctx) {
  265. NuvContext *c = avctx->priv_data;
  266. av_freep(&c->decomp_buf);
  267. if (c->pic.data[0])
  268. avctx->release_buffer(avctx, &c->pic);
  269. return 0;
  270. }
  271. AVCodec ff_nuv_decoder = {
  272. .name = "nuv",
  273. .type = AVMEDIA_TYPE_VIDEO,
  274. .id = CODEC_ID_NUV,
  275. .priv_data_size = sizeof(NuvContext),
  276. .init = decode_init,
  277. .close = decode_end,
  278. .decode = decode_frame,
  279. .capabilities = CODEC_CAP_DR1,
  280. .long_name = NULL_IF_CONFIG_SMALL("NuppelVideo/RTJPEG"),
  281. };