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.

277 lines
7.8KB

  1. /**
  2. * @file
  3. * Psygnosis YOP decoder
  4. *
  5. * Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
  6. * derived from the code by
  7. * Copyright (C) 2009 Thomas P. Higdon <thomas.p.higdon@gmail.com>
  8. *
  9. * This file is part of FFmpeg.
  10. *
  11. * FFmpeg is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * FFmpeg is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with FFmpeg; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavutil/imgutils.h"
  27. #include "avcodec.h"
  28. #include "get_bits.h"
  29. typedef struct YopDecContext {
  30. AVFrame frame;
  31. AVCodecContext *avctx;
  32. int num_pal_colors;
  33. int first_color[2];
  34. int frame_data_length;
  35. int row_pos;
  36. uint8_t *low_nibble;
  37. uint8_t *srcptr;
  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 -1;
  81. }
  82. if (!avctx->extradata) {
  83. av_log(avctx, AV_LOG_ERROR, "extradata missing\n");
  84. return AVERROR_INVALIDDATA;
  85. }
  86. avctx->pix_fmt = PIX_FMT_PAL8;
  87. avcodec_get_frame_defaults(&s->frame);
  88. s->num_pal_colors = avctx->extradata[0];
  89. s->first_color[0] = avctx->extradata[1];
  90. s->first_color[1] = avctx->extradata[2];
  91. if (s->num_pal_colors + s->first_color[0] > 256 ||
  92. s->num_pal_colors + s->first_color[1] > 256) {
  93. av_log(avctx, AV_LOG_ERROR,
  94. "YOP: palette parameters invalid, header probably corrupt\n");
  95. return AVERROR_INVALIDDATA;
  96. }
  97. return 0;
  98. }
  99. static av_cold int yop_decode_close(AVCodecContext *avctx)
  100. {
  101. YopDecContext *s = avctx->priv_data;
  102. if (s->frame.data[0])
  103. avctx->release_buffer(avctx, &s->frame);
  104. return 0;
  105. }
  106. /**
  107. * Paint a macroblock using the pattern in paint_lut.
  108. * @param s codec context
  109. * @param tag the tag that was in the nibble
  110. */
  111. static void yop_paint_block(YopDecContext *s, int tag)
  112. {
  113. s->dstptr[0] = s->srcptr[0];
  114. s->dstptr[1] = s->srcptr[paint_lut[tag][0]];
  115. s->dstptr[s->frame.linesize[0]] = s->srcptr[paint_lut[tag][1]];
  116. s->dstptr[s->frame.linesize[0] + 1] = s->srcptr[paint_lut[tag][2]];
  117. // The number of src bytes consumed is in the last part of the lut entry.
  118. s->srcptr += paint_lut[tag][3];
  119. }
  120. /**
  121. * Copy a previously painted macroblock to the current_block.
  122. * @param copy_tag the tag that was in the nibble
  123. */
  124. static int yop_copy_previous_block(YopDecContext *s, int copy_tag)
  125. {
  126. uint8_t *bufptr;
  127. // Calculate position for the copy source
  128. bufptr = s->dstptr + motion_vector[copy_tag][0] +
  129. s->frame.linesize[0] * motion_vector[copy_tag][1];
  130. if (bufptr < s->dstbuf) {
  131. av_log(s->avctx, AV_LOG_ERROR,
  132. "YOP: cannot decode, file probably corrupt\n");
  133. return AVERROR_INVALIDDATA;
  134. }
  135. s->dstptr[0] = bufptr[0];
  136. s->dstptr[1] = bufptr[1];
  137. s->dstptr[s->frame.linesize[0]] = bufptr[s->frame.linesize[0]];
  138. s->dstptr[s->frame.linesize[0] + 1] = bufptr[s->frame.linesize[0] + 1];
  139. return 0;
  140. }
  141. /**
  142. * Return the next nibble in sequence, consuming a new byte on the input
  143. * only if necessary.
  144. */
  145. static uint8_t yop_get_next_nibble(YopDecContext *s)
  146. {
  147. int ret;
  148. if (s->low_nibble) {
  149. ret = *s->low_nibble & 0xf;
  150. s->low_nibble = NULL;
  151. }else {
  152. s->low_nibble = s->srcptr++;
  153. ret = *s->low_nibble >> 4;
  154. }
  155. return ret;
  156. }
  157. /**
  158. * Take s->dstptr to the next macroblock in sequence.
  159. */
  160. static void yop_next_macroblock(YopDecContext *s)
  161. {
  162. // If we are advancing to the next row of macroblocks
  163. if (s->row_pos == s->frame.linesize[0] - 2) {
  164. s->dstptr += s->frame.linesize[0];
  165. s->row_pos = 0;
  166. }else {
  167. s->row_pos += 2;
  168. }
  169. s->dstptr += 2;
  170. }
  171. static int yop_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  172. AVPacket *avpkt)
  173. {
  174. YopDecContext *s = avctx->priv_data;
  175. int tag, firstcolor, is_odd_frame;
  176. int ret, i;
  177. uint32_t *palette;
  178. if (s->frame.data[0])
  179. avctx->release_buffer(avctx, &s->frame);
  180. if (avpkt->size < 4 + 3*s->num_pal_colors) {
  181. av_log(avctx, AV_LOG_ERROR, "packet of size %d too small\n", avpkt->size);
  182. return AVERROR_INVALIDDATA;
  183. }
  184. ret = avctx->get_buffer(avctx, &s->frame);
  185. if (ret < 0) {
  186. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  187. return ret;
  188. }
  189. s->frame.linesize[0] = avctx->width;
  190. s->dstbuf = s->frame.data[0];
  191. s->dstptr = s->frame.data[0];
  192. s->srcptr = avpkt->data + 4;
  193. s->row_pos = 0;
  194. s->low_nibble = NULL;
  195. is_odd_frame = avpkt->data[0];
  196. if(is_odd_frame>1){
  197. av_log(avctx, AV_LOG_ERROR, "frame is too odd %d\n", is_odd_frame);
  198. return AVERROR_INVALIDDATA;
  199. }
  200. firstcolor = s->first_color[is_odd_frame];
  201. palette = (uint32_t *)s->frame.data[1];
  202. for (i = 0; i < s->num_pal_colors; i++, s->srcptr += 3)
  203. palette[i + firstcolor] = (s->srcptr[0] << 18) |
  204. (s->srcptr[1] << 10) |
  205. (s->srcptr[2] << 2);
  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. "yop",
  229. AVMEDIA_TYPE_VIDEO,
  230. CODEC_ID_YOP,
  231. sizeof(YopDecContext),
  232. yop_decode_init,
  233. NULL,
  234. yop_decode_close,
  235. yop_decode_frame,
  236. .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"),
  237. };