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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * set.c: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  21.  *****************************************************************************/
  22. #include "common.h"
  23. #include <stdio.h>
  24. #include <string.h>
  25. static const int dequant4_scale[6][3] =
  26. {
  27.     { 10, 13, 16 },
  28.     { 11, 14, 18 },
  29.     { 13, 16, 20 },
  30.     { 14, 18, 23 },
  31.     { 16, 20, 25 },
  32.     { 18, 23, 29 }
  33. };
  34. static const int quant4_scale[6][3] =
  35. {
  36.     { 13107, 8066, 5243 },
  37.     { 11916, 7490, 4660 },
  38.     { 10082, 6554, 4194 },
  39.     {  9362, 5825, 3647 },
  40.     {  8192, 5243, 3355 },
  41.     {  7282, 4559, 2893 },
  42. };
  43. static const int quant8_scan[16] =
  44. {
  45.     0,3,4,3, 3,1,5,1, 4,5,2,5, 3,1,5,1
  46. };
  47. static const int dequant8_scale[6][6] =
  48. {
  49.     { 20, 18, 32, 19, 25, 24 },
  50.     { 22, 19, 35, 21, 28, 26 },
  51.     { 26, 23, 42, 24, 33, 31 },
  52.     { 28, 25, 45, 26, 35, 33 },
  53.     { 32, 28, 51, 30, 40, 38 },
  54.     { 36, 32, 58, 34, 46, 43 },
  55. };
  56. static const int quant8_scale[6][6] =
  57. {
  58.     { 13107, 11428, 20972, 12222, 16777, 15481 },
  59.     { 11916, 10826, 19174, 11058, 14980, 14290 },
  60.     { 10082,  8943, 15978,  9675, 12710, 11985 },
  61.     {  9362,  8228, 14913,  8931, 11984, 11259 },
  62.     {  8192,  7346, 13159,  7740, 10486,  9777 },
  63.     {  7282,  6428, 11570,  6830,  9118,  8640 }
  64. };
  65. void x264_cqm_init( x264_t *h )
  66. {
  67.     int def_quant4[6][16];
  68.     int def_quant8[6][64];
  69.     int def_dequant4[6][16];
  70.     int def_dequant8[6][64];
  71.     int q, i, i_list;
  72.     for( q = 0; q < 6; q++ )
  73.     {
  74.         for( i = 0; i < 16; i++ )
  75.         {
  76.             int j = (i&1) + ((i>>2)&1);
  77.             def_dequant4[q][i] = dequant4_scale[q][j];
  78.             def_quant4[q][i]   =   quant4_scale[q][j];
  79.         }
  80.         for( i = 0; i < 64; i++ )
  81.         {
  82.             int j = quant8_scan[((i>>1)&12) | (i&3)];
  83.             def_dequant8[q][i] = dequant8_scale[q][j];
  84.             def_quant8[q][i]   =   quant8_scale[q][j];
  85.         }
  86.     }
  87.     for( q = 0; q < 6; q++ )
  88.     {
  89.         for( i_list = 0; i_list < 4; i_list++ )
  90.             for( i = 0; i < 16; i++ )
  91.             {
  92.                 h->dequant4_mf[i_list][q][0][i] = def_dequant4[q][i] * h->pps->scaling_list[i_list][i];
  93.                 h->  quant4_mf[i_list][q][0][i] = def_quant4[q][i] * 16 / h->pps->scaling_list[i_list][i];
  94.             }
  95.         for( i_list = 0; i_list < 2; i_list++ )
  96.             for( i = 0; i < 64; i++ )
  97.             {
  98.                 h->dequant8_mf[i_list][q][0][i] = def_dequant8[q][i] * h->pps->scaling_list[4+i_list][i];
  99.                 h->  quant8_mf[i_list][q][0][i] = def_quant8[q][i] * 16 / h->pps->scaling_list[4+i_list][i];
  100.             }
  101.     }
  102.     for( q = 0; q < 52; q++ )
  103.     {
  104.         for( i_list = 0; i_list < 4; i_list++ )
  105.             for( i = 0; i < 16; i++ )
  106.                 h->unquant4_mf[i_list][q][i] = (1 << (q/6 + 15 + 8)) / h->quant4_mf[i_list][q%6][0][i];
  107.         for( i_list = 0; i_list < 2; i_list++ )
  108.             for( i = 0; i < 64; i++ )
  109.                 h->unquant8_mf[i_list][q][i] = (1 << (q/6 + 16 + 8)) / h->quant8_mf[i_list][q%6][0][i];
  110.     }
  111. }
  112. int x264_cqm_parse_jmlist( x264_t *h, const char *buf, const char *name,
  113.                            uint8_t *cqm, const uint8_t *jvt, int length )
  114. {
  115.     char *p;
  116.     char *nextvar;
  117.     int i;
  118.     p = strstr( buf, name );
  119.     if( !p )
  120.     {
  121.         memset( cqm, 16, length );
  122.         return 0;
  123.     }
  124.     p += strlen( name );
  125.     if( *p == 'U' || *p == 'V' )
  126.         p++;
  127.     nextvar = strstr( p, "INT" );
  128.     for( i = 0; i < length && (p = strpbrk( p, " tn," )) && (p = strpbrk( p, "0123456789" )); i++ )
  129.     {
  130.         int coef = -1;
  131.         sscanf( p, "%d", &coef );
  132.         if( i == 0 && coef == 0 )
  133.         {
  134.             memcpy( cqm, jvt, length );
  135.             return 0;
  136.         }
  137.         if( coef < 1 || coef > 255 )
  138.         {
  139.             x264_log( h, X264_LOG_ERROR, "bad coefficient in list '%s'n", name );
  140.             return -1;
  141.         }
  142.         cqm[i] = coef;
  143.     }
  144.     if( (nextvar && p > nextvar) || i != length )
  145.     {
  146.         x264_log( h, X264_LOG_ERROR, "not enough coefficients in list '%s'n", name );
  147.         return -1;
  148.     }
  149.     return 0;
  150. }
  151. int x264_cqm_parse_file( x264_t *h, const char *filename )
  152. {
  153.     char *buf, *p;
  154.     int b_error = 0;
  155.     h->param.i_cqm_preset = X264_CQM_CUSTOM;
  156.     
  157.     buf = x264_slurp_file( filename );
  158.     if( !buf )
  159.     {
  160.         x264_log( h, X264_LOG_ERROR, "can't open file '%s'n", filename );
  161.         return -1;
  162.     }
  163.     while( (p = strchr( buf, '#' )) != NULL )
  164.         memset( p, ' ', strcspn( p, "n" ) );
  165.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA4X4_LUMA",   h->param.cqm_4iy, x264_cqm_jvt4i, 16 );
  166.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA4X4_CHROMA", h->param.cqm_4ic, x264_cqm_jvt4i, 16 );
  167.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER4X4_LUMA",   h->param.cqm_4py, x264_cqm_jvt4p, 16 );
  168.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER4X4_CHROMA", h->param.cqm_4pc, x264_cqm_jvt4p, 16 );
  169.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA8X8_LUMA",   h->param.cqm_8iy, x264_cqm_jvt8i, 64 );
  170.     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER8X8_LUMA",   h->param.cqm_8py, x264_cqm_jvt8p, 64 );
  171.     x264_free( buf );
  172.     return b_error;
  173. }