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.

336 lines
10KB

  1. /*
  2. * NuppelVideo decoder
  3. * Copyright (c) 2006 Reimar Doeffinger
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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/common.h"
  25. #include "libavutil/lzo.h"
  26. #include "libavutil/imgutils.h"
  27. #include "avcodec.h"
  28. #include "internal.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, int width, int height)
  69. {
  70. AVPicture pic;
  71. avpicture_fill(&pic, src, AV_PIX_FMT_YUV420P, width, height);
  72. av_picture_copy((AVPicture *)f, &pic, AV_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, const uint8_t *buf,
  78. int size)
  79. {
  80. int i;
  81. if (size < 2 * 64 * 4) {
  82. av_log(avctx, AV_LOG_ERROR, "insufficient rtjpeg quant data\n");
  83. return AVERROR_INVALIDDATA;
  84. }
  85. for (i = 0; i < 64; i++, buf += 4)
  86. c->lq[i] = AV_RL32(buf);
  87. for (i = 0; i < 64; i++, buf += 4)
  88. c->cq[i] = AV_RL32(buf);
  89. return 0;
  90. }
  91. /**
  92. * @brief set quantization tables from a quality value
  93. */
  94. static void get_quant_quality(NuvContext *c, int quality)
  95. {
  96. int i;
  97. quality = FFMAX(quality, 1);
  98. for (i = 0; i < 64; i++) {
  99. c->lq[i] = (fallback_lquant[i] << 7) / quality;
  100. c->cq[i] = (fallback_cquant[i] << 7) / quality;
  101. }
  102. }
  103. static int codec_reinit(AVCodecContext *avctx, int width, int height,
  104. int quality)
  105. {
  106. NuvContext *c = avctx->priv_data;
  107. int ret;
  108. width = FFALIGN(width, 2);
  109. height = FFALIGN(height, 2);
  110. if (quality >= 0)
  111. get_quant_quality(c, quality);
  112. if (width != c->width || height != c->height) {
  113. void *ptr;
  114. if ((ret = av_image_check_size(height, width, 0, avctx)) < 0)
  115. return ret;
  116. avctx->width = c->width = width;
  117. avctx->height = c->height = height;
  118. ptr = av_fast_realloc(c->decomp_buf, &c->decomp_size,
  119. c->height * c->width * 3 / 2 +
  120. FF_INPUT_BUFFER_PADDING_SIZE +
  121. RTJPEG_HEADER_SIZE);
  122. if (!ptr) {
  123. av_log(avctx, AV_LOG_ERROR,
  124. "Can't allocate decompression buffer.\n");
  125. return AVERROR(ENOMEM);
  126. } else
  127. c->decomp_buf = ptr;
  128. ff_rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height,
  129. c->lq, c->cq);
  130. av_frame_unref(&c->pic);
  131. } else if (quality != c->quality)
  132. ff_rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height,
  133. c->lq, c->cq);
  134. return 0;
  135. }
  136. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  137. AVPacket *avpkt)
  138. {
  139. const uint8_t *buf = avpkt->data;
  140. int buf_size = avpkt->size;
  141. NuvContext *c = avctx->priv_data;
  142. AVFrame *picture = data;
  143. int orig_size = buf_size;
  144. int keyframe, ret;
  145. int result, init_frame = !avctx->frame_number;
  146. enum {
  147. NUV_UNCOMPRESSED = '0',
  148. NUV_RTJPEG = '1',
  149. NUV_RTJPEG_IN_LZO = '2',
  150. NUV_LZO = '3',
  151. NUV_BLACK = 'N',
  152. NUV_COPY_LAST = 'L'
  153. } comptype;
  154. if (buf_size < 12) {
  155. av_log(avctx, AV_LOG_ERROR, "coded frame too small\n");
  156. return AVERROR_INVALIDDATA;
  157. }
  158. // codec data (rtjpeg quant tables)
  159. if (buf[0] == 'D' && buf[1] == 'R') {
  160. int ret;
  161. // skip rest of the frameheader.
  162. buf = &buf[12];
  163. buf_size -= 12;
  164. ret = get_quant(avctx, c, buf, buf_size);
  165. if (ret < 0)
  166. return ret;
  167. ff_rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq,
  168. c->cq);
  169. return orig_size;
  170. }
  171. if (buf[0] != 'V' || buf_size < 12) {
  172. av_log(avctx, AV_LOG_ERROR, "not a nuv video frame\n");
  173. return AVERROR_INVALIDDATA;
  174. }
  175. comptype = buf[1];
  176. switch (comptype) {
  177. case NUV_RTJPEG_IN_LZO:
  178. case NUV_RTJPEG:
  179. keyframe = !buf[2];
  180. break;
  181. case NUV_COPY_LAST:
  182. keyframe = 0;
  183. break;
  184. default:
  185. keyframe = 1;
  186. break;
  187. }
  188. // skip rest of the frameheader.
  189. buf = &buf[12];
  190. buf_size -= 12;
  191. if (comptype == NUV_RTJPEG_IN_LZO || comptype == NUV_LZO) {
  192. int outlen = c->decomp_size - FF_INPUT_BUFFER_PADDING_SIZE;
  193. int inlen = buf_size;
  194. if (av_lzo1x_decode(c->decomp_buf, &outlen, buf, &inlen)) {
  195. av_log(avctx, AV_LOG_ERROR, "error during lzo decompression\n");
  196. return AVERROR_INVALIDDATA;
  197. }
  198. buf = c->decomp_buf;
  199. buf_size = outlen;
  200. }
  201. if (c->codec_frameheader) {
  202. int w, h, q;
  203. if (buf_size < RTJPEG_HEADER_SIZE || buf[4] != RTJPEG_HEADER_SIZE ||
  204. buf[5] != RTJPEG_FILE_VERSION) {
  205. av_log(avctx, AV_LOG_ERROR, "invalid nuv video frame\n");
  206. return AVERROR_INVALIDDATA;
  207. }
  208. w = AV_RL16(&buf[6]);
  209. h = AV_RL16(&buf[8]);
  210. q = buf[10];
  211. if ((result = codec_reinit(avctx, w, h, q)) < 0)
  212. return result;
  213. if (comptype == NUV_RTJPEG_IN_LZO || comptype == NUV_LZO)
  214. buf = c->decomp_buf;
  215. buf = &buf[RTJPEG_HEADER_SIZE];
  216. buf_size -= RTJPEG_HEADER_SIZE;
  217. }
  218. if (keyframe) {
  219. av_frame_unref(&c->pic);
  220. init_frame = 1;
  221. }
  222. result = ff_reget_buffer(avctx, &c->pic);
  223. if (result < 0) {
  224. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  225. return result;
  226. }
  227. if (init_frame) {
  228. memset(c->pic.data[0], 0, avctx->height * c->pic.linesize[0]);
  229. memset(c->pic.data[1], 0x80, avctx->height * c->pic.linesize[1] / 2);
  230. memset(c->pic.data[2], 0x80, avctx->height * c->pic.linesize[2] / 2);
  231. }
  232. c->pic.pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  233. c->pic.key_frame = keyframe;
  234. // decompress/copy/whatever data
  235. switch (comptype) {
  236. case NUV_LZO:
  237. case NUV_UNCOMPRESSED: {
  238. int height = c->height;
  239. if (buf_size < c->width * height * 3 / 2) {
  240. av_log(avctx, AV_LOG_ERROR, "uncompressed frame too short\n");
  241. height = buf_size / c->width / 3 * 2;
  242. }
  243. copy_frame(&c->pic, buf, c->width, height);
  244. break;
  245. }
  246. case NUV_RTJPEG_IN_LZO:
  247. case NUV_RTJPEG:
  248. ret = ff_rtjpeg_decode_frame_yuv420(&c->rtj, &c->pic, buf, buf_size);
  249. if (ret < 0)
  250. return ret;
  251. break;
  252. case NUV_BLACK:
  253. memset(c->pic.data[0], 0, c->width * c->height);
  254. memset(c->pic.data[1], 128, c->width * c->height / 4);
  255. memset(c->pic.data[2], 128, c->width * c->height / 4);
  256. break;
  257. case NUV_COPY_LAST:
  258. /* nothing more to do here */
  259. break;
  260. default:
  261. av_log(avctx, AV_LOG_ERROR, "unknown compression\n");
  262. return AVERROR_INVALIDDATA;
  263. }
  264. if ((result = av_frame_ref(picture, &c->pic)) < 0)
  265. return result;
  266. *got_frame = 1;
  267. return orig_size;
  268. }
  269. static av_cold int decode_init(AVCodecContext *avctx)
  270. {
  271. NuvContext *c = avctx->priv_data;
  272. int ret;
  273. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  274. c->pic.data[0] = NULL;
  275. c->decomp_buf = NULL;
  276. c->quality = -1;
  277. c->width = 0;
  278. c->height = 0;
  279. c->codec_frameheader = avctx->codec_tag == MKTAG('R', 'J', 'P', 'G');
  280. if (avctx->extradata_size)
  281. get_quant(avctx, c, avctx->extradata, avctx->extradata_size);
  282. ff_dsputil_init(&c->dsp, avctx);
  283. if ((ret = codec_reinit(avctx, avctx->width, avctx->height, -1)) < 0)
  284. return ret;
  285. return 0;
  286. }
  287. static av_cold int decode_end(AVCodecContext *avctx)
  288. {
  289. NuvContext *c = avctx->priv_data;
  290. av_freep(&c->decomp_buf);
  291. av_frame_unref(&c->pic);
  292. return 0;
  293. }
  294. AVCodec ff_nuv_decoder = {
  295. .name = "nuv",
  296. .long_name = NULL_IF_CONFIG_SMALL("NuppelVideo/RTJPEG"),
  297. .type = AVMEDIA_TYPE_VIDEO,
  298. .id = AV_CODEC_ID_NUV,
  299. .priv_data_size = sizeof(NuvContext),
  300. .init = decode_init,
  301. .close = decode_end,
  302. .decode = decode_frame,
  303. .capabilities = CODEC_CAP_DR1,
  304. };