libavcodec/proresdec.h
bebaf4ea
 /*
  * Copyright (c) 2010-2011 Maxim Poliakovski
  * Copyright (c) 2010-2011 Elvis Presley
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
58bc6595
  * 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.
bebaf4ea
  *
  * 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
58bc6595
  * Lesser General Public License for more details.
bebaf4ea
  *
58bc6595
  * You should have received a copy of the GNU Lesser General Public
bebaf4ea
  * 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_PRORESDEC_H
 #define AVCODEC_PRORESDEC_H
 
 #include "dsputil.h"
 #include "proresdsp.h"
 
 typedef struct {
     const uint8_t *data;
     unsigned mb_x;
     unsigned mb_y;
     unsigned mb_count;
     unsigned data_size;
8e6511c1
     int ret;
bebaf4ea
 } SliceContext;
 
 typedef struct {
     DSPContext dsp;
     ProresDSPContext prodsp;
80e9e63c
     AVFrame *frame;
bebaf4ea
     int frame_type;              ///< 0 = progressive, 1 = tff, 2 = bff
     uint8_t qmat_luma[64];
     uint8_t qmat_chroma[64];
     SliceContext *slices;
     int slice_count;             ///< number of slices in the current picture
     unsigned mb_width;           ///< width of the current picture in mb
     unsigned mb_height;          ///< height of the current picture in mb
     uint8_t progressive_scan[64];
     uint8_t interlaced_scan[64];
     const uint8_t *scan;
     int first_field;
d13fa0e9
     int alpha_info;
bebaf4ea
 } ProresContext;
 
 #endif /* AVCODEC_PRORESDEC_H */