common/macroblock.h

static const int x264_zigzag_scan4[16] =
{
    0,  4,  1,  2,  5,  8, 12,  9,  6,  3,  7, 10, 13, 14, 11, 15
};

 

macroblock.h里的ZigZag锯齿形扫描 - 加菲 -  .
 
static const int x264_zigzag_scan8[64] =
{
    0,  8,  1,  2,  9, 16, 24, 17, 10,  3,  4, 11, 18, 25, 32, 40,
   33, 26, 19, 12,  5,  6, 13, 20, 27, 34, 41, 48, 56, 49, 42, 35,
   28, 21, 14,  7, 15, 22, 29, 36, 43, 50, 57, 58, 51, 44, 37, 30,
   23, 31, 38, 45, 52, 59, 60, 53, 46, 39, 47, 54, 61, 62, 55, 63
};
 
macroblock.h里的ZigZag锯齿形扫描 - 加菲 -  .
 

相关文章:

  • 2022-01-19
  • 2021-11-05
  • 2021-04-15
  • 2021-12-14
  • 2021-10-11
  • 2021-04-16
  • 2018-11-02
  • 2021-11-04
猜你喜欢
  • 2021-05-03
  • 2021-08-21
  • 2021-12-19
  • 2021-11-05
  • 2021-07-12
  • 2022-01-10
  • 2021-09-22
相关资源
相似解决方案