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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * frame.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  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., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef X264_FRAME_H
  24. #define X264_FRAME_H
  25. /* number of pixels past the edge of the frame, for motion estimation/compensation */
  26. #define PADH 32
  27. #define PADV 32
  28. typedef struct
  29. {
  30.     /* */
  31.     int     i_poc;
  32.     int     i_type;
  33.     int     i_qpplus1;
  34.     int64_t i_pts;
  35.     int     i_frame;    /* Presentation frame number */
  36.     int     i_frame_num; /* Coded frame number */
  37.     int     b_kept_as_ref;
  38.     float   f_qp_avg_rc; /* QPs as decided by ratecontrol */
  39.     float   f_qp_avg_aq; /* QPs as decided by AQ in addition to ratecontrol */
  40.     /* YUV buffer */
  41.     int     i_plane;
  42.     int     i_stride[3];
  43.     int     i_width[3];
  44.     int     i_lines[3];
  45.     int     i_stride_lowres;
  46.     int     i_width_lowres;
  47.     int     i_lines_lowres;
  48.     uint8_t *plane[3];
  49.     uint8_t *filtered[4]; /* plane[0], H, V, HV */
  50.     uint8_t *lowres[4]; /* half-size copy of input frame: Orig, H, V, HV */
  51.     uint16_t *integral;
  52.     /* for unrestricted mv we allocate more data than needed
  53.      * allocated data are stored in buffer */
  54.     uint8_t *buffer[4];
  55.     uint8_t *buffer_lowres[4];
  56.     /* motion data */
  57.     int8_t  *mb_type;
  58.     int16_t (*mv[2])[2];
  59.     int8_t  *ref[2];
  60.     int     i_ref[2];
  61.     int     ref_poc[2][16];
  62.     int     inv_ref_poc[16]; // inverse values (list0 only) to avoid divisions in MB encoding
  63.     /* for adaptive B-frame decision.
  64.      * contains the SATD cost of the lowres frame encoded in various modes
  65.      * FIXME: how big an array do we need? */
  66.     int     i_cost_est[X264_BFRAME_MAX+2][X264_BFRAME_MAX+2];
  67.     int     i_satd; // the i_cost_est of the selected frametype
  68.     int     i_intra_mbs[X264_BFRAME_MAX+2];
  69.     int     *i_row_satds[X264_BFRAME_MAX+2][X264_BFRAME_MAX+2];
  70.     int     *i_row_satd;
  71.     int     *i_row_bits;
  72.     int     *i_row_qp;
  73.     /* threading */
  74.     int     i_lines_completed; /* in pixels */
  75.     int     i_reference_count; /* number of threads using this frame (not necessarily the number of pointers) */
  76.     x264_pthread_mutex_t mutex;
  77.     x264_pthread_cond_t  cv;
  78. } x264_frame_t;
  79. typedef void (*x264_deblock_inter_t)( uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0 );
  80. typedef void (*x264_deblock_intra_t)( uint8_t *pix, int stride, int alpha, int beta );
  81. typedef struct
  82. {
  83.     x264_deblock_inter_t deblock_v_luma;
  84.     x264_deblock_inter_t deblock_h_luma;
  85.     x264_deblock_inter_t deblock_v_chroma;
  86.     x264_deblock_inter_t deblock_h_chroma;
  87.     x264_deblock_intra_t deblock_v_luma_intra;
  88.     x264_deblock_intra_t deblock_h_luma_intra;
  89.     x264_deblock_intra_t deblock_v_chroma_intra;
  90.     x264_deblock_intra_t deblock_h_chroma_intra;
  91. } x264_deblock_function_t;
  92. x264_frame_t *x264_frame_new( x264_t *h );
  93. void          x264_frame_delete( x264_frame_t *frame );
  94. int           x264_frame_copy_picture( x264_t *h, x264_frame_t *dst, x264_picture_t *src );
  95. void          x264_frame_expand_border( x264_t *h, x264_frame_t *frame, int mb_y, int b_end );
  96. void          x264_frame_expand_border_filtered( x264_t *h, x264_frame_t *frame, int mb_y, int b_end );
  97. void          x264_frame_expand_border_lowres( x264_frame_t *frame );
  98. void          x264_frame_expand_border_mod16( x264_t *h, x264_frame_t *frame );
  99. void          x264_frame_deblock( x264_t *h );
  100. void          x264_frame_deblock_row( x264_t *h, int mb_y );
  101. void          x264_frame_filter( x264_t *h, x264_frame_t *frame, int mb_y, int b_end );
  102. void          x264_frame_init_lowres( x264_t *h, x264_frame_t *frame );
  103. void          x264_deblock_init( int cpu, x264_deblock_function_t *pf );
  104. void          x264_frame_cond_broadcast( x264_frame_t *frame, int i_lines_completed );
  105. void          x264_frame_cond_wait( x264_frame_t *frame, int i_lines_completed );
  106. void          x264_frame_push( x264_frame_t **list, x264_frame_t *frame );
  107. x264_frame_t *x264_frame_pop( x264_frame_t **list );
  108. void          x264_frame_unshift( x264_frame_t **list, x264_frame_t *frame );
  109. x264_frame_t *x264_frame_shift( x264_frame_t **list );
  110. void          x264_frame_push_unused( x264_t *h, x264_frame_t *frame );
  111. x264_frame_t *x264_frame_pop_unused( x264_t *h );
  112. void          x264_frame_sort( x264_frame_t **list, int b_dts );
  113. #define x264_frame_sort_dts(list) x264_frame_sort(list, 1)
  114. #define x264_frame_sort_pts(list) x264_frame_sort(list, 0)
  115. #endif