dnxhdenc.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * VC3/DNxHD encoder structure definitions and prototypes
  3. * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
  4. *
  5. * VC-3 encoder funded by the British Broadcasting Corporation
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #ifndef AVCODEC_DNXHDENC_H
  24. #define AVCODEC_DNXHDENC_H
  25. #include <stdint.h>
  26. #include "libavcodec/mpegvideo.h"
  27. #include "libavcodec/dnxhddata.h"
  28. typedef struct {
  29. uint16_t mb;
  30. int value;
  31. } RCCMPEntry;
  32. typedef struct {
  33. int ssd;
  34. int bits;
  35. } RCEntry;
  36. typedef struct DNXHDEncContext {
  37. MpegEncContext m; ///< Used for quantization dsp functions
  38. AVFrame frame;
  39. int cid;
  40. const CIDEntry *cid_table;
  41. uint8_t *msip; ///< Macroblock Scan Indexes Payload
  42. uint32_t *slice_size;
  43. struct DNXHDEncContext *thread[MAX_THREADS];
  44. unsigned dct_y_offset;
  45. unsigned dct_uv_offset;
  46. int interlaced;
  47. int cur_field;
  48. DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]);
  49. int (*qmatrix_c) [64];
  50. int (*qmatrix_l) [64];
  51. uint16_t (*qmatrix_l16)[2][64];
  52. uint16_t (*qmatrix_c16)[2][64];
  53. unsigned frame_bits;
  54. uint8_t *src[3];
  55. uint32_t *vlc_codes;
  56. uint8_t *vlc_bits;
  57. uint16_t *run_codes;
  58. uint8_t *run_bits;
  59. /** Rate control */
  60. unsigned slice_bits;
  61. unsigned qscale;
  62. unsigned lambda;
  63. unsigned thread_size;
  64. uint16_t *mb_bits;
  65. uint8_t *mb_qscale;
  66. RCCMPEntry *mb_cmp;
  67. RCEntry (*mb_rc)[8160];
  68. void (*get_pixels_8x4_sym)(DCTELEM */*align 16*/, const uint8_t *, int);
  69. } DNXHDEncContext;
  70. void ff_dnxhd_init_mmx(DNXHDEncContext *ctx);
  71. #endif /* AVCODEC_DNXHDENC_H */