rv34.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * RV30/40 decoder common data declarations
  3. * Copyright (c) 2007 Mike Melanson, 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 libavcodec/rv34.h
  23. * RV30 and RV40 decoder common data declarations
  24. */
  25. #ifndef AVCODEC_RV34_H
  26. #define AVCODEC_RV34_H
  27. #include "avcodec.h"
  28. #include "dsputil.h"
  29. #include "mpegvideo.h"
  30. #include "h264pred.h"
  31. #define MB_TYPE_SEPARATE_DC 0x01000000
  32. #define IS_SEPARATE_DC(a) ((a) & MB_TYPE_SEPARATE_DC)
  33. /**
  34. * RV30 and RV40 Macroblock types
  35. */
  36. enum RV40BlockTypes{
  37. RV34_MB_TYPE_INTRA, ///< Intra macroblock
  38. RV34_MB_TYPE_INTRA16x16, ///< Intra macroblock with DCs in a separate 4x4 block
  39. RV34_MB_P_16x16, ///< P-frame macroblock, one motion frame
  40. RV34_MB_P_8x8, ///< P-frame macroblock, 8x8 motion compensation partitions
  41. RV34_MB_B_FORWARD, ///< B-frame macroblock, forward prediction
  42. RV34_MB_B_BACKWARD, ///< B-frame macroblock, backward prediction
  43. RV34_MB_SKIP, ///< Skipped block
  44. RV34_MB_B_DIRECT, ///< Bidirectionally predicted B-frame macroblock, no motion vectors
  45. RV34_MB_P_16x8, ///< P-frame macroblock, 16x8 motion compensation partitions
  46. RV34_MB_P_8x16, ///< P-frame macroblock, 8x16 motion compensation partitions
  47. RV34_MB_B_BIDIR, ///< Bidirectionally predicted B-frame macroblock, two motion vectors
  48. RV34_MB_P_MIX16x16, ///< P-frame macroblock with DCs in a separate 4x4 block, one motion vector
  49. RV34_MB_TYPES
  50. };
  51. /**
  52. * VLC tables used by the decoder
  53. *
  54. * Intra frame VLC sets do not contain some of those tables.
  55. */
  56. typedef struct RV34VLC{
  57. VLC cbppattern[2]; ///< VLCs used for pattern of coded block patterns decoding
  58. VLC cbp[2][4]; ///< VLCs used for coded block patterns decoding
  59. VLC first_pattern[4]; ///< VLCs used for decoding coefficients in the first subblock
  60. VLC second_pattern[2]; ///< VLCs used for decoding coefficients in the subblocks 2 and 3
  61. VLC third_pattern[2]; ///< VLCs used for decoding coefficients in the last subblock
  62. VLC coefficient; ///< VLCs used for decoding big coefficients
  63. }RV34VLC;
  64. /** essential slice information */
  65. typedef struct SliceInfo{
  66. int type; ///< slice type (intra, inter)
  67. int quant; ///< quantizer used for this slice
  68. int vlc_set; ///< VLCs used for this slice
  69. int start, end; ///< start and end macroblocks of the slice
  70. int width; ///< coded width
  71. int height; ///< coded height
  72. int pts; ///< frame timestamp
  73. }SliceInfo;
  74. /** decoder context */
  75. typedef struct RV34DecContext{
  76. MpegEncContext s;
  77. int8_t *intra_types_hist;///< old block types, used for prediction
  78. int8_t *intra_types; ///< block types
  79. const uint8_t *luma_dc_quant_i;///< luma subblock DC quantizer for intraframes
  80. const uint8_t *luma_dc_quant_p;///< luma subblock DC quantizer for interframes
  81. RV34VLC *cur_vlcs; ///< VLC set used for current frame decoding
  82. int bits; ///< slice size in bits
  83. H264PredContext h; ///< functions for 4x4 and 16x16 intra block prediction
  84. SliceInfo si; ///< current slice information
  85. int *mb_type; ///< internal macroblock types
  86. int block_type; ///< current block type
  87. int luma_vlc; ///< which VLC set will be used for decoding of luma blocks
  88. int chroma_vlc; ///< which VLC set will be used for decoding of chroma blocks
  89. int is16; ///< current block has additional 16x16 specific features or not
  90. int dmv[4][2]; ///< differential motion vectors for the current macroblock
  91. int rv30; ///< indicates which RV variasnt is currently decoded
  92. int rpr; ///< one field size in RV30 slice header
  93. int cur_pts, last_pts, next_pts;
  94. uint16_t *cbp_luma; ///< CBP values for luma subblocks
  95. uint8_t *cbp_chroma; ///< CBP values for chroma subblocks
  96. int *deblock_coefs; ///< deblock coefficients for each macroblock
  97. /** 8x8 block available flags (for MV prediction) */
  98. DECLARE_ALIGNED_8(uint32_t, avail_cache[3*4]);
  99. int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si);
  100. int (*decode_mb_info)(struct RV34DecContext *r);
  101. int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst);
  102. void (*loop_filter)(struct RV34DecContext *r, int row);
  103. }RV34DecContext;
  104. /**
  105. * common decoding functions
  106. */
  107. int ff_rv34_get_start_offset(GetBitContext *gb, int blocks);
  108. int ff_rv34_decode_init(AVCodecContext *avctx);
  109. int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size);
  110. int ff_rv34_decode_end(AVCodecContext *avctx);
  111. #endif /* AVCODEC_RV34_H */