Lines Matching defs:HYuvContext
55 typedef struct HYuvContext { struct
56 AVClass *class;
57 AVCodecContext *avctx;
58 Predictor predictor;
59 GetBitContext gb;
60 PutBitContext pb;
61 int interlaced;
62 int decorrelate;
63 int bitstream_bpp;
64 int version;
65 int yuy2; //use yuy2 instead of 422P
66 int bgr32; //use bgr32 instead of bgr24
67 int bps;
68 int n; // 1<<bps
69 int vlc_n; // number of vlc codes (FFMIN(1<<bps, MAX_VLC_N))
70 int alpha;
71 int chroma;
95 } HYuvContext; argument