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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * common.c: h264 library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  * $Id: common.c,v 1.1 2004/06/03 19:27:06 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. #include <stdio.h>
  24. #include <string.h>
  25. #include <stdarg.h>
  26. #ifdef HAVE_MALLOC_H
  27. #include <malloc.h>
  28. #endif
  29. #include "common.h"
  30. #include "cpu.h"
  31. static void x264_log_default( void *, int, const char *, va_list );
  32. /****************************************************************************
  33.  * x264_param_default:
  34.  ****************************************************************************/
  35. void    x264_param_default( x264_param_t *param )
  36. {
  37.     /* */
  38.     memset( param, 0, sizeof( x264_param_t ) );
  39.     /* CPU autodetect */
  40.     param->cpu = x264_cpu_detect();
  41.     param->i_threads = 1;
  42.     /* Video properties */
  43.     param->i_csp           = X264_CSP_I420;
  44.     param->i_width         = 0;
  45.     param->i_height        = 0;
  46.     param->vui.i_sar_width = 0;
  47.     param->vui.i_sar_height= 0;
  48.     param->vui.i_overscan  = 0;  /* undef */
  49.     param->vui.i_vidformat = 5;  /* undef */
  50.     param->vui.b_fullrange = 0;  /* off */
  51.     param->vui.i_colorprim = 2;  /* undef */
  52.     param->vui.i_transfer  = 2;  /* undef */
  53.     param->vui.i_colmatrix = 2;  /* undef */
  54.     param->vui.i_chroma_loc= 0;  /* left center */
  55.     param->i_fps_num       = 25;
  56.     param->i_fps_den       = 1;
  57.     param->i_level_idc     = 51; /* as close to "unrestricted" as we can get */
  58.     /* Encoder parameters */
  59.     param->i_frame_reference = 1;
  60.     param->i_keyint_max = 250;
  61.     param->i_keyint_min = 25;
  62.     param->i_bframe = 0;
  63.     param->i_scenecut_threshold = 40;
  64.     param->b_bframe_adaptive = 1;
  65.     param->i_bframe_bias = 0;
  66.     param->b_bframe_pyramid = 0;
  67.     param->b_deblocking_filter = 1;
  68.     param->i_deblocking_filter_alphac0 = 0;
  69.     param->i_deblocking_filter_beta = 0;
  70.     param->b_cabac = 1;
  71.     param->i_cabac_init_idc = 0;
  72.     param->rc.b_cbr = 0;
  73.     param->rc.i_bitrate = 0;
  74.     param->rc.f_rate_tolerance = 1.0;
  75.     param->rc.i_vbv_max_bitrate = 0;
  76.     param->rc.i_vbv_buffer_size = 0;
  77.     param->rc.f_vbv_buffer_init = 0.9;
  78.     param->rc.i_qp_constant = 30;
  79.     param->rc.i_rf_constant = 0;
  80.     param->rc.i_qp_min = 10;
  81.     param->rc.i_qp_max = 51;
  82.     param->rc.i_qp_step = 4;
  83.     param->rc.f_ip_factor = 1.4;
  84.     param->rc.f_pb_factor = 1.3;
  85.     param->rc.b_stat_write = 0;
  86.     param->rc.psz_stat_out = "x264_2pass.log";
  87.     param->rc.b_stat_read = 0;
  88.     param->rc.psz_stat_in = "x264_2pass.log";
  89.     param->rc.psz_rc_eq = "blurCplx^(1-qComp)";
  90.     param->rc.f_qcompress = 0.6;
  91.     param->rc.f_qblur = 0.5;
  92.     param->rc.f_complexity_blur = 20;
  93.     param->rc.i_zones = 0;
  94.     /* Log */
  95.     param->pf_log = x264_log_default;
  96.     param->p_log_private = NULL;
  97.     param->i_log_level = X264_LOG_INFO;
  98.     /* */
  99.     param->analyse.intra = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8;
  100.     param->analyse.inter = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8 | X264_ANALYSE_PSUB16x16 | X264_ANALYSE_BSUB16x16;
  101.     param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
  102.     param->analyse.i_me_method = X264_ME_HEX;
  103.     param->analyse.i_me_range = 16;
  104.     param->analyse.i_subpel_refine = 5;
  105.     param->analyse.b_chroma_me = 1;
  106.     param->analyse.i_mv_range = -1; // set from level_idc
  107.     param->analyse.i_chroma_qp_offset = 0;
  108.     param->analyse.b_fast_pskip = 1;
  109.     param->analyse.b_psnr = 1;
  110.     param->i_cqm_preset = X264_CQM_FLAT;
  111.     memset( param->cqm_4iy, 16, 16 );
  112.     memset( param->cqm_4ic, 16, 16 );
  113.     memset( param->cqm_4py, 16, 16 );
  114.     memset( param->cqm_4pc, 16, 16 );
  115.     memset( param->cqm_8iy, 16, 64 );
  116.     memset( param->cqm_8py, 16, 64 );
  117.     param->b_repeat_headers = 1;
  118.     param->b_aud = 0;
  119. }
  120. /****************************************************************************
  121.  * x264_log:
  122.  ****************************************************************************/
  123. void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... )
  124. {
  125.     if( i_level <= h->param.i_log_level )
  126.     {
  127.         va_list arg;
  128.         va_start( arg, psz_fmt );
  129.         h->param.pf_log( h->param.p_log_private, i_level, psz_fmt, arg );
  130.         va_end( arg );
  131.     }
  132. }
  133. static void x264_log_default( void *p_unused, int i_level, const char *psz_fmt, va_list arg )
  134. {
  135.     char *psz_prefix;
  136.     switch( i_level )
  137.     {
  138.         case X264_LOG_ERROR:
  139.             psz_prefix = "error";
  140.             break;
  141.         case X264_LOG_WARNING:
  142.             psz_prefix = "warning";
  143.             break;
  144.         case X264_LOG_INFO:
  145.             psz_prefix = "info";
  146.             break;
  147.         case X264_LOG_DEBUG:
  148.             psz_prefix = "debug";
  149.             break;
  150.         default:
  151.             psz_prefix = "unknown";
  152.             break;
  153.     }
  154.     fprintf( stderr, "x264 [%s]: ", psz_prefix );
  155.     vfprintf( stderr, psz_fmt, arg );
  156. }
  157. /****************************************************************************
  158.  * x264_picture_alloc:
  159.  ****************************************************************************/
  160. void x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height )
  161. {
  162.     pic->i_type = X264_TYPE_AUTO;
  163.     pic->i_qpplus1 = 0;
  164.     pic->img.i_csp = i_csp;
  165.     switch( i_csp & X264_CSP_MASK )
  166.     {
  167.         case X264_CSP_I420:
  168.         case X264_CSP_YV12:
  169.             pic->img.i_plane = 3;
  170.             pic->img.plane[0] = x264_malloc( 3 * i_width * i_height / 2 );
  171.             pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
  172.             pic->img.plane[2] = pic->img.plane[1] + i_width * i_height / 4;
  173.             pic->img.i_stride[0] = i_width;
  174.             pic->img.i_stride[1] = i_width / 2;
  175.             pic->img.i_stride[2] = i_width / 2;
  176.             break;
  177.         case X264_CSP_I422:
  178.             pic->img.i_plane = 3;
  179.             pic->img.plane[0] = x264_malloc( 2 * i_width * i_height );
  180.             pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
  181.             pic->img.plane[2] = pic->img.plane[1] + i_width * i_height / 2;
  182.             pic->img.i_stride[0] = i_width;
  183.             pic->img.i_stride[1] = i_width / 2;
  184.             pic->img.i_stride[2] = i_width / 2;
  185.             break;
  186.         case X264_CSP_I444:
  187.             pic->img.i_plane = 3;
  188.             pic->img.plane[0] = x264_malloc( 3 * i_width * i_height );
  189.             pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
  190.             pic->img.plane[2] = pic->img.plane[1] + i_width * i_height;
  191.             pic->img.i_stride[0] = i_width;
  192.             pic->img.i_stride[1] = i_width;
  193.             pic->img.i_stride[2] = i_width;
  194.             break;
  195.         case X264_CSP_YUYV:
  196.             pic->img.i_plane = 1;
  197.             pic->img.plane[0] = x264_malloc( 2 * i_width * i_height );
  198.             pic->img.i_stride[0] = 2 * i_width;
  199.             break;
  200.         case X264_CSP_RGB:
  201.         case X264_CSP_BGR:
  202.             pic->img.i_plane = 1;
  203.             pic->img.plane[0] = x264_malloc( 3 * i_width * i_height );
  204.             pic->img.i_stride[0] = 3 * i_width;
  205.             break;
  206.         case X264_CSP_BGRA:
  207.             pic->img.i_plane = 1;
  208.             pic->img.plane[0] = x264_malloc( 4 * i_width * i_height );
  209.             pic->img.i_stride[0] = 4 * i_width;
  210.             break;
  211.         default:
  212.             fprintf( stderr, "invalid CSPn" );
  213.             pic->img.i_plane = 0;
  214.             break;
  215.     }
  216. }
  217. /****************************************************************************
  218.  * x264_picture_clean:
  219.  ****************************************************************************/
  220. void x264_picture_clean( x264_picture_t *pic )
  221. {
  222.     x264_free( pic->img.plane[0] );
  223.     /* just to be safe */
  224.     memset( pic, 0, sizeof( x264_picture_t ) );
  225. }
  226. /****************************************************************************
  227.  * x264_nal_encode:
  228.  ****************************************************************************/
  229. int x264_nal_encode( void *p_data, int *pi_data, int b_annexeb, x264_nal_t *nal )
  230. {
  231.     uint8_t *dst = p_data;
  232.     uint8_t *src = nal->p_payload;
  233.     uint8_t *end = &nal->p_payload[nal->i_payload];
  234.     int i_count = 0;
  235.     /* FIXME this code doesn't check overflow */
  236.     if( b_annexeb )
  237.     {
  238.         /* long nal start code (we always use long ones)*/
  239.         *dst++ = 0x00;
  240.         *dst++ = 0x00;
  241.         *dst++ = 0x00;
  242.         *dst++ = 0x01;
  243.     }
  244.     /* nal header */
  245.     *dst++ = ( 0x00 << 7 ) | ( nal->i_ref_idc << 5 ) | nal->i_type;
  246.     while( src < end )
  247.     {
  248.         if( i_count == 2 && *src <= 0x03 )
  249.         {
  250.             *dst++ = 0x03;
  251.             i_count = 0;
  252.         }
  253.         if( *src == 0 )
  254.         {
  255.             i_count++;
  256.         }
  257.         else
  258.         {
  259.             i_count = 0;
  260.         }
  261.         *dst++ = *src++;
  262.     }
  263.     *pi_data = dst - (uint8_t*)p_data;
  264.     return *pi_data;
  265. }
  266. /****************************************************************************
  267.  * x264_nal_decode:
  268.  ****************************************************************************/
  269. int x264_nal_decode( x264_nal_t *nal, void *p_data, int i_data )
  270. {
  271.     uint8_t *src = p_data;
  272.     uint8_t *end = &src[i_data];
  273.     uint8_t *dst = nal->p_payload;
  274.     nal->i_type    = src[0]&0x1f;
  275.     nal->i_ref_idc = (src[0] >> 5)&0x03;
  276.     src++;
  277.     while( src < end )
  278.     {
  279.         if( src < end - 3 && src[0] == 0x00 && src[1] == 0x00  && src[2] == 0x03 )
  280.         {
  281.             *dst++ = 0x00;
  282.             *dst++ = 0x00;
  283.             src += 3;
  284.             continue;
  285.         }
  286.         *dst++ = *src++;
  287.     }
  288.     nal->i_payload = dst - (uint8_t*)p_data;
  289.     return 0;
  290. }
  291. /****************************************************************************
  292.  * x264_malloc:
  293.  ****************************************************************************/
  294. void *x264_malloc( int i_size )
  295. {
  296. #ifdef SYS_MACOSX
  297.     /* Mac OS X always returns 16 bytes aligned memory */
  298.     return malloc( i_size );
  299. #elif defined( HAVE_MALLOC_H )
  300.     return memalign( 16, i_size );
  301. #else
  302.     uint8_t * buf;
  303.     uint8_t * align_buf;
  304.     buf = (uint8_t *) malloc( i_size + 15 + sizeof( void ** ) +
  305.               sizeof( int ) );
  306.     align_buf = buf + 15 + sizeof( void ** ) + sizeof( int );
  307.     align_buf -= (long) align_buf & 15;
  308.     *( (void **) ( align_buf - sizeof( void ** ) ) ) = buf;
  309.     *( (int *) ( align_buf - sizeof( void ** ) - sizeof( int ) ) ) = i_size;
  310.     return align_buf;
  311. #endif
  312. }
  313. /****************************************************************************
  314.  * x264_free:
  315.  ****************************************************************************/
  316. void x264_free( void *p )
  317. {
  318.     if( p )
  319.     {
  320. #if defined( HAVE_MALLOC_H ) || defined( SYS_MACOSX )
  321.         free( p );
  322. #else
  323.         free( *( ( ( void **) p ) - 1 ) );
  324. #endif
  325.     }
  326. }
  327. /****************************************************************************
  328.  * x264_realloc:
  329.  ****************************************************************************/
  330. void *x264_realloc( void *p, int i_size )
  331. {
  332. #ifdef HAVE_MALLOC_H
  333.     return realloc( p, i_size );
  334. #else
  335.     int       i_old_size = 0;
  336.     uint8_t * p_new;
  337.     if( p )
  338.     {
  339.         i_old_size = *( (int*) ( (uint8_t*) p ) - sizeof( void ** ) -
  340.                          sizeof( int ) );
  341.     }
  342.     p_new = x264_malloc( i_size );
  343.     if( i_old_size > 0 && i_size > 0 )
  344.     {
  345.         memcpy( p_new, p, ( i_old_size < i_size ) ? i_old_size : i_size );
  346.     }
  347.     x264_free( p );
  348.     return p_new;
  349. #endif
  350. }
  351. /****************************************************************************
  352.  * x264_slurp_file:
  353.  ****************************************************************************/
  354. char *x264_slurp_file( const char *filename )
  355. {
  356.     int b_error = 0;
  357.     int i_size;
  358.     char *buf;
  359.     FILE *fh = fopen( filename, "rb" );
  360.     if( !fh )
  361.         return NULL;
  362.     b_error |= fseek( fh, 0, SEEK_END ) < 0;
  363.     b_error |= ( i_size = ftell( fh ) ) <= 0;
  364.     b_error |= fseek( fh, 0, SEEK_SET ) < 0;
  365.     if( b_error )
  366.         return NULL;
  367.     buf = x264_malloc( i_size+2 );
  368.     if( buf == NULL )
  369.         return NULL;
  370.     b_error |= fread( buf, 1, i_size, fh ) != i_size;
  371.     if( buf[i_size-1] != 'n' )
  372.         buf[i_size++] = 'n';
  373.     buf[i_size] = 0;
  374.     fclose( fh );
  375.     if( b_error )
  376.     {
  377.         x264_free( buf );
  378.         return NULL;
  379.     }
  380.     return buf;
  381. }
  382. /****************************************************************************
  383.  * x264_param2string:
  384.  ****************************************************************************/
  385. char *x264_param2string( x264_param_t *p, int b_res )
  386. {
  387.     char *buf = x264_malloc( 1000 );
  388.     char *s = buf;
  389.     if( b_res )
  390.     {
  391.         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
  392.         s += sprintf( s, "fps=%d/%d ", p->i_fps_num, p->i_fps_den );
  393.     }
  394.     s += sprintf( s, "cabac=%d", p->b_cabac );
  395.     s += sprintf( s, " ref=%d", p->i_frame_reference );
  396.     s += sprintf( s, " deblock=%d:%d:%d", p->b_deblocking_filter,
  397.                   p->i_deblocking_filter_alphac0, p->i_deblocking_filter_beta );
  398.     s += sprintf( s, " analyse=%#x:%#x", p->analyse.intra, p->analyse.inter );
  399.     s += sprintf( s, " me=%s", x264_motion_est_names[ p->analyse.i_me_method ] );
  400.     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
  401.     s += sprintf( s, " brdo=%d", p->analyse.b_bframe_rdo );
  402.     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
  403.     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
  404.     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );
  405.     s += sprintf( s, " trellis=%d", p->analyse.i_trellis );
  406.     s += sprintf( s, " 8x8dct=%d", p->analyse.b_transform_8x8 );
  407.     s += sprintf( s, " cqm=%d", p->i_cqm_preset );
  408.     s += sprintf( s, " chroma_qp_offset=%d", p->analyse.i_chroma_qp_offset );
  409.     s += sprintf( s, " slices=%d", p->i_threads );
  410.     s += sprintf( s, " nr=%d", p->analyse.i_noise_reduction );
  411.     s += sprintf( s, " bframes=%d", p->i_bframe );
  412.     if( p->i_bframe )
  413.     {
  414.         s += sprintf( s, " b_pyramid=%d b_adapt=%d b_bias=%d direct=%d wpredb=%d bime=%d",
  415.                       p->b_bframe_pyramid, p->b_bframe_adaptive, p->i_bframe_bias,
  416.                       p->analyse.i_direct_mv_pred, p->analyse.b_weighted_bipred,
  417.                       p->analyse.b_bidir_me );
  418.     }
  419.     s += sprintf( s, " keyint=%d keyint_min=%d scenecut=%d",
  420.                   p->i_keyint_max, p->i_keyint_min, p->i_scenecut_threshold );
  421.     s += sprintf( s, " rc=%s", p->rc.b_stat_read && p->rc.b_cbr ? "2pass" :
  422.                                p->rc.b_cbr ? p->rc.i_vbv_buffer_size ? "cbr" : "abr" :
  423.                                p->rc.i_rf_constant ? "crf" : "cqp" );
  424.     if( p->rc.b_cbr || p->rc.i_rf_constant )
  425.     {
  426.         if( p->rc.i_rf_constant )
  427.             s += sprintf( s, " crf=%d", p->rc.i_rf_constant );
  428.         else
  429.             s += sprintf( s, " bitrate=%d ratetol=%.1f",
  430.                           p->rc.i_bitrate, p->rc.f_rate_tolerance );
  431.         s += sprintf( s, " rceq='%s' qcomp=%.2f qpmin=%d qpmax=%d qpstep=%d",
  432.                       p->rc.psz_rc_eq, p->rc.f_qcompress,
  433.                       p->rc.i_qp_min, p->rc.i_qp_max, p->rc.i_qp_step );
  434.         if( p->rc.b_stat_read )
  435.             s += sprintf( s, " cplxblur=%.1f qblur=%.1f",
  436.                           p->rc.f_complexity_blur, p->rc.f_qblur );
  437.         if( p->rc.i_vbv_buffer_size )
  438.             s += sprintf( s, " vbv_maxrate=%d vbv_bufsize=%d",
  439.                           p->rc.i_vbv_max_bitrate, p->rc.i_vbv_buffer_size );
  440.     }
  441.     else
  442.         s += sprintf( s, " qp=%d", p->rc.i_qp_constant );
  443.     if( p->rc.b_cbr || p->rc.i_qp_constant != 0 )
  444.     {
  445.         s += sprintf( s, " ip_ratio=%.2f", p->rc.f_ip_factor );
  446.         if( p->i_bframe )
  447.             s += sprintf( s, " pb_ratio=%.2f", p->rc.f_pb_factor );
  448.         if( p->rc.i_zones )
  449.             s += sprintf( s, " zones" );
  450.     }
  451.     return buf;
  452. }