libavcodec/dnxhdenc.h
09f6fc6b
 /*
  * VC3/DNxHD encoder structure definitions and prototypes
  * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
  *
  * VC-3 encoder funded by the British Broadcasting Corporation
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_DNXHDENC_H
 #define AVCODEC_DNXHDENC_H
 
 #include <stdint.h>
dc25d79f
 
 #include "mpegvideo.h"
 #include "dnxhddata.h"
09f6fc6b
 
e4cbf752
 typedef struct RCCMPEntry {
09f6fc6b
     uint16_t mb;
     int value;
 } RCCMPEntry;
 
e4cbf752
 typedef struct RCEntry {
09f6fc6b
     int ssd;
     int bits;
 } RCEntry;
 
 typedef struct DNXHDEncContext {
d9699ea8
     AVClass *class;
09f6fc6b
     MpegEncContext m; ///< Used for quantization dsp functions
 
     int cid;
     const CIDEntry *cid_table;
     uint8_t *msip; ///< Macroblock Scan Indexes Payload
     uint32_t *slice_size;
2a1294b9
     uint32_t *slice_offs;
09f6fc6b
 
     struct DNXHDEncContext *thread[MAX_THREADS];
 
5ab21439
     // Because our samples are either 8 or 16 bits for 8-bit and 10-bit
     // encoding respectively, these refer either to bytes or to two-byte words.
09f6fc6b
     unsigned dct_y_offset;
     unsigned dct_uv_offset;
5ab21439
     unsigned block_width_l2;
 
09f6fc6b
     int interlaced;
     int cur_field;
 
176e1762
     int nitris_compat;
     unsigned min_padding;
 
88bd7fdc
     DECLARE_ALIGNED(16, int16_t, blocks)[8][64];
09f6fc6b
 
     int      (*qmatrix_c)     [64];
     int      (*qmatrix_l)     [64];
     uint16_t (*qmatrix_l16)[2][64];
     uint16_t (*qmatrix_c16)[2][64];
 
     unsigned frame_bits;
     uint8_t *src[3];
 
     uint32_t *vlc_codes;
     uint8_t  *vlc_bits;
     uint16_t *run_codes;
     uint8_t  *run_bits;
 
     /** Rate control */
     unsigned slice_bits;
     unsigned qscale;
     unsigned lambda;
 
     uint16_t *mb_bits;
     uint8_t  *mb_qscale;
 
     RCCMPEntry *mb_cmp;
     RCEntry   (*mb_rc)[8160];
193ce3ab
 
88bd7fdc
     void (*get_pixels_8x4_sym)(int16_t * /*align 16*/, const uint8_t *, int);
09f6fc6b
 } DNXHDEncContext;
 
26ce9aec
 void ff_dnxhdenc_init_x86(DNXHDEncContext *ctx);
09f6fc6b
 
 #endif /* AVCODEC_DNXHDENC_H */