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.

346 lines
11KB

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