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.

258 lines
7.5KB

  1. /*
  2. * Psygnosis YOP decoder
  3. *
  4. * Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
  5. * derived from the code by
  6. * Copyright (C) 2009 Thomas P. Higdon <thomas.p.higdon@gmail.com>
  7. *
  8. * This file is part of Libav.
  9. *
  10. * Libav is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * Libav is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with Libav; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #include <string.h>
  25. #include "libavutil/imgutils.h"
  26. #include "libavutil/internal.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "avcodec.h"
  29. #include "internal.h"
  30. typedef struct YopDecContext {
  31. AVCodecContext *avctx;
  32. int num_pal_colors;
  33. int first_color[2];
  34. int frame_data_length;
  35. uint8_t *low_nibble;
  36. uint8_t *srcptr;
  37. uint8_t *src_end;
  38. uint8_t *dstptr;
  39. uint8_t *dstbuf;
  40. } YopDecContext;
  41. // These tables are taken directly from:
  42. // http://wiki.multimedia.cx/index.php?title=Psygnosis_YOP
  43. /**
  44. * Lookup table for painting macroblocks. Bytes 0-2 of each entry contain
  45. * the macroblock positions to be painted (taken as (0, B0, B1, B2)).
  46. * Byte 3 contains the number of bytes consumed on the input,
  47. * equal to max(bytes 0-2) + 1.
  48. */
  49. static const uint8_t paint_lut[15][4] =
  50. {{1, 2, 3, 4}, {1, 2, 0, 3},
  51. {1, 2, 1, 3}, {1, 2, 2, 3},
  52. {1, 0, 2, 3}, {1, 0, 0, 2},
  53. {1, 0, 1, 2}, {1, 1, 2, 3},
  54. {0, 1, 2, 3}, {0, 1, 0, 2},
  55. {1, 1, 0, 2}, {0, 1, 1, 2},
  56. {0, 0, 1, 2}, {0, 0, 0, 1},
  57. {1, 1, 1, 2},
  58. };
  59. /**
  60. * Lookup table for copying macroblocks. Each entry contains the respective
  61. * x and y pixel offset for the copy source.
  62. */
  63. static const int8_t motion_vector[16][2] =
  64. {{-4, -4}, {-2, -4},
  65. { 0, -4}, { 2, -4},
  66. {-4, -2}, {-4, 0},
  67. {-3, -3}, {-1, -3},
  68. { 1, -3}, { 3, -3},
  69. {-3, -1}, {-2, -2},
  70. { 0, -2}, { 2, -2},
  71. { 4, -2}, {-2, 0},
  72. };
  73. static av_cold int yop_decode_init(AVCodecContext *avctx)
  74. {
  75. YopDecContext *s = avctx->priv_data;
  76. s->avctx = avctx;
  77. if (avctx->width & 1 || avctx->height & 1 ||
  78. av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) {
  79. av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n");
  80. return AVERROR_INVALIDDATA;
  81. }
  82. if (avctx->extradata_size < 3) {
  83. av_log(avctx, AV_LOG_ERROR, "Missing or incomplete extradata.\n");
  84. return AVERROR_INVALIDDATA;
  85. }
  86. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  87. s->num_pal_colors = avctx->extradata[0];
  88. s->first_color[0] = avctx->extradata[1];
  89. s->first_color[1] = avctx->extradata[2];
  90. if (s->num_pal_colors + s->first_color[0] > 256 ||
  91. s->num_pal_colors + s->first_color[1] > 256) {
  92. av_log(avctx, AV_LOG_ERROR,
  93. "YOP: palette parameters invalid, header probably corrupt\n");
  94. return AVERROR_INVALIDDATA;
  95. }
  96. return 0;
  97. }
  98. /**
  99. * Paint a macroblock using the pattern in paint_lut.
  100. * @param s codec context
  101. * @param tag the tag that was in the nibble
  102. */
  103. static int yop_paint_block(YopDecContext *s, int linesize, int tag)
  104. {
  105. if (s->src_end - s->srcptr < paint_lut[tag][3]) {
  106. av_log(s->avctx, AV_LOG_ERROR, "Packet too small.\n");
  107. return AVERROR_INVALIDDATA;
  108. }
  109. s->dstptr[0] = s->srcptr[0];
  110. s->dstptr[1] = s->srcptr[paint_lut[tag][0]];
  111. s->dstptr[linesize] = s->srcptr[paint_lut[tag][1]];
  112. s->dstptr[linesize + 1] = s->srcptr[paint_lut[tag][2]];
  113. // The number of src bytes consumed is in the last part of the lut entry.
  114. s->srcptr += paint_lut[tag][3];
  115. return 0;
  116. }
  117. /**
  118. * Copy a previously painted macroblock to the current_block.
  119. * @param copy_tag the tag that was in the nibble
  120. */
  121. static int yop_copy_previous_block(YopDecContext *s, int linesize, int copy_tag)
  122. {
  123. uint8_t *bufptr;
  124. // Calculate position for the copy source
  125. bufptr = s->dstptr + motion_vector[copy_tag][0] +
  126. linesize * motion_vector[copy_tag][1];
  127. if (bufptr < s->dstbuf) {
  128. av_log(s->avctx, AV_LOG_ERROR,
  129. "YOP: cannot decode, file probably corrupt\n");
  130. return AVERROR_INVALIDDATA;
  131. }
  132. s->dstptr[0] = bufptr[0];
  133. s->dstptr[1] = bufptr[1];
  134. s->dstptr[linesize] = bufptr[linesize];
  135. s->dstptr[linesize + 1] = bufptr[linesize + 1];
  136. return 0;
  137. }
  138. /**
  139. * Return the next nibble in sequence, consuming a new byte on the input
  140. * only if necessary.
  141. */
  142. static uint8_t yop_get_next_nibble(YopDecContext *s)
  143. {
  144. int ret;
  145. if (s->low_nibble) {
  146. ret = *s->low_nibble & 0xf;
  147. s->low_nibble = NULL;
  148. }else {
  149. s->low_nibble = s->srcptr++;
  150. ret = *s->low_nibble >> 4;
  151. }
  152. return ret;
  153. }
  154. static int yop_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  155. AVPacket *avpkt)
  156. {
  157. YopDecContext *s = avctx->priv_data;
  158. AVFrame *frame = data;
  159. int tag, firstcolor, is_odd_frame;
  160. int ret, i, x, y;
  161. uint32_t *palette;
  162. if (avpkt->size < 4 + 3 * s->num_pal_colors) {
  163. av_log(avctx, AV_LOG_ERROR, "Packet too small.\n");
  164. return AVERROR_INVALIDDATA;
  165. }
  166. ret = ff_get_buffer(avctx, frame, 0);
  167. if (ret < 0) {
  168. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  169. return ret;
  170. }
  171. if (!avctx->frame_number)
  172. memset(frame->data[1], 0, AVPALETTE_SIZE);
  173. s->dstbuf = frame->data[0];
  174. s->dstptr = frame->data[0];
  175. s->srcptr = avpkt->data + 4;
  176. s->src_end = avpkt->data + avpkt->size;
  177. s->low_nibble = NULL;
  178. is_odd_frame = avpkt->data[0];
  179. firstcolor = s->first_color[is_odd_frame];
  180. palette = (uint32_t *)frame->data[1];
  181. for (i = 0; i < s->num_pal_colors; i++, s->srcptr += 3)
  182. palette[i + firstcolor] = (s->srcptr[0] << 18) |
  183. (s->srcptr[1] << 10) |
  184. (s->srcptr[2] << 2);
  185. frame->palette_has_changed = 1;
  186. for (y = 0; y < avctx->height; y += 2) {
  187. for (x = 0; x < avctx->width; x += 2) {
  188. if (s->srcptr - avpkt->data >= avpkt->size) {
  189. av_log(avctx, AV_LOG_ERROR, "Packet too small.\n");
  190. return AVERROR_INVALIDDATA;
  191. }
  192. tag = yop_get_next_nibble(s);
  193. if (tag != 0xf) {
  194. ret = yop_paint_block(s, frame->linesize[0], tag);
  195. if (ret < 0)
  196. return ret;
  197. } else {
  198. tag = yop_get_next_nibble(s);
  199. ret = yop_copy_previous_block(s, frame->linesize[0], tag);
  200. if (ret < 0)
  201. return ret;
  202. }
  203. s->dstptr += 2;
  204. }
  205. s->dstptr += 2*frame->linesize[0] - x;
  206. }
  207. *got_frame = 1;
  208. return avpkt->size;
  209. }
  210. AVCodec ff_yop_decoder = {
  211. .name = "yop",
  212. .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"),
  213. .type = AVMEDIA_TYPE_VIDEO,
  214. .id = AV_CODEC_ID_YOP,
  215. .priv_data_size = sizeof(YopDecContext),
  216. .init = yop_decode_init,
  217. .decode = yop_decode_frame,
  218. .capabilities = AV_CODEC_CAP_DR1,
  219. };