Home | History | Annotate | Download | only in decoder
      1 /******************************************************************************
      2 *
      3 * Copyright (C) 2012 Ittiam Systems Pvt Ltd, Bangalore
      4 *
      5 * Licensed under the Apache License, Version 2.0 (the "License");
      6 * you may not use this file except in compliance with the License.
      7 * You may obtain a copy of the License at:
      8 *
      9 * http://www.apache.org/licenses/LICENSE-2.0
     10 *
     11 * Unless required by applicable law or agreed to in writing, software
     12 * distributed under the License is distributed on an "AS IS" BASIS,
     13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14 * See the License for the specific language governing permissions and
     15 * limitations under the License.
     16 *
     17 ******************************************************************************/
     18 /**
     19 *******************************************************************************
     20 * @file
     21 *  ihevcd_itrans_recon.h
     22 *
     23 * @brief
     24 *  Header for itrans recon dc functions
     25 *
     26 * @author
     27 *  Naveen
     28 *
     29 * @par List of Functions:
     30 *
     31 * @remarks
     32 *  None
     33 *
     34 *******************************************************************************
     35 */
     36 
     37 #ifndef _IHEVCD_ITRANS_RECON_DC_H_
     38 #define _IHEVCD_ITRANS_RECON_DC_H_
     39 
     40 typedef void ihevcd_itrans_recon_dc_luma_ft(UWORD8 *pu1_pred,
     41                                             UWORD8 *pu1_dst,
     42                                             WORD32 pred_strd,
     43                                             WORD32 dst_strd,
     44                                             WORD32 log2_trans_size,
     45                                             WORD16 i2_coeff_value);
     46 typedef void ihevcd_itrans_recon_dc_chroma_ft(UWORD8 *pu1_pred,
     47                                               UWORD8 *pu1_dst,
     48                                               WORD32 pred_strd,
     49                                               WORD32 dst_strd,
     50                                               WORD32 log2_trans_size,
     51                                               WORD16 i2_coeff_value);
     52 
     53 /* C function declarations */
     54 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma;
     55 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma;
     56 
     57 /* A9Q function declarations */
     58 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma_a9q;
     59 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma_a9q;
     60 
     61 /* A9A function declarations */
     62 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma_a9a;
     63 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma_a9a;
     64 
     65 /* SSSE3 function declarations */
     66 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma_ssse3;
     67 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma_ssse3;
     68 
     69 /* SSS4.2 function declarations */
     70 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma_sse42;
     71 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma_sse42;
     72 
     73 /* armv8 function declarations */
     74 ihevcd_itrans_recon_dc_luma_ft ihevcd_itrans_recon_dc_luma_av8;
     75 ihevcd_itrans_recon_dc_chroma_ft ihevcd_itrans_recon_dc_chroma_av8;
     76 
     77 #endif /* _IHEVCD_ITRANS_RECON_DC_H_ */
     78