pixel.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:3k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * pixel.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  * $Id: pixel.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _PIXEL_H
  24. #define _PIXEL_H 1
  25. typedef int  (*x264_pixel_cmp_t) ( uint8_t *, int, uint8_t *, int );
  26. typedef int  (*x264_pixel_cmp_pde_t) ( uint8_t *, int, uint8_t *, int, int );
  27. enum
  28. {
  29.     PIXEL_16x16 = 0,
  30.     PIXEL_16x8  = 1,
  31.     PIXEL_8x16  = 2,
  32.     PIXEL_8x8   = 3,
  33.     PIXEL_8x4   = 4,
  34.     PIXEL_4x8   = 5,
  35.     PIXEL_4x4   = 6,
  36.     PIXEL_4x2   = 7,
  37.     PIXEL_2x4   = 8,
  38.     PIXEL_2x2   = 9,
  39. };
  40. static const struct {
  41.     int w;
  42.     int h;
  43. } x264_pixel_size[7] = {
  44.     { 16, 16 },
  45.     { 16,  8 }, {  8, 16 },
  46.     {  8,  8 },
  47.     {  8,  4 }, {  4,  8 },
  48.     {  4,  4 }
  49. };
  50. static const int x264_size2pixel[5][5] = {
  51.     { 0, },
  52.     { 0, PIXEL_4x4, PIXEL_8x4, 0, 0 },
  53.     { 0, PIXEL_4x8, PIXEL_8x8, 0, PIXEL_16x8 },
  54.     { 0, },
  55.     { 0, 0,        PIXEL_8x16, 0, PIXEL_16x16 }
  56. };
  57. typedef struct
  58. {
  59.     x264_pixel_cmp_t  sad[7];
  60.     x264_pixel_cmp_t  ssd[7];
  61.     x264_pixel_cmp_t satd[7];
  62.     x264_pixel_cmp_t sa8d[4];
  63.     x264_pixel_cmp_t mbcmp[7]; /* either satd or sad for subpel refine and mode decision */
  64.     /* partial distortion elimination:
  65.      * terminate early if partial score is worse than a threshold.
  66.      * may be NULL, in which case just use sad instead. */
  67.     x264_pixel_cmp_pde_t sad_pde[7];
  68. } x264_pixel_function_t;
  69. void x264_pixel_init( int cpu, x264_pixel_function_t *pixf );
  70. int64_t x264_pixel_ssd_wxh( x264_pixel_function_t *pf, uint8_t *pix1, int i_pix1, uint8_t *pix2, int i_pix2, int i_width, int i_height );
  71. #endif