i420_rgb8.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

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