libavcodec/vp8.h
32f3c541
 /*
bcf4568f
  * VP8 compatible video decoder
  *
  * Copyright (C) 2010 David Conrad
  * Copyright (C) 2010 Ronald S. Bultje
79793f83
  * Copyright (C) 2010 Fiona Glaser
951455c1
  * Copyright (C) 2012 Daniel Kang
bcf4568f
  *
  * 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_VP8_H
 #define AVCODEC_VP8_H
 
9a54c6f2
 #include <stdatomic.h>
 
759001c5
 #include "libavutil/buffer.h"
a8bb81a0
 #include "libavutil/thread.h"
759001c5
 
bcf4568f
 #include "h264pred.h"
759001c5
 #include "thread.h"
53c20f17
 #include "vp56.h"
 #include "vp8dsp.h"
 
bcf4568f
 #define VP8_MAX_QUANT 127
 
 enum dct_token {
     DCT_0,
     DCT_1,
     DCT_2,
     DCT_3,
     DCT_4,
     DCT_CAT1,
     DCT_CAT2,
     DCT_CAT3,
     DCT_CAT4,
     DCT_CAT5,
     DCT_CAT6,
     DCT_EOB,
 
     NUM_DCT_TOKENS
 };
 
 // used to signal 4x4 intra pred in luma MBs
 #define MODE_I4x4 4
 
 enum inter_mvmode {
     VP8_MVMODE_ZERO = MODE_I4x4 + 1,
     VP8_MVMODE_MV,
     VP8_MVMODE_SPLIT
 };
 
 enum inter_splitmvmode {
     VP8_SPLITMVMODE_16x8 = 0,    ///< 2 16x8 blocks (vertical)
     VP8_SPLITMVMODE_8x16,        ///< 2 8x16 blocks (horizontal)
     VP8_SPLITMVMODE_8x8,         ///< 2x2 blocks of 8x8px each
     VP8_SPLITMVMODE_4x4,         ///< 4x4 blocks of 4x4px each
     VP8_SPLITMVMODE_NONE,        ///< (only used in prediction) no split MVs
 };
 
e4cbf752
 typedef struct VP8FilterStrength {
bcf4568f
     uint8_t filter_level;
     uint8_t inner_limit;
     uint8_t inner_filter;
 } VP8FilterStrength;
 
e4cbf752
 typedef struct VP8Macroblock {
bcf4568f
     uint8_t skip;
53c20f17
     // TODO: make it possible to check for at least (i4x4 or split_mv)
bcf4568f
     // in one op. are others needed?
     uint8_t mode;
     uint8_t ref_frame;
     uint8_t partitioning;
17343e39
     uint8_t chroma_pred_mode;
     uint8_t segment;
     uint8_t intra4x4_pred_mode_mb[16];
a6ac4fcc
     DECLARE_ALIGNED(4, uint8_t, intra4x4_pred_mode_top)[4];
bcf4568f
     VP56mv mv;
     VP56mv bmv[16];
 } VP8Macroblock;
 
fed92adb
 typedef struct VP8intmv {
     int x;
     int y;
 } VP8intmv;
 
 typedef struct VP8mvbounds {
     VP8intmv mv_min;
     VP8intmv mv_max;
 } VP8mvbounds;
 
e4cbf752
 typedef struct VP8ThreadData {
88bd7fdc
     DECLARE_ALIGNED(16, int16_t, block)[6][4][16];
     DECLARE_ALIGNED(16, int16_t, block_dc)[16];
951455c1
     /**
      * This is the index plus one of the last non-zero coeff
      * for each of the blocks in the current macroblock.
      * So, 0 -> no coeffs
      *     1 -> dc-only (special transform)
      *     2+-> full transform
      */
     DECLARE_ALIGNED(16, uint8_t, non_zero_count_cache)[6][4];
cf5781fa
     /**
      * For coeff decode, we need to know whether the above block had non-zero
      * coefficients. This means for each macroblock, we need data for 4 luma
      * blocks, 2 u blocks, 2 v blocks, and the luma dc block, for a total of 9
      * per macroblock. We keep the last row in top_nnz.
      */
     DECLARE_ALIGNED(8, uint8_t, left_nnz)[9];
     int thread_nr;
 #if HAVE_THREADS
     pthread_mutex_t lock;
