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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * set.c: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  19.  *****************************************************************************/
  20. #include "common.h"
  21. #define SHIFT(x,s) ((s)<0 ? (x)<<-(s) : (s)==0 ? (x) : ((x)+(1<<((s)-1)))>>(s))
  22. #define DIV(n,d) (((n) + ((d)>>1)) / (d))
  23. static const int dequant4_scale[6][3] =
  24. {
  25.     { 10, 13, 16 },
  26.     { 11, 14, 18 },
  27.     { 13, 16, 20 },
  28.     { 14, 18, 23 },
  29.     { 16, 20, 25 },
  30.     { 18, 23, 29 }
  31. };
  32. static const int quant4_scale[6][3] =
  33. {
  34.     { 13107, 8066, 5243 },
  35.     { 11916, 7490, 4660 },
  36.     { 10082, 6554, 4194 },
  37.     {  9362, 5825, 3647 },
  38.     {  8192, 5243, 3355 },
  39.     {  7282, 4559, 2893 },
  40. };
  41. static const int quant8_scan[16] =
  42. {
  43.     0,3,4,3, 3,1,5,1, 4,5,2,5, 3,1,5,1
  44. };
  45. static const int dequant8_scale[6][6] =
  46. {
  47.     { 20, 18, 32, 19, 25, 24 },
  48.     { 22, 19, 35, 21, 28, 26 },
  49.     { 26, 23, 42, 24, 33, 31 },
  50.     { 28, 25, 45, 26, 35, 33 },
  51.     { 32, 28, 51, 30, 40, 38 },
  52.     { 36, 32, 58, 34, 46, 43 },
  53. };
  54. static const int quant8_scale[6][6] =
  55. {
  56.     { 13107, 11428, 20972, 12222, 16777, 15481 },
  57.     { 11916, 10826, 19174, 11058, 14980, 14290 },
  58.     { 10082,  8943, 15978,  9675, 12710, 11985 },
  59.     {  9362,  8228, 14913,  8931, 11984, 11259 },
  60.     {  8192,  7346, 13159,  7740, 10486,  9777 },
  61.     {  7282,  6428, 11570,  6830,  9118,  8640 }
  62. };
  63. int x264_cqm_init( x264_t *h )
  64. {
  65.     int def_quant4[6][16];
  66.     int def_quant8[6][64];
  67.     int def_dequant4[6][16];
  68.     int def_dequant8[6][64];
  69.     int quant4_mf[4][6][4][4];
  70.     int quant8_mf[2][6][8][8];
  71.     int q, i, j, i_list;
  72.     int deadzone[4] = { 32 - h->param.analyse.i_luma_deadzone[1],
  73.                         32 - h->param.analyse.i_luma_deadzone[0],
  74.                         32 - 11, 32 - 21 };
  75.     int max_qp_err = -1;
  76.     for( i = 0; i < 6; i++ )
  77.     {
  78.         int size = i<4 ? 16 : 64;
  79.         for( j = (i<4 ? 0 : 4); j < i; j++ )
  80.             if( !memcmp( h->pps->scaling_list[i], h->pps->scaling_list[j], size*sizeof(uint8_t) ) )
  81.                 break;
  82.         if( j < i )
  83.         {
  84.             h->  quant4_mf[i] = h->  quant4_mf[j];
  85.             h->dequant4_mf[i] = h->dequant4_mf[j];
  86.             h->unquant4_mf[i] = h->unquant4_mf[j];
  87.         }
  88.         else
  89.         {
  90.             h->  quant4_mf[i] = x264_malloc(52*size*sizeof(uint16_t) );
  91.             h->dequant4_mf[i] = x264_malloc( 6*size*sizeof(int) );
  92.             h->unquant4_mf[i] = x264_malloc(52*size*sizeof(int) );
  93.         }
  94.         for( j = (i<4 ? 0 : 4); j < i; j++ )
  95.             if( deadzone[j&3] == deadzone[i&3] &&
  96.                 !memcmp( h->pps->scaling_list[i], h->pps->scaling_list[j], size*sizeof(uint8_t) ) )
  97.                 break;
  98.         if( j < i )
  99.             h->quant4_bias[i] = h->quant4_bias[j];
  100.         else
  101.             h->quant4_bias[i] = x264_malloc(52*size*sizeof(uint16_t) );
  102.     }
  103.     for( q = 0; q < 6; q++ )
  104.     {
  105.         for( i = 0; i < 16; i++ )
  106.         {
  107.             int j = (i&1) + ((i>>2)&1);
  108.             def_dequant4[q][i] = dequant4_scale[q][j];
  109.             def_quant4[q][i]   =   quant4_scale[q][j];
  110.         }
  111.         for( i = 0; i < 64; i++ )
  112.         {
  113.             int j = quant8_scan[((i>>1)&12) | (i&3)];
  114.             def_dequant8[q][i] = dequant8_scale[q][j];
  115.             def_quant8[q][i]   =   quant8_scale[q][j];
  116.         }
  117.     }
  118.     for( q = 0; q < 6; q++ )
  119.     {
  120.         for( i_list = 0; i_list < 4; i_list++ )
  121.             for( i = 0; i < 16; i++ )
  122.             {
  123.                 h->dequant4_mf[i_list][q][0][i] = def_dequant4[q][i] * h->pps->scaling_list[i_list][i];
  124.                      quant4_mf[i_list][q][0][i] = DIV(def_quant4[q][i] * 16, h->pps->scaling_list[i_list][i]);
  125.             }
  126.         for( i_list = 0; i_list < 2; i_list++ )
  127.             for( i = 0; i < 64; i++ )
  128.             {
  129.                 h->dequant8_mf[i_list][q][0][i] = def_dequant8[q][i] * h->pps->scaling_list[4+i_list][i];
  130.                      quant8_mf[i_list][q][0][i] = DIV(def_quant8[q][i] * 16, h->pps->scaling_list[4+i_list][i]);
  131.             }
  132.     }
  133.     for( q = 0; q < 52; q++ )
  134.     {
  135.         for( i_list = 0; i_list < 4; i_list++ )
  136.             for( i = 0; i < 16; i++ )
  137.             {
  138.                 h->unquant4_mf[i_list][q][i] = (1ULL << (q/6 + 15 + 8)) / quant4_mf[i_list][q%6][0][i];
  139.                 h->  quant4_mf[i_list][q][i] = j = SHIFT(quant4_mf[i_list][q%6][0][i], q/6 - 1);
  140.                 // round to nearest, unless that would cause the deadzone to be negative
  141.                 h->quant4_bias[i_list][q][i] = X264_MIN( DIV(deadzone[i_list]<<10, j), (1<<15)/j );
  142.                 if( j > 0xffff && q > max_qp_err )
  143.                     max_qp_err = q;
  144.             }
  145.         if( h->param.analyse.b_transform_8x8 )
  146.         for( i_list = 0; i_list < 2; i_list++ )
  147.             for( i = 0; i < 64; i++ )
  148.             {
  149.                 h->unquant8_mf[i_list][q][i] = (1ULL << (q/6 + 16 + 8)) / quant8_mf[i_list][q%6][0][i];
  150.                 h->  quant8_mf[i_list][q][i] = j = SHIFT(quant8_mf[i_list][q%6][0][i], q/6);
  151.                 h->quant8_bias[i_list][q][i] = X264_MIN( DIV(deadzone[i_list]<<10, j), (1<<15)/j );
  152.                 if( j > 0xffff && q > max_qp_err )
  153.                     max_qp_err = q;
  154.             }
  155.     }
  156.     if( !h->mb.b_lossless && max_qp_err >= h->param.rc.i_qp_min )
  157.     {
  158.         x264_log( h, X264_LOG_ERROR, "Quantization overflow.n" );
  159.         x264_log( h, X264_LOG_ERROR, "Your CQM is incompatible with QP < %d, but min QP is set to %dn",
  160.                   max_qp_err+1, h->param.rc.i_qp_min );
  161.         return -1;
  162.     }
  163.     return 0;
  164. }
  165. void x264_cqm_delete( x264_t *h )
  166. {
  167.     int i, j;
  168.     for( i = 0; i < 6; i++ )
  169.     {
  170.         for( j = 0; j < i; j++ )
  171.             if( h->quant4_mf[i] == h->quant4_mf[j] )
  172.                 break;
  173.         if( j == i )
  174.         {
  175.             x264_free( h->  quant4_mf[i] );
  176.             x264_free( h->dequant4_mf[i] );
  177.             x264_free( h->unquant4_mf[i] );
  178.         }
  179.         for( j = 0; j < i; j++ )
  180.             if( h->quant4_bias[i] == h->quant4_bias[j] )
  181.                 break;
  182.         if( j == i )
  183.             x264_free( h->quant4_bias[i] );
  184.     }
  185. }
  186. static int x264_cqm_parse_jmlist( x264_t *h, const char *buf, const char *name,
  187.                            uint8_t *cqm, const uint8_t *jvt, int length )
  188. {
  189.     char *p;
  190.     char *nextvar;
  191.     int i;
  192.     p = strstr( buf, name );
  193.     if( !p )
  194.     {
  195.         memset( cqm, 16, length );
  196.         return 0;
  197.     }
  198.     p += strlen( name );
  199.     if( *p == 'U' || *p == 'V' )
  200.         p++;
  201.     nextvar = strstr( p, "INT" );
  202.     for( i = 0; i < length && (p = strpbrk( p, " tn," )) && (p = strpbrk( p, "0123456789" )); i++ )
  203.     {
  204.         int coef = -1;
  205.         sscanf( p, "%d", &coef );
  206.         if( i == 0 && coef == 0 )
  207.         {
  208.             memcpy( cqm, jvt, length );
  209.             return 0;
  210.         }
  211.         if( coef < 1 || coef > 255 )
  212.         {
  213.             x264_log( h, X264_LOG_ERROR, "bad coefficient in list '%s'n", name );
  214.             return -1;
  215.         }
  216.         cqm[i] = coef;
  217.     }
  218.     if( (nextvar && p > nextvar) || i != length )
  219.     {
  220.         x264_log( h, X264_LOG_ERROR, "not enough coefficients in list '%s'n", name );
  221.         return -1;
  222.     }
  223.     return 0;
  224. }
  225. int x264_cqm_parse_file( x264_t *h, const char *filename )
  226. {
  227.     char *buf, *p;
  228.     int b_error = 0;
  229.     h->param.i_cqm_preset = X264_CQM_CUSTOM;
  230.     buf = x264_slurp_file( filename );
  231.     if( !buf )
  232.     {
  233.         x264_log( h, X264_LOG_ERROR, "can't open file '%s'n", filename );
  234.         return -1;
  235.     }
  236.     while( (p = strchr( buf, '#' )) != NULL )
  237.         memset( p, ' ', strcspn( p, "n" ) );
  238.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA4X4_LUMA",   h->param.cqm_4iy, x264_cqm_jvt4i, 16 );
  239.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA4X4_CHROMA", h->param.cqm_4ic, x264_cqm_jvt4i, 16 );
  240.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER4X4_LUMA",   h->param.cqm_4py, x264_cqm_jvt4p, 16 );
  241.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER4X4_CHROMA", h->param.cqm_4pc, x264_cqm_jvt4p, 16 );
  242.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA8X8_LUMA",   h->param.cqm_8iy, x264_cqm_jvt8i, 64 );
  243.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER8X8_LUMA",   h->param.cqm_8py, x264_cqm_jvt8p, 64 );
  244.     x264_free( buf );
  245.     return b_error;
  246. }