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.

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