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.

289 lines
8.9KB

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