i420_rgb8.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * i420_rgb8.c : YUV to bitmap RGB conversion module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000 the VideoLAN team
  5.  * $Id: 78ed5c6e17f4f7eb1e60e0a4fbe144b5da813849 $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc/vlc.h>
  30. #include <vlc_filter.h>
  31. #include <vlc_vout.h>
  32. #include "i420_rgb.h"
  33. #include "i420_rgb_c.h"
  34. static void SetOffset( int, int, int, int, bool *, int *, int * );
  35. /*****************************************************************************
  36.  * I420_RGB8: color YUV 4:2:0 to RGB 8 bpp
  37.  *****************************************************************************/
  38. void I420_RGB8( filter_t *p_filter, picture_t *p_src, picture_t *p_dest )
  39. {
  40.     /* We got this one from the old arguments */
  41.     uint8_t *p_pic = (uint8_t*)p_dest->p->p_pixels;
  42.     uint8_t *p_y   = p_src->Y_PIXELS;
  43.     uint8_t *p_u   = p_src->U_PIXELS;
  44.     uint8_t *p_v   = p_src->V_PIXELS;
  45.     bool  b_hscale;                         /* horizontal scaling type */
  46.     int i_vscale;                                 /* vertical scaling type */
  47.     unsigned int i_x, i_y;                /* horizontal and vertical indexes */
  48.     unsigned int i_real_y;                                          /* y % 4 */
  49.     int          i_right_margin;
  50.     int          i_scale_count;                      /* scale modulo counter */
  51.     unsigned int i_chroma_width = p_filter->fmt_in.video.i_width / 2;/* chroma width */
  52.     /* Lookup table */
  53.     uint8_t *        p_lookup = p_filter->p_sys->p_base;
  54.     /* Offset array pointer */
  55.     int *       p_offset_start = p_filter->p_sys->p_offset;
  56.     int *       p_offset;
  57.     const int i_source_margin = p_src->p[0].i_pitch
  58.                                  - p_src->p[0].i_visible_pitch;
  59.     const int i_source_margin_c = p_src->p[1].i_pitch
  60.                                  - p_src->p[1].i_visible_pitch;
  61.     /* The dithering matrices */
  62.     static const int dither10[4] = {  0x0,  0x8,  0x2,  0xa };
  63.     static const int dither11[4] = {  0xc,  0x4,  0xe,  0x6 };
  64.     static const int dither12[4] = {  0x3,  0xb,  0x1,  0x9 };
  65.     static const int dither13[4] = {  0xf,  0x7,  0xd,  0x5 };
  66.     static const int dither20[4] = {  0x0, 0x10,  0x4, 0x14 };
  67.     static const int dither21[4] = { 0x18,  0x8, 0x1c,  0xc };
  68.     static const int dither22[4] = {  0x6, 0x16,  0x2, 0x12 };
  69.     static const int dither23[4] = { 0x1e,  0xe, 0x1a,  0xa };
  70.     SetOffset( p_filter->fmt_in.video.i_width,
  71.                p_filter->fmt_in.video.i_height,
  72.                p_filter->fmt_out.video.i_width,
  73.                p_filter->fmt_out.video.i_height,
  74.                &b_hscale, &i_vscale, p_offset_start );
  75.     i_right_margin = p_dest->p->i_pitch - p_dest->p->i_visible_pitch;
  76.     /*
  77.      * Perform conversion
  78.      */
  79.     i_scale_count = ( i_vscale == 1 ) ?
  80.                     p_filter->fmt_out.video.i_height :
  81.                     p_filter->fmt_in.video.i_height;
  82.     for( i_y = 0, i_real_y = 0; i_y < p_filter->fmt_in.video.i_height; i_y++ )
  83.     {
  84.         /* Do horizontal and vertical scaling */
  85.         SCALE_WIDTH_DITHER( 420 );
  86.         SCALE_HEIGHT_DITHER( 420 );
  87.     }
  88.     p_y += i_source_margin;
  89.     if( i_y % 2 )
  90.     {
  91.         p_u += i_source_margin_c;
  92.         p_v += i_source_margin_c;
  93.     }
  94. }
  95. /* Following functions are local */
  96. /*****************************************************************************
  97.  * SetOffset: build offset array for conversion functions
  98.  *****************************************************************************
  99.  * This function will build an offset array used in later conversion functions.
  100.  * It will also set horizontal and vertical scaling indicators. The p_offset
  101.  * structure has interleaved Y and U/V offsets.
  102.  *****************************************************************************/
  103. static void SetOffset( int i_width, int i_height, int i_pic_width,
  104.                        int i_pic_height, bool *pb_hscale,
  105.                        int *pi_vscale, int *p_offset )
  106. {
  107.     int i_x;                                    /* x position in destination */
  108.     int i_scale_count;                                     /* modulo counter */
  109.     /*
  110.      * Prepare horizontal offset array
  111.      */
  112.     if( i_pic_width - i_width == 0 )
  113.     {
  114.         /* No horizontal scaling: YUV conversion is done directly to picture */
  115.         *pb_hscale = 0;
  116.     }
  117.     else if( i_pic_width - i_width > 0 )
  118.     {
  119.         int i_dummy = 0;
  120.         /* Prepare scaling array for horizontal extension */
  121.         *pb_hscale = 1;
  122.         i_scale_count = i_pic_width;
  123.         for( i_x = i_width; i_x--; )
  124.         {
  125.             while( (i_scale_count -= i_width) > 0 )
  126.             {
  127.                 *p_offset++ = 0;
  128.                 *p_offset++ = 0;
  129.             }
  130.             *p_offset++ = 1;
  131.             *p_offset++ = i_dummy;
  132.             i_dummy = 1 - i_dummy;
  133.             i_scale_count += i_pic_width;
  134.         }
  135.     }
  136.     else /* if( i_pic_width - i_width < 0 ) */
  137.     {
  138.         int i_remainder = 0;
  139.         int i_jump;
  140.         /* Prepare scaling array for horizontal reduction */
  141.         *pb_hscale = 1;
  142.         i_scale_count = i_width;
  143.         for( i_x = i_pic_width; i_x--; )
  144.         {
  145.             i_jump = 1;
  146.             while( (i_scale_count -= i_pic_width) > 0 )
  147.             {
  148.                 i_jump += 1;
  149.             }
  150.             *p_offset++ = i_jump;
  151.             *p_offset++ = ( i_jump += i_remainder ) >> 1;
  152.             i_remainder = i_jump & 1;
  153.             i_scale_count += i_width;
  154.         }
  155.     }
  156.     /*
  157.      * Set vertical scaling indicator
  158.      */
  159.     if( i_pic_height - i_height == 0 )
  160.     {
  161.         *pi_vscale = 0;
  162.     }
  163.     else if( i_pic_height - i_height > 0 )
  164.     {
  165.         *pi_vscale = 1;
  166.     }
  167.     else /* if( i_pic_height - i_height < 0 ) */
  168.     {
  169.         *pi_vscale = -1;
  170.     }
  171. }