dnxhdenc.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 "mpegvideo.h"
  27. #include "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. AVClass *class;
  38. MpegEncContext m; ///< Used for quantization dsp functions
  39. AVFrame frame;
  40. int cid;
  41. const CIDEntry *cid_table;
  42. uint8_t *msip; ///< Macroblock Scan Indexes Payload
  43. uint32_t *slice_size;
  44. uint32_t *slice_offs;
  45. struct DNXHDEncContext *thread[MAX_THREADS];
  46. unsigned dct_y_offset;
  47. unsigned dct_uv_offset;
  48. int interlaced;
  49. int cur_field;
  50. int nitris_compat;
  51. unsigned min_padding;
  52. DECLARE_ALIGNED(16, DCTELEM, blocks)[8][64];
  53. int (*qmatrix_c) [64];
  54. int (*qmatrix_l) [64];
  55. uint16_t (*qmatrix_l16)[2][64];
  56. uint16_t (*qmatrix_c16)[2][64];
  57. unsigned frame_bits;
  58. uint8_t *src[3];
  59. uint32_t *vlc_codes;
  60. uint8_t *vlc_bits;
  61. uint16_t *run_codes;
  62. uint8_t *run_bits;
  63. /** Rate control */
  64. unsigned slice_bits;
  65. unsigned qscale;
  66. unsigned lambda;
  67. unsigned thread_size;
  68. uint16_t *mb_bits;
  69. uint8_t *mb_qscale;
  70. RCCMPEntry *mb_cmp;
  71. RCEntry (*mb_rc)[8160];
  72. void (*get_pixels_8x4_sym)(DCTELEM */*align 16*/, const uint8_t *, int);
  73. } DNXHDEncContext;
  74. void ff_dnxhd_init_mmx(DNXHDEncContext *ctx);
  75. #endif /* AVCODEC_DNXHDENC_H */