• Dmitry Kovalev's avatar
    Moving from ss_txfrm_size to tx_size. · afd9bd3e
    Dmitry Kovalev authored
    Updating foreach_transformed_block_visitor and corresponding functions
    to accept tx_size instead of ss_txfrm_size. List of functions per file:
    
    vp9_decodframe.c
      decode_block
      decode_block_intra
    
    vp9_detokenize.c
      decode_block
    
    vp9_encodemb.c
      optimize_block
      vp9_xform_quant
      vp9_encode_block_intra
    
    vp9_rdopt.c
      dist_block
      rate_block
      block_yrd_txfm
    
    vp9_tokenize.c
      set_entropy_context_b
      tokenize_b
      is_skippable
    
    Change-Id: I351bf563eb36cf34db71c3f06b9bbc9a61b55b73
    afd9bd3e
vp9_encodeintra.h 1015 B
/*
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */
#ifndef VP9_ENCODER_VP9_ENCODEINTRA_H_
#define VP9_ENCODER_VP9_ENCODEINTRA_H_
#include "vp9/encoder/vp9_onyx_int.h"
int vp9_encode_intra(VP9_COMP *cpi, MACROBLOCK *x, int use_16x16_pred);
void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE_TYPE bsize,
                            TX_SIZE tx_size, void *arg);
void vp9_encode_intra_block_y(VP9_COMMON *const cm, MACROBLOCK *mb,
                              BLOCK_SIZE_TYPE bs);
void vp9_encode_intra_block_uv(VP9_COMMON *const cm, MACROBLOCK *mb,
                               BLOCK_SIZE_TYPE bs);
#endif  // VP9_ENCODER_VP9_ENCODEINTRA_H_