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.

252 lines
9.0KB

  1. /*
  2. * Copyright (C) 2003 The FFmpeg project
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * id RoQ Video Decoder by Dr. Tim Ferguson
  23. * For more information about the id RoQ format, visit:
  24. * http://www.csse.monash.edu.au/~timf/
  25. */
  26. #include "libavutil/avassert.h"
  27. #include "libavutil/imgutils.h"
  28. #include "avcodec.h"
  29. #include "bytestream.h"
  30. #include "internal.h"
  31. #include "roqvideo.h"
  32. static void roqvideo_decode_frame(RoqContext *ri)
  33. {
  34. unsigned int chunk_id = 0, chunk_arg = 0;
  35. unsigned long chunk_size = 0;
  36. int i, j, k, nv1, nv2, vqflg = 0, vqflg_pos = -1;
  37. int vqid, xpos, ypos, xp, yp, x, y, mx, my;
  38. int frame_stats[2][4] = {{0},{0}};
  39. roq_qcell *qcell;
  40. int64_t chunk_start;
  41. while (bytestream2_get_bytes_left(&ri->gb) >= 8) {
  42. chunk_id = bytestream2_get_le16(&ri->gb);
  43. chunk_size = bytestream2_get_le32(&ri->gb);
  44. chunk_arg = bytestream2_get_le16(&ri->gb);
  45. if(chunk_id == RoQ_QUAD_VQ)
  46. break;
  47. if(chunk_id == RoQ_QUAD_CODEBOOK) {
  48. if((nv1 = chunk_arg >> 8) == 0)
  49. nv1 = 256;
  50. if((nv2 = chunk_arg & 0xff) == 0 && nv1 * 6 < chunk_size)
  51. nv2 = 256;
  52. for(i = 0; i < nv1; i++) {
  53. ri->cb2x2[i].y[0] = bytestream2_get_byte(&ri->gb);
  54. ri->cb2x2[i].y[1] = bytestream2_get_byte(&ri->gb);
  55. ri->cb2x2[i].y[2] = bytestream2_get_byte(&ri->gb);
  56. ri->cb2x2[i].y[3] = bytestream2_get_byte(&ri->gb);
  57. ri->cb2x2[i].u = bytestream2_get_byte(&ri->gb);
  58. ri->cb2x2[i].v = bytestream2_get_byte(&ri->gb);
  59. }
  60. for(i = 0; i < nv2; i++)
  61. for(j = 0; j < 4; j++)
  62. ri->cb4x4[i].idx[j] = bytestream2_get_byte(&ri->gb);
  63. }
  64. }
  65. chunk_start = bytestream2_tell(&ri->gb);
  66. xpos = ypos = 0;
  67. if (chunk_size > bytestream2_get_bytes_left(&ri->gb)) {
  68. av_log(ri->avctx, AV_LOG_ERROR, "Chunk does not fit in input buffer\n");
  69. chunk_size = bytestream2_get_bytes_left(&ri->gb);
  70. }
  71. while (bytestream2_tell(&ri->gb) < chunk_start + chunk_size) {
  72. for (yp = ypos; yp < ypos + 16; yp += 8)
  73. for (xp = xpos; xp < xpos + 16; xp += 8) {
  74. if (bytestream2_tell(&ri->gb) >= chunk_start + chunk_size) {
  75. av_log(ri->avctx, AV_LOG_VERBOSE, "Chunk is too short\n");
  76. return;
  77. }
  78. if (vqflg_pos < 0) {
  79. vqflg = bytestream2_get_le16(&ri->gb);
  80. vqflg_pos = 7;
  81. }
  82. vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
  83. frame_stats[0][vqid]++;
  84. vqflg_pos--;
  85. switch(vqid) {
  86. case RoQ_ID_MOT:
  87. break;
  88. case RoQ_ID_FCC: {
  89. int byte = bytestream2_get_byte(&ri->gb);
  90. mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
  91. my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
  92. ff_apply_motion_8x8(ri, xp, yp, mx, my);
  93. break;
  94. }
  95. case RoQ_ID_SLD:
  96. qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
  97. ff_apply_vector_4x4(ri, xp, yp, ri->cb2x2 + qcell->idx[0]);
  98. ff_apply_vector_4x4(ri, xp + 4, yp, ri->cb2x2 + qcell->idx[1]);
  99. ff_apply_vector_4x4(ri, xp, yp + 4, ri->cb2x2 + qcell->idx[2]);
  100. ff_apply_vector_4x4(ri, xp + 4, yp + 4, ri->cb2x2 + qcell->idx[3]);
  101. break;
  102. case RoQ_ID_CCC:
  103. for (k = 0; k < 4; k++) {
  104. x = xp; y = yp;
  105. if(k & 0x01) x += 4;
  106. if(k & 0x02) y += 4;
  107. if (bytestream2_tell(&ri->gb) >= chunk_start + chunk_size) {
  108. av_log(ri->avctx, AV_LOG_VERBOSE, "Chunk is too short\n");
  109. return;
  110. }
  111. if (vqflg_pos < 0) {
  112. vqflg = bytestream2_get_le16(&ri->gb);
  113. vqflg_pos = 7;
  114. }
  115. vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
  116. frame_stats[1][vqid]++;
  117. vqflg_pos--;
  118. switch(vqid) {
  119. case RoQ_ID_MOT:
  120. break;
  121. case RoQ_ID_FCC: {
  122. int byte = bytestream2_get_byte(&ri->gb);
  123. mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
  124. my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
  125. ff_apply_motion_4x4(ri, x, y, mx, my);
  126. break;
  127. }
  128. case RoQ_ID_SLD:
  129. qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
  130. ff_apply_vector_2x2(ri, x, y, ri->cb2x2 + qcell->idx[0]);
  131. ff_apply_vector_2x2(ri, x + 2, y, ri->cb2x2 + qcell->idx[1]);
  132. ff_apply_vector_2x2(ri, x, y + 2, ri->cb2x2 + qcell->idx[2]);
  133. ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + qcell->idx[3]);
  134. break;
  135. case RoQ_ID_CCC:
  136. ff_apply_vector_2x2(ri, x, y, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
  137. ff_apply_vector_2x2(ri, x + 2, y, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
  138. ff_apply_vector_2x2(ri, x, y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
  139. ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
  140. break;
  141. }
  142. }
  143. break;
  144. default:
  145. av_assert2(0);
  146. }
  147. }
  148. xpos += 16;
  149. if (xpos >= ri->width) {
  150. xpos -= ri->width;
  151. ypos += 16;
  152. }
  153. if(ypos >= ri->height)
  154. break;
  155. }
  156. }
  157. static av_cold int roq_decode_init(AVCodecContext *avctx)
  158. {
  159. RoqContext *s = avctx->priv_data;
  160. s->avctx = avctx;
  161. if (avctx->width % 16 || avctx->height % 16) {
  162. avpriv_request_sample(avctx, "Dimensions not being a multiple of 16");
  163. return AVERROR_PATCHWELCOME;
  164. }
  165. s->width = avctx->width;
  166. s->height = avctx->height;
  167. s->last_frame = av_frame_alloc();
  168. s->current_frame = av_frame_alloc();
  169. if (!s->current_frame || !s->last_frame) {
  170. av_frame_free(&s->current_frame);
  171. av_frame_free(&s->last_frame);
  172. return AVERROR(ENOMEM);
  173. }
  174. avctx->pix_fmt = AV_PIX_FMT_YUVJ444P;
  175. avctx->color_range = AVCOL_RANGE_JPEG;
  176. return 0;
  177. }
  178. static int roq_decode_frame(AVCodecContext *avctx,
  179. void *data, int *got_frame,
  180. AVPacket *avpkt)
  181. {
  182. const uint8_t *buf = avpkt->data;
  183. int buf_size = avpkt->size;
  184. RoqContext *s = avctx->priv_data;
  185. int copy = !s->current_frame->data[0] && s->last_frame->data[0];
  186. int ret;
  187. if ((ret = ff_reget_buffer(avctx, s->current_frame)) < 0)
  188. return ret;
  189. if (copy) {
  190. ret = av_frame_copy(s->current_frame, s->last_frame);
  191. if (ret < 0)
  192. return ret;
  193. }
  194. bytestream2_init(&s->gb, buf, buf_size);
  195. roqvideo_decode_frame(s);
  196. if ((ret = av_frame_ref(data, s->current_frame)) < 0)
  197. return ret;
  198. *got_frame = 1;
  199. /* shuffle frames */
  200. FFSWAP(AVFrame *, s->current_frame, s->last_frame);
  201. return buf_size;
  202. }
  203. static av_cold int roq_decode_end(AVCodecContext *avctx)
  204. {
  205. RoqContext *s = avctx->priv_data;
  206. av_frame_free(&s->current_frame);
  207. av_frame_free(&s->last_frame);
  208. return 0;
  209. }
  210. AVCodec ff_roq_decoder = {
  211. .name = "roqvideo",
  212. .long_name = NULL_IF_CONFIG_SMALL("id RoQ video"),
  213. .type = AVMEDIA_TYPE_VIDEO,
  214. .id = AV_CODEC_ID_ROQ,
  215. .priv_data_size = sizeof(RoqContext),
  216. .init = roq_decode_init,
  217. .close = roq_decode_end,
  218. .decode = roq_decode_frame,
  219. .capabilities = AV_CODEC_CAP_DR1,
  220. };