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.

276 lines
7.9KB

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