libavcodec/svq1enc.h
65d5d586
 /*
  * SVQ1 encoder
  *
ea0931fb
  * This file is part of FFmpeg.
65d5d586
  *
ea0931fb
  * FFmpeg is free software; you can redistribute it and/or
65d5d586
  * 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.
  *
ea0931fb
  * FFmpeg is distributed in the hope that it will be useful,
65d5d586
  * 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
ea0931fb
  * License along with FFmpeg; if not, write to the Free Software
65d5d586
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_SVQ1ENC_H
 #define AVCODEC_SVQ1ENC_H
 
 #include <stdint.h>
 
 #include "libavutil/frame.h"
 #include "avcodec.h"
 #include "get_bits.h"
 #include "hpeldsp.h"
2d604443
 #include "me_cmp.h"
65d5d586
 #include "mpegvideo.h"
 #include "put_bits.h"
 
 typedef struct SVQ1EncContext {
     /* FIXME: Needed for motion estimation, should not be used for anything
      * else, the idea is to make the motion estimation eventually independent
      * of MpegEncContext, so this will be removed then. */
     MpegEncContext m;
     AVCodecContext *avctx;
2d604443
     MECmpContext mecc;
65d5d586
     HpelDSPContext hdsp;
     AVFrame *current_picture;
     AVFrame *last_picture;
     PutBitContext pb;
     GetBitContext gb;
 
56672aea
     /* Some compression statistics */
     enum AVPictureType pict_type;
     int quality;
 
65d5d586
     /* why ooh why this sick breadth first order,
      * everything is slower and more complex */
     PutBitContext reorder_pb[6];
 
     int frame_width;
     int frame_height;
 
     /* Y plane block dimensions */
     int y_block_width;
     int y_block_height;
 
     /* U & V plane (C planes) block dimensions */
     int c_block_width;
     int c_block_height;
 
d0682b5e
     DECLARE_ALIGNED(16, int16_t, encoded_block_levels)[6][7][256];
 
65d5d586
     uint16_t *mb_type;
     uint32_t *dummy;
     int16_t (*motion_val8[3])[2];
     int16_t (*motion_val16[3])[2];
 
     int64_t rd_total;
 
     uint8_t *scratchbuf;
 
4b6b1082
     int motion_est;
 
65d5d586
     int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
dad31083
                              intptr_t size);
65d5d586
 } SVQ1EncContext;
 
 void ff_svq1enc_init_ppc(SVQ1EncContext *c);
 void ff_svq1enc_init_x86(SVQ1EncContext *c);
 
 #endif /* AVCODEC_SVQ1ENC_H */