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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * x264: h264 encoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 Tuukka Toivonen <tuukkat@ee.oulu.fi>
  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. /*
  21.  * Some explanation of the symbols used:
  22.  * Red/pink: intra block
  23.  * Blue: inter block
  24.  * Green: skip block
  25.  * Yellow: B-block (not visualized properly yet)
  26.  *
  27.  * Motion vectors have black dot at their target (ie. at the MB center),
  28.  * instead of arrowhead. The black dot is enclosed in filled diamond with radius
  29.  * depending on reference frame number (one frame back = zero width, normal case).
  30.  *
  31.  * The intra blocks have generally lines drawn perpendicular
  32.  * to the prediction direction, so for example, if there is a pink block
  33.  * with horizontal line at the top of it, it is interpolated by assuming
  34.  * luma to be vertically constant.
  35.  * DC predicted blocks have both horizontal and vertical lines,
  36.  * pink blocks with a diagonal line are predicted using the planar function.
  37.  */
  38. #include "common.h"
  39. #include "visualize.h"
  40. #include "display.h"
  41. typedef struct {
  42.     int     i_type;
  43.     int     i_partition;
  44.     int     i_sub_partition[4];
  45.     int     i_intra16x16_pred_mode;
  46.     int     intra4x4_pred_mode[4][4];
  47.     int8_t  ref[2][4][4];                  /* [list][y][x] */
  48.     int16_t mv[2][4][4][2];                /* [list][y][x][mvxy] */
  49. } visualize_t;
  50. /* {{{ [fold] char *get_string(const stringlist_t *sl, int entries, int code) */
  51. /* Return string from stringlist corresponding to the given code */
  52. #define GET_STRING(sl, code) get_string((sl), sizeof(sl)/sizeof(*(sl)), code)
  53. typedef struct {
  54.     int code;
  55.     char *string;
  56. } stringlist_t;
  57. static char *get_string(const stringlist_t *sl, int entries, int code)
  58. {
  59.     int i;
  60.     for (i=0; i<entries; i++) {
  61.         if (sl[i].code==code) break;
  62.     }
  63.     return (i>=entries) ? "?" : sl[i].string;
  64. }
  65. /* }}} */
  66. /* {{{ [fold] void mv(int x0, int y0, int16_t dmv[2], int ref, int zoom, char *col) */
  67. /* Plot motion vector */
  68. static void mv(int x0, int y0, int16_t dmv[2], int ref, int zoom, char *col)
  69. {
  70.     int dx = dmv[0];
  71.     int dy = dmv[1];
  72.     int i;
  73.     dx = (dx * zoom + 2) >> 2;                     /* Quarter pixel accurate MVs */
  74.     dy = (dy * zoom + 2) >> 2;
  75.     disp_line(0, x0, y0, x0+dx, y0+dy);
  76.     for (i=1; i<ref; i++){
  77.         disp_line(0, x0, y0-i, x0+i, y0);
  78.         disp_line(0, x0+i, y0, x0, y0+i);
  79.         disp_line(0, x0, y0+i, x0-i, y0);
  80.         disp_line(0, x0-i, y0, x0, y0-i);
  81.     }
  82.     disp_setcolor("black");
  83.     disp_point(0, x0, y0);
  84.     disp_setcolor(col);
  85. }
  86. /* }}} */
  87. /* {{{ [fold] void x264_visualize_init( x264_t *h ) */
  88. void x264_visualize_init( x264_t *h )
  89. {
  90.     int mb = h->sps->i_mb_width * h->sps->i_mb_height;
  91.     h->visualize = x264_malloc(mb * sizeof(visualize_t));
  92. }
  93. /* }}} */
  94. /* {{{ [fold] void x264_visualize_mb( x264_t *h ) */
  95. void x264_visualize_mb( x264_t *h )
  96. {
  97.     visualize_t *v = (visualize_t*)h->visualize + h->mb.i_mb_xy;
  98.     int i, l, x, y;
  99.     /* Save all data for the MB what we need for drawing the visualization */
  100.     v->i_type = h->mb.i_type;
  101.     v->i_partition = h->mb.i_partition;
  102.     for (i=0; i<4; i++) v->i_sub_partition[i] = h->mb.i_sub_partition[i];
  103.     for (y=0; y<4; y++) for (x=0; x<4; x++)
  104.         v->intra4x4_pred_mode[y][x] = h->mb.cache.intra4x4_pred_mode[X264_SCAN8_0+y*8+x];
  105.     for (l=0; l<2; l++) for (y=0; y<4; y++) for (x=0; x<4; x++) {
  106.         for (i=0; i<2; i++) {
  107.             v->mv[l][y][x][i] = h->mb.cache.mv[l][X264_SCAN8_0+y*8+x][i];
  108.         }
  109.         v->ref[l][y][x] = h->mb.cache.ref[l][X264_SCAN8_0+y*8+x];
  110.     }
  111.     v->i_intra16x16_pred_mode = h->mb.i_intra16x16_pred_mode;
  112. }
  113. /* }}} */
  114. /* {{{ [fold] void x264_visualize_close( x264_t *h ) */
  115. void x264_visualize_close( x264_t *h )
  116. {
  117.     x264_free(h->visualize);
  118. }
  119. /* }}} */
  120. /* {{{ [fold] void x264_visualize_show( x264_t *h ) */
  121. /* Display visualization (block types, MVs) of the encoded frame */
  122. /* FIXME: B-type MBs not handled yet properly */
  123. void x264_visualize_show( x264_t *h )
  124. {
  125.     int mb_xy;
  126.     static const stringlist_t mb_types[] = {
  127.         /* Block types marked as NULL will not be drawn */
  128.         { I_4x4   , "red" },
  129.         { I_8x8   , "#ff5640" },
  130.         { I_16x16 , "#ff8060" },
  131.         { I_PCM   , "violet" },
  132.         { P_L0    , "SlateBlue" },
  133.         { P_8x8   , "blue" },
  134.         { P_SKIP  , "green" },
  135.         { B_DIRECT, "yellow" },
  136.         { B_L0_L0 , "yellow" },
  137.         { B_L0_L1 , "yellow" },
  138.         { B_L0_BI , "yellow" },
  139.         { B_L1_L0 , "yellow" },
  140.         { B_L1_L1 , "yellow" },
  141.         { B_L1_BI , "yellow" },
  142.         { B_BI_L0 , "yellow" },
  143.         { B_BI_L1 , "yellow" },
  144.         { B_BI_BI , "yellow" },
  145.         { B_8x8   , "yellow" },
  146.         { B_SKIP  , "yellow" },
  147.     };
  148.     static const int waitkey = 1;     /* Wait for enter after each frame */
  149.     static const int drawbox = 1;     /* Draw box around each block */
  150.     static const int borders = 0;     /* Display extrapolated borders outside frame */
  151.     static const int zoom = 2;        /* Zoom factor */
  152.     static const int pad = 32;
  153.     uint8_t *const frame = h->fdec->plane[0];
  154.     const int width = h->param.i_width;
  155.     const int height = h->param.i_height;
  156.     const int stride = h->fdec->i_stride[0];
  157.     if (borders) {
  158.         disp_gray_zoom(0, frame - pad*stride - pad, width+2*pad, height+2*pad, stride, "fdec", zoom);
  159.     } else {
  160.         disp_gray_zoom(0, frame, width, height, stride, "fdec", zoom);
  161.     }
  162.     for( mb_xy = 0; mb_xy < h->sps->i_mb_width * h->sps->i_mb_height; mb_xy++ )
  163.     {
  164.         visualize_t *const v = (visualize_t*)h->visualize + mb_xy;
  165.         const int mb_y = mb_xy / h->sps->i_mb_width;
  166.         const int mb_x = mb_xy % h->sps->i_mb_width;
  167.         char *const col = GET_STRING(mb_types, v->i_type);
  168.         int x = mb_x*16*zoom;
  169.         int y = mb_y*16*zoom;
  170.         int l = 0;
  171.         unsigned int i, j;
  172.         if (col==NULL) continue;
  173.         if (borders) {
  174.             x += pad*zoom;
  175.             y += pad*zoom;
  176.         }
  177.         disp_setcolor(col);
  178.         if (drawbox) disp_rect(0, x, y, x+16*zoom-1, y+16*zoom-1);
  179.         if (v->i_type==P_L0 || v->i_type==P_8x8 || v->i_type==P_SKIP) {
  180.             /* Predicted (inter) mode, with motion vector */
  181.             if (v->i_partition==D_16x16 || v->i_type==P_SKIP) {
  182.                 mv(x+8*zoom, y+8*zoom, v->mv[l][0][0], v->ref[l][0][0], zoom, col);
  183.             }
  184.             if (v->i_partition==D_16x8) {
  185.                 if (drawbox) disp_rect(0, x, y, x+16*zoom, y+8*zoom);
  186.                 mv(x+8*zoom, y+4*zoom, v->mv[l][0][0], v->ref[l][0][0], zoom, col);
  187.                 if (drawbox) disp_rect(0, x, y+8*zoom, x+16*zoom, y+16*zoom);
  188.                 mv(x+8*zoom, y+12*zoom, v->mv[l][2][0], v->ref[l][2][0], zoom, col);
  189.             }
  190.             if (v->i_partition==D_8x16) {
  191.                 if (drawbox) disp_rect(0, x,          y, x+8*zoom,  y+16*zoom);
  192.                 mv(x+4*zoom, y+8*zoom, v->mv[l][0][0], v->ref[l][0][0], zoom, col);
  193.                 if (drawbox) disp_rect(0, x+8*zoom,   y, x+16*zoom, y+16*zoom);
  194.                 mv(x+12*zoom, y+8*zoom, v->mv[l][0][2], v->ref[l][0][2], zoom, col);
  195.             }
  196.             if (v->i_partition==D_8x8) {
  197.                 for (i=0; i<2; i++) for (j=0; j<2; j++) {
  198.                     int sp = v->i_sub_partition[i*2+j];
  199.                     const int x0 = x + j*8*zoom;
  200.                     const int y0 = y + i*8*zoom;
  201.                     l = x264_mb_partition_listX_table[0][sp] ? 0 : 1; /* FIXME: not tested if this works */
  202.                     if (IS_SUB8x8(sp)) {
  203.                         if (drawbox) disp_rect(0, x0, y0, x0+8*zoom, y0+8*zoom);
  204.                         mv(x0+4*zoom, y0+4*zoom, v->mv[l][2*i][2*j], v->ref[l][2*i][2*j], zoom, col);
  205.                     }
  206.                     if (IS_SUB8x4(sp)) {
  207.                         if (drawbox) disp_rect(0, x0, y0, x0+8*zoom, y0+4*zoom);
  208.                         if (drawbox) disp_rect(0, x0, y0+4*zoom, x0+8*zoom, y0+8*zoom);
  209.                         mv(x0+4*zoom, y0+2*zoom, v->mv[l][2*i][2*j], v->ref[l][2*i][2*j], zoom, col);
  210.                         mv(x0+4*zoom, y0+6*zoom, v->mv[l][2*i+1][2*j], v->ref[l][2*i+1][2*j], zoom, col);
  211.                     }
  212.                     if (IS_SUB4x8(sp)) {
  213.                         if (drawbox) disp_rect(0, x0, y0, x0+4*zoom, y0+8*zoom);
  214.                         if (drawbox) disp_rect(0, x0+4*zoom, y0, x0+8*zoom, y0+8*zoom);
  215.                         mv(x0+2*zoom, y0+4*zoom, v->mv[l][2*i][2*j], v->ref[l][2*i][2*j], zoom, col);
  216.                         mv(x0+6*zoom, y0+4*zoom, v->mv[l][2*i][2*j+1], v->ref[l][2*i][2*j+1], zoom, col);
  217.                     }
  218.                     if (IS_SUB4x4(sp)) {
  219.                         if (drawbox) disp_rect(0, x0, y0, x0+4*zoom, y0+4*zoom);
  220.                         if (drawbox) disp_rect(0, x0+4*zoom, y0, x0+8*zoom, y0+4*zoom);
  221.                         if (drawbox) disp_rect(0, x0, y0+4*zoom, x0+4*zoom, y0+8*zoom);
  222.                         if (drawbox) disp_rect(0, x0+4*zoom, y0+4*zoom, x0+8*zoom, y0+8*zoom);
  223.                         mv(x0+2*zoom, y0+2*zoom, v->mv[l][2*i][2*j], v->ref[l][2*i][2*j], zoom, col);
  224.                         mv(x0+6*zoom, y0+2*zoom, v->mv[l][2*i][2*j+1], v->ref[l][2*i][2*j+1], zoom, col);
  225.                         mv(x0+2*zoom, y0+6*zoom, v->mv[l][2*i+1][2*j], v->ref[l][2*i+1][2*j], zoom, col);
  226.                         mv(x0+6*zoom, y0+6*zoom, v->mv[l][2*i+1][2*j+1], v->ref[l][2*i+1][2*j+1], zoom, col);
  227.                     }
  228.                 }
  229.             }
  230.         }
  231.         if (IS_INTRA(v->i_type) || v->i_type==I_PCM) {
  232.             /* Intra coded */
  233.             if (v->i_type==I_16x16) {
  234.                 switch (v->i_intra16x16_pred_mode) {
  235.                 case I_PRED_16x16_V:
  236.                     disp_line(0, x+2*zoom, y+2*zoom, x+14*zoom, y+2*zoom);
  237.                     break;
  238.                 case I_PRED_16x16_H:
  239.                     disp_line(0, x+2*zoom, y+2*zoom, x+2*zoom, y+14*zoom);
  240.                     break;
  241.                 case I_PRED_16x16_DC:
  242.                 case I_PRED_16x16_DC_LEFT:
  243.                 case I_PRED_16x16_DC_TOP:
  244.                 case I_PRED_16x16_DC_128:
  245.                     disp_line(0, x+2*zoom, y+2*zoom, x+14*zoom, y+2*zoom);
  246.                     disp_line(0, x+2*zoom, y+2*zoom, x+2*zoom, y+14*zoom);
  247.                     break;
  248.                 case I_PRED_16x16_P:
  249.                     disp_line(0, x+2*zoom, y+2*zoom, x+8*zoom, y+8*zoom);
  250.                     break;
  251.                 }
  252.             }
  253.             if (v->i_type==I_4x4 || v->i_type==I_8x8) {
  254.                 const int di = v->i_type==I_8x8 ? 2 : 1;
  255.                 const int zoom2 = zoom * di;
  256.                 for (i=0; i<4; i+=di) for (j=0; j<4; j+=di) {
  257.                     const int x0 = x + j*4*zoom;
  258.                     const int y0 = y + i*4*zoom;
  259.                     if (drawbox) disp_rect(0, x0, y0, x0+4*zoom2, y0+4*zoom2);
  260.                     switch (v->intra4x4_pred_mode[i][j]) {
  261.                     case I_PRED_4x4_V: /* Vertical */
  262.                         disp_line(0, x0+0*zoom2, y0+1*zoom2, x0+4*zoom2, y0+1*zoom2);
  263.                         break;
  264.                     case I_PRED_4x4_H: /* Horizontal */
  265.                         disp_line(0, x0+1*zoom2, y0+0*zoom2, x0+1*zoom2, y0+4*zoom2);
  266.                         break;
  267.                     case I_PRED_4x4_DC: /* DC, average from top and left sides */
  268.                     case I_PRED_4x4_DC_LEFT:
  269.                     case I_PRED_4x4_DC_TOP:
  270.                     case I_PRED_4x4_DC_128:
  271.                         disp_line(0, x0+1*zoom2, y0+1*zoom2, x0+4*zoom2, y0+1*zoom2);
  272.                         disp_line(0, x0+1*zoom2, y0+1*zoom2, x0+1*zoom2, y0+4*zoom2);
  273.                         break;
  274.                     case I_PRED_4x4_DDL: /* Topright-bottomleft */
  275.                         disp_line(0, x0+0*zoom2, y0+0*zoom2, x0+4*zoom2, y0+4*zoom2);
  276.                         break;
  277.                     case I_PRED_4x4_DDR: /* Topleft-bottomright */
  278.                         disp_line(0, x0+0*zoom2, y0+4*zoom2, x0+4*zoom2, y0+0*zoom2);
  279.                         break;
  280.                     case I_PRED_4x4_VR: /* Mix of topleft-bottomright and vertical */
  281.                         disp_line(0, x0+0*zoom2, y0+2*zoom2, x0+4*zoom2, y0+1*zoom2);
  282.                         break;
  283.                     case I_PRED_4x4_HD: /* Mix of topleft-bottomright and horizontal */
  284.                         disp_line(0, x0+2*zoom2, y0+0*zoom2, x0+1*zoom2, y0+4*zoom2);
  285.                         break;
  286.                     case I_PRED_4x4_VL: /* Mix of topright-bottomleft and vertical */
  287.                         disp_line(0, x0+0*zoom2, y0+1*zoom2, x0+4*zoom2, y0+2*zoom2);
  288.                         break;
  289.                     case I_PRED_4x4_HU: /* Mix of topright-bottomleft and horizontal */
  290.                         disp_line(0, x0+1*zoom2, y0+0*zoom2, x0+2*zoom2, y0+4*zoom2);
  291.                         break;
  292.                     }
  293.                 }
  294.             }
  295.         }
  296.     }
  297.     disp_sync();
  298.     if (waitkey) getchar();
  299. }
  300. /* }}} */
  301. //EOF