53c20f17
     pthread_cond_t cond;
cf5781fa
 #endif
9a54c6f2
     atomic_int thread_mb_pos; // (mb_y << 16) | (mb_x & 0xFFFF)
     atomic_int wait_mb_pos; // What the current thread is waiting on.
e46ad30a
 
 #define EDGE_EMU_LINESIZE 32
     DECLARE_ALIGNED(16, uint8_t, edge_emu_buffer)[21 * EDGE_EMU_LINESIZE];
951455c1
     VP8FilterStrength *filter_strength;
fed92adb
     VP8mvbounds mv_bounds;
951455c1
 } VP8ThreadData;
 
759001c5
 typedef struct VP8Frame {
     ThreadFrame tf;
     AVBufferRef *seg_map;
9f00fa53
 
     AVBufferRef *hwaccel_priv_buf;
     void *hwaccel_picture_private;
759001c5
 } VP8Frame;
 
951455c1
 #define MAX_THREADS 8
e4cbf752
 typedef struct VP8Context {
951455c1
     VP8ThreadData *thread_data;
bcf4568f
     AVCodecContext *avctx;
9f00fa53
     enum AVPixelFormat pix_fmt;
     int actually_webp;
 
759001c5
     VP8Frame *framep[4];
     VP8Frame *next_framep[4];
     VP8Frame *curframe;
     VP8Frame *prev_frame;
bcf4568f
 
1eeca886
     uint16_t mb_width;   /* number of horizontal MB */
     uint16_t mb_height;  /* number of vertical MB */
87c6c786
     ptrdiff_t linesize;
     ptrdiff_t uvlinesize;
bcf4568f
 
1eeca886
     uint8_t keyframe;
     uint8_t deblock_filter;
     uint8_t mbskip_enabled;
     uint8_t profile;
fed92adb
     VP8mvbounds mv_bounds;
bcf4568f
 
1eeca886
     int8_t sign_bias[4]; ///< one state [0, 1] per ref frame type
bcf4568f
     int ref_count[3];
 
     /**
      * Base parameters for segmentation, i.e. per-macroblock parameters.
      * These must be kept unchanged even if segmentation is not used for
      * a frame, since the values persist between interframes.
      */
     struct {
1eeca886
         uint8_t enabled;
         uint8_t absolute_vals;
         uint8_t update_map;
9f00fa53
         uint8_t update_feature_data;
bcf4568f
         int8_t base_quant[4];
         int8_t filter_level[4];     ///< base loop filter level
     } segmentation;
 
1eeca886
     struct {
         uint8_t simple;
         uint8_t level;
         uint8_t sharpness;
     } filter;
 
     VP8Macroblock *macroblocks;
 
     uint8_t *intra4x4_pred_mode_top;
     uint8_t intra4x4_pred_mode_left[4];
 
bcf4568f
     /**
      * Macroblocks can have one of 4 different quants in a frame when
      * segmentation is enabled.
      * If segmentation is disabled, only the first segment's values are used.
      */
     struct {
         // [0] - DC qmul  [1] - AC qmul
         int16_t luma_qmul[2];
         int16_t luma_dc_qmul[2];    ///< luma dc-only block quant
         int16_t chroma_qmul[2];
     } qmat[4];
 
9f00fa53
     // Raw quantisation values, which may be needed by hwaccel decode.
     struct {
         int yac_qi;
         int ydc_delta;
         int y2dc_delta;
         int y2ac_delta;
         int uvdc_delta;
         int uvac_delta;
     } quant;
 
bcf4568f
     struct {
1eeca886
         uint8_t enabled;    ///< whether each mb can have a different strength based on mode/ref
9f00fa53
         uint8_t update;
bcf4568f
 
         /**
          * filter strength adjustment for the following macroblock modes:
          * [0-3] - i16x16 (always zero)
          * [4]   - i4x4
          * [5]   - zero mv
          * [6]   - inter modes except for zero or split mv
          * [7]   - split mv
          *  i16x16 modes never have any adjustment
          */
53c20f17
         int8_t mode[VP8_MVMODE_SPLIT + 1];
bcf4568f
 
         /**
          * filter strength adjustment for macroblocks that reference:
          * [0] - intra / VP56_FRAME_CURRENT
          * [1] - VP56_FRAME_PREVIOUS
          * [2] - VP56_FRAME_GOLDEN
          * [3] - altref / VP56_FRAME_GOLDEN2
          */
         int8_t ref[4];
     } lf_delta;
 
53c20f17
     uint8_t (*top_border)[16 + 8 + 8];
1eeca886
     uint8_t (*top_nnz)[9];
 
     VP56RangeCoder c;   ///< header context, includes mb modes and motion vectors
 
9f00fa53
     /* This contains the entropy coder state at the end of the header
      * block, in the form specified by the standard.  For use by
      * hwaccels, so that a hardware decoder has the information to
      * start decoding at the macroblock layer.
      */
     struct {
         const uint8_t *input;
         uint32_t range;
         uint32_t value;
         int bit_count;
     } coder_state_at_header_end;
 
     int header_partition_size;
 
1eeca886
     /**
bcf4568f
      * These are all of the updatable probabilities for binary decisions.
41ed7ab4
      * They are only implicitly reset on keyframes, making it quite likely
bcf4568f
      * for an interframe to desync if a prior frame's header was corrupt
      * or missing outright!
      */
     struct {
         uint8_t segmentid[3];
         uint8_t mbskip;
         uint8_t intra;
         uint8_t last;
         uint8_t golden;
         uint8_t pred16x16[4];
         uint8_t pred8x8c[3];
53c20f17
         uint8_t token[4][16][3][NUM_DCT_TOKENS - 1];
bcf4568f
         uint8_t mvc[2][19];
89f2f5db
         uint8_t scan[16];
bcf4568f
     } prob[2];
1eeca886
 
     VP8Macroblock *macroblocks_base;
     int invisible;
     int update_last;    ///< update VP56_FRAME_PREVIOUS with the current one
     int update_golden;  ///< VP56_FRAME_NONE if not updated, or which frame to copy if so
     int update_altref;
 
     /**
      * If this flag is not set, all the probability updates
      * are discarded after this frame is decoded.
      */
     int update_probabilities;
 
     /**
      * All coefficients are contained in separate arith coding contexts.
      * There can be 1, 2, 4, or 8 of these after the header context.
      */
     int num_coeff_partitions;
     VP56RangeCoder coeff_partition[8];
9f00fa53
     int coeff_partition_size[8];
8c53d39e
     VideoDSPContext vdsp;
1eeca886
     VP8DSPContext vp8dsp;
     H264PredContext hpc;
     vp8_mc_func put_pixels_tab[3][3][3];
759001c5
     VP8Frame frames[5];
ce42a048
 
65875a8b
     uint8_t colorspace; ///< 0 is the only value allowed (meaning bt601)
     uint8_t fullrange;  ///< whether we can skip clamping in dsp functions
 
951455c1
     int num_jobs;
     /**
      * This describes the macroblock memory layout.
      * 0 -> Only width+height*2+1 macroblocks allocated (frame/single thread).
41ed7ab4
      * 1 -> Macroblocks for entire frame allocated (sliced thread).
951455c1
      */
     int mb_layout;
89f2f5db
 
7b5ff7d5
     int (*decode_mb_row_no_filter)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr);
89f2f5db
     void (*filter_mb_row)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr);
 
     int vp7;
 
     /**
      * Fade bit present in bitstream (VP7)
      */
     int fade_present;
 
     /**
      * Interframe DC prediction (VP7)
      * [0] VP56_FRAME_PREVIOUS
      * [1] VP56_FRAME_GOLDEN
      */
     uint16_t inter_dc_pred[2][2];
 
     /**
      * Macroblock features (VP7)
      */
     uint8_t feature_enabled[4];
     uint8_t feature_present_prob[4];
     uint8_t feature_index_prob[4][3];
     uint8_t feature_value[4][4];
bcf4568f
 } VP8Context;
 
c4bfa098
 int ff_vp8_decode_init(AVCodecContext *avctx);
 
 int ff_vp8_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
                         AVPacket *avpkt);
 
 int ff_vp8_decode_free(AVCodecContext *avctx);
 
153382e1
 #endif /* AVCODEC_VP8_H */