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.

279 lines
8.0KB

  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 FFmpeg.
  9. *
  10. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. AVFrame *frame;
  33. int num_pal_colors;
  34. int first_color[2];
  35. int frame_data_length;
  36. uint8_t *low_nibble;
  37. uint8_t *srcptr;
  38. uint8_t *src_end;
  39. uint8_t *dstptr;
  40. uint8_t *dstbuf;
  41. } YopDecContext;
  42. // These tables are taken directly from:
  43. // http://wiki.multimedia.cx/index.php?title=Psygnosis_YOP
  44. /**
  45. * Lookup table for painting macroblocks. Bytes 0-2 of each entry contain
  46. * the macroblock positions to be painted (taken as (0, B0, B1, B2)).
  47. * Byte 3 contains the number of bytes consumed on the input,
  48. * equal to max(bytes 0-2) + 1.
  49. */
  50. static const uint8_t paint_lut[15][4] =
  51. {{1, 2, 3, 4}, {1, 2, 0, 3},
  52. {1, 2, 1, 3}, {1, 2, 2, 3},
  53. {1, 0, 2, 3}, {1, 0, 0, 2},
  54. {1, 0, 1, 2}, {1, 1, 2, 3},
  55. {0, 1, 2, 3}, {0, 1, 0, 2},
  56. {1, 1, 0, 2}, {0, 1, 1, 2},
  57. {0, 0, 1, 2}, {0, 0, 0, 1},
  58. {1, 1, 1, 2},
  59. };
  60. /**
  61. * Lookup table for copying macroblocks. Each entry contains the respective
  62. * x and y pixel offset for the copy source.
  63. */
  64. static const int8_t motion_vector[16][2] =
  65. {{-4, -4}, {-2, -4},
  66. { 0, -4}, { 2, -4},
  67. {-4, -2}, {-4, 0},
  68. {-3, -3}, {-1, -3},
  69. { 1, -3}, { 3, -3},
  70. {-3, -1}, {-2, -2},
  71. { 0, -2}, { 2, -2},
  72. { 4, -2}, {-2, 0},
  73. };
  74. static av_cold int yop_decode_close(AVCodecContext *avctx)
  75. {
  76. YopDecContext *s = avctx->priv_data;
  77. av_frame_free(&s->frame);
  78. return 0;
  79. }
  80. static av_cold int yop_decode_init(AVCodecContext *avctx)
  81. {
  82. YopDecContext *s = avctx->priv_data;
  83. s->avctx = avctx;
  84. if (avctx->width & 1 || avctx->height & 1 ||
  85. av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) {
  86. av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n");
  87. return AVERROR_INVALIDDATA;
  88. }
  89. if (avctx->extradata_size < 3) {
  90. av_log(avctx, AV_LOG_ERROR, "Missing or incomplete extradata.\n");
  91. return AVERROR_INVALIDDATA;
  92. }
  93. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  94. s->num_pal_colors = avctx->extradata[0];
  95. s->first_color[0] = avctx->extradata[1];
  96. s->first_color[1] = avctx->extradata[2];
  97. if (s->num_pal_colors + s->first_color[0] > 256 ||
  98. s->num_pal_colors + s->first_color[1] > 256) {
  99. av_log(avctx, AV_LOG_ERROR,
  100. "Palette parameters invalid, header probably corrupt\n");
  101. return AVERROR_INVALIDDATA;
  102. }
  103. s->frame = av_frame_alloc();
  104. if (!s->frame)
  105. return AVERROR(ENOMEM);
  106. return 0;
  107. }
  108. /**
  109. * Paint a macroblock using the pattern in paint_lut.
  110. * @param s codec context
  111. * @param tag the tag that was in the nibble
  112. */
  113. static int yop_paint_block(YopDecContext *s, int linesize, int tag)
  114. {
  115. if (s->src_end - s->srcptr < paint_lut[tag][3]) {
  116. av_log(s->avctx, AV_LOG_ERROR, "Packet too small.\n");
  117. return AVERROR_INVALIDDATA;
  118. }
  119. s->dstptr[0] = s->srcptr[0];
  120. s->dstptr[1] = s->srcptr[paint_lut[tag][0]];
  121. s->dstptr[linesize] = s->srcptr[paint_lut[tag][1]];
  122. s->dstptr[linesize + 1] = s->srcptr[paint_lut[tag][2]];
  123. // The number of src bytes consumed is in the last part of the lut entry.
  124. s->srcptr += paint_lut[tag][3];
  125. return 0;
  126. }
  127. /**
  128. * Copy a previously painted macroblock to the current_block.
  129. * @param copy_tag the tag that was in the nibble
  130. */
  131. static int yop_copy_previous_block(YopDecContext *s, int linesize, int copy_tag)
  132. {
  133. uint8_t *bufptr;
  134. // Calculate position for the copy source
  135. bufptr = s->dstptr + motion_vector[copy_tag][0] +
  136. linesize * motion_vector[copy_tag][1];
  137. if (bufptr < s->dstbuf) {
  138. av_log(s->avctx, AV_LOG_ERROR, "File probably corrupt\n");
  139. return AVERROR_INVALIDDATA;
  140. }
  141. s->dstptr[0] = bufptr[0];
  142. s->dstptr[1] = bufptr[1];
  143. s->dstptr[linesize] = bufptr[linesize];
  144. s->dstptr[linesize + 1] = bufptr[linesize + 1];
  145. return 0;
  146. }
  147. /**
  148. * Return the next nibble in sequence, consuming a new byte on the input
  149. * only if necessary.
  150. */
  151. static uint8_t yop_get_next_nibble(YopDecContext *s)
  152. {
  153. int ret;
  154. if (s->low_nibble) {
  155. ret = *s->low_nibble & 0xf;
  156. s->low_nibble = NULL;
  157. }else {
  158. s->low_nibble = s->srcptr++;
  159. ret = *s->low_nibble >> 4;
  160. }
  161. return ret;
  162. }
  163. static int yop_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  164. AVPacket *avpkt)
  165. {
  166. YopDecContext *s = avctx->priv_data;
  167. AVFrame *frame = s->frame;
  168. int tag, firstcolor, is_odd_frame;
  169. int ret, i, x, y;
  170. uint32_t *palette;
  171. if (avpkt->size < 4 + 3 * s->num_pal_colors) {
  172. av_log(avctx, AV_LOG_ERROR, "Packet too small.\n");
  173. return AVERROR_INVALIDDATA;
  174. }
  175. if ((ret = ff_reget_buffer(avctx, frame, 0)) < 0)
  176. return ret;
  177. if (!avctx->frame_number)
  178. memset(frame->data[1], 0, AVPALETTE_SIZE);
  179. s->dstbuf = frame->data[0];
  180. s->dstptr = frame->data[0];
  181. s->srcptr = avpkt->data + 4;
  182. s->src_end = avpkt->data + avpkt->size;
  183. s->low_nibble = NULL;
  184. is_odd_frame = avpkt->data[0];
  185. if(is_odd_frame>1){
  186. av_log(avctx, AV_LOG_ERROR, "frame is too odd %d\n", is_odd_frame);
  187. return AVERROR_INVALIDDATA;
  188. }
  189. firstcolor = s->first_color[is_odd_frame];
  190. palette = (uint32_t *)frame->data[1];
  191. for (i = 0; i < s->num_pal_colors; i++, s->srcptr += 3) {
  192. palette[i + firstcolor] = (s->srcptr[0] << 18) |
  193. (s->srcptr[1] << 10) |
  194. (s->srcptr[2] << 2);
  195. palette[i + firstcolor] |= 0xFFU << 24 |
  196. (palette[i + firstcolor] >> 6) & 0x30303;
  197. }
  198. frame->palette_has_changed = 1;
  199. for (y = 0; y < avctx->height; y += 2) {
  200. for (x = 0; x < avctx->width; x += 2) {
  201. if (s->srcptr - avpkt->data >= avpkt->size) {
  202. av_log(avctx, AV_LOG_ERROR, "Packet too small.\n");
  203. return AVERROR_INVALIDDATA;
  204. }
  205. tag = yop_get_next_nibble(s);
  206. if (tag != 0xf) {
  207. ret = yop_paint_block(s, frame->linesize[0], tag);
  208. if (ret < 0)
  209. return ret;
  210. } else {
  211. tag = yop_get_next_nibble(s);
  212. ret = yop_copy_previous_block(s, frame->linesize[0], tag);
  213. if (ret < 0)
  214. return ret;
  215. }
  216. s->dstptr += 2;
  217. }
  218. s->dstptr += 2*frame->linesize[0] - x;
  219. }
  220. if ((ret = av_frame_ref(data, s->frame)) < 0)
  221. return ret;
  222. *got_frame = 1;
  223. return avpkt->size;
  224. }
  225. AVCodec ff_yop_decoder = {
  226. .name = "yop",
  227. .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"),
  228. .type = AVMEDIA_TYPE_VIDEO,
  229. .id = AV_CODEC_ID_YOP,
  230. .priv_data_size = sizeof(YopDecContext),
  231. .init = yop_decode_init,
  232. .close = yop_decode_close,
  233. .decode = yop_decode_frame,
  234. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
  235. };