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.

150 lines
4.2KB

  1. /*
  2. * RV30 decoder
  3. * Copyright (c) 2007 Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file rv30.c
  23. * RV30 decoder
  24. */
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "mpegvideo.h"
  28. #include "golomb.h"
  29. #include "rv34.h"
  30. #include "rv30data.h"
  31. static int rv30_parse_slice_header(RV34DecContext *r, GetBitContext *gb, SliceInfo *si)
  32. {
  33. int mb_bits;
  34. int w = r->s.width, h = r->s.height;
  35. int mb_size;
  36. memset(si, 0, sizeof(SliceInfo));
  37. if(get_bits(gb, 3))
  38. return -1;
  39. si->type = get_bits(gb, 2);
  40. if(si->type == 1) si->type = 0;
  41. if(get_bits1(gb))
  42. return -1;
  43. si->quant = get_bits(gb, 5);
  44. skip_bits1(gb);
  45. si->pts = get_bits(gb, 13);
  46. skip_bits(gb, r->rpr);
  47. si->width = w;
  48. si->height = h;
  49. mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
  50. mb_bits = ff_rv34_get_start_offset(gb, mb_size);
  51. si->start = get_bits(gb, mb_bits);
  52. skip_bits1(gb);
  53. return 0;
  54. }
  55. /**
  56. * Decode 4x4 intra types array.
  57. */
  58. static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int8_t *dst)
  59. {
  60. int i, j, k;
  61. for(i = 0; i < 4; i++, dst += r->s.b4_stride - 4){
  62. for(j = 0; j < 4; j+= 2){
  63. int code = svq3_get_ue_golomb(gb) << 1;
  64. if(code >= 81*2){
  65. av_log(r->s.avctx, AV_LOG_ERROR, "Incorrect intra prediction code\n");
  66. return -1;
  67. }
  68. for(k = 0; k < 2; k++){
  69. int A = dst[-r->s.b4_stride] + 1;
  70. int B = dst[-1] + 1;
  71. *dst++ = rv30_itype_from_context[A * 90 + B * 9 + rv30_itype_code[code + k]];
  72. if(dst[-1] == 9){
  73. av_log(r->s.avctx, AV_LOG_ERROR, "Incorrect intra prediction mode\n");
  74. return -1;
  75. }
  76. }
  77. }
  78. }
  79. return 0;
  80. }
  81. /**
  82. * Decode macroblock information.
  83. */
  84. static int rv30_decode_mb_info(RV34DecContext *r)
  85. {
  86. static const int rv30_p_types[6] = { RV34_MB_SKIP, RV34_MB_P_16x16, RV34_MB_P_8x8, -1, RV34_MB_TYPE_INTRA, RV34_MB_TYPE_INTRA16x16 };
  87. static const int rv30_b_types[6] = { RV34_MB_SKIP, RV34_MB_B_DIRECT, RV34_MB_B_FORWARD, RV34_MB_B_BACKWARD, RV34_MB_TYPE_INTRA, RV34_MB_TYPE_INTRA16x16 };
  88. MpegEncContext *s = &r->s;
  89. GetBitContext *gb = &s->gb;
  90. int code = svq3_get_ue_golomb(gb);
  91. if(code > 11){
  92. av_log(s->avctx, AV_LOG_ERROR, "Incorrect MB type code\n");
  93. return -1;
  94. }
  95. if(code > 5){
  96. av_log(s->avctx, AV_LOG_ERROR, "dquant needed\n");
  97. code -= 6;
  98. }
  99. if(s->pict_type != FF_B_TYPE)
  100. return rv30_p_types[code];
  101. else
  102. return rv30_b_types[code];
  103. }
  104. /**
  105. * Initialize decoder.
  106. */
  107. static av_cold int rv30_decode_init(AVCodecContext *avctx)
  108. {
  109. RV34DecContext *r = avctx->priv_data;
  110. r->rv30 = 1;
  111. ff_rv34_decode_init(avctx);
  112. if(avctx->extradata_size < 2){
  113. av_log(avctx, AV_LOG_ERROR, "Extradata is too small.\n");
  114. return -1;
  115. }
  116. r->rpr = (avctx->extradata[1] & 7) >> 1;
  117. r->rpr = FFMIN(r->rpr + 1, 3);
  118. r->parse_slice_header = rv30_parse_slice_header;
  119. r->decode_intra_types = rv30_decode_intra_types;
  120. r->decode_mb_info = rv30_decode_mb_info;
  121. r->luma_dc_quant_i = rv30_luma_dc_quant;
  122. r->luma_dc_quant_p = rv30_luma_dc_quant;
  123. return 0;
  124. }
  125. AVCodec rv30_decoder = {
  126. "rv30",
  127. CODEC_TYPE_VIDEO,
  128. CODEC_ID_RV30,
  129. sizeof(RV34DecContext),
  130. rv30_decode_init,
  131. NULL,
  132. ff_rv34_decode_end,
  133. ff_rv34_decode_frame,
  134. CODEC_CAP_DR1 | CODEC_CAP_DELAY,
  135. .long_name = NULL_IF_CONFIG_SMALL("RealVideo 3.0"),
  136. };