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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * yuvp.c: YUVP to YUVA/RGBA chroma converter
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * $Id: 72c6fb8898a01522b0fa3d517944ab11accc06fd $
  6.  *
  7.  * Authors: Laurent Aimar < fenrir @ videolan.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_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_vout.h>
  32. #include "vlc_filter.h"
  33. #include <assert.h>
  34. /* TODO:
  35.  *  Add anti-aliasing support (specially for DVD where only 4 colors are used)
  36.  */
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. static int  Open ( vlc_object_t * );
  41. static void Close( vlc_object_t * );
  42. vlc_module_begin ()
  43.     set_description( N_("YUVP converter") )
  44.     set_capability( "video filter2", 10 )
  45.     set_callbacks( Open, Close )
  46. vlc_module_end ()
  47. /****************************************************************************
  48.  * Local prototypes
  49.  ****************************************************************************/
  50. static picture_t *Filter( filter_t *, picture_t * );
  51. static void Yuv2Rgb( uint8_t *r, uint8_t *g, uint8_t *b, int y1, int u1, int v1 );
  52. /*****************************************************************************
  53.  * Open: probe the filter and return score
  54.  *****************************************************************************/
  55. static int Open( vlc_object_t *p_this )
  56. {
  57.     filter_t *p_filter = (filter_t*)p_this;
  58.     /* It only supports YUVP to YUVA/RGBA without scaling
  59.      * (if scaling is required another filter can do it) */
  60.     if( p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','P') ||
  61.         ( p_filter->fmt_out.video.i_chroma != VLC_FOURCC('Y','U','V','A') &&
  62.           p_filter->fmt_out.video.i_chroma != VLC_FOURCC('R','G','B','A') ) ||
  63.         p_filter->fmt_in.video.i_width  != p_filter->fmt_out.video.i_width ||
  64.         p_filter->fmt_in.video.i_height != p_filter->fmt_out.video.i_height )
  65.     {
  66.         return VLC_EGENERIC;
  67.     }
  68.     p_filter->pf_video_filter = Filter;
  69.     msg_Dbg( p_filter, "YUVP to %4.4s converter",
  70.              (const char*)&p_filter->fmt_out.video.i_chroma );
  71.     return VLC_SUCCESS;
  72. }
  73. /*****************************************************************************
  74.  * Close: clean up the filter
  75.  *****************************************************************************/
  76. static void Close( vlc_object_t *p_this )
  77. {
  78.     VLC_UNUSED(p_this );
  79. }
  80. /****************************************************************************
  81.  * Filter: the whole thing
  82.  ****************************************************************************/
  83. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  84. {
  85.     picture_t *p_out;
  86.     if( !p_pic )
  87.         return NULL;
  88.     const video_palette_t *p_yuvp = p_filter->fmt_in.video.p_palette;
  89.     assert( p_yuvp != NULL );
  90.     assert( p_filter->fmt_in.video.i_chroma == VLC_FOURCC('Y','U','V','P') );
  91.     assert( p_filter->fmt_in.video.i_width == p_filter->fmt_out.video.i_width );
  92.     assert( p_filter->fmt_in.video.i_height == p_filter->fmt_out.video.i_height );
  93.     /* Request output picture */
  94.     p_out = filter_NewPicture( p_filter );
  95.     if( !p_out )
  96.     {
  97.         picture_Release( p_pic );
  98.         return NULL;
  99.     }
  100.     if( p_filter->fmt_out.video.i_chroma == VLC_FOURCC('Y','U','V','A') )
  101.     {
  102.         for( unsigned int y = 0; y < p_filter->fmt_in.video.i_height; y++ )
  103.         {
  104.             const uint8_t *p_line = &p_pic->p->p_pixels[y*p_pic->p->i_pitch];
  105.             uint8_t *p_y = &p_out->Y_PIXELS[y*p_out->Y_PITCH];
  106.             uint8_t *p_u = &p_out->U_PIXELS[y*p_out->U_PITCH];
  107.             uint8_t *p_v = &p_out->V_PIXELS[y*p_out->V_PITCH];
  108.             uint8_t *p_a = &p_out->A_PIXELS[y*p_out->A_PITCH];
  109.             for( unsigned int x = 0; x < p_filter->fmt_in.video.i_width; x++ )
  110.             {
  111.                 const int v = p_line[x];
  112.                 if( v > p_yuvp->i_entries )  /* maybe assert ? */
  113.                     continue;
  114.                 p_y[x] = p_yuvp->palette[v][0];
  115.                 p_u[x] = p_yuvp->palette[v][1];
  116.                 p_v[x] = p_yuvp->palette[v][2];
  117.                 p_a[x] = p_yuvp->palette[v][3];
  118.             }
  119.         }
  120.     }
  121.     else
  122.     {
  123.         assert( p_filter->fmt_out.video.i_chroma == VLC_FOURCC('R','G','B','A') );
  124.         /* Create a RGBA palette */
  125.         video_palette_t rgbp;
  126.         rgbp.i_entries = p_yuvp->i_entries;
  127.         for( int i = 0; i < p_yuvp->i_entries; i++ )
  128.         {
  129.             Yuv2Rgb( &rgbp.palette[i][0], &rgbp.palette[i][1], &rgbp.palette[i][2],
  130.                      p_yuvp->palette[i][0], p_yuvp->palette[i][1], p_yuvp->palette[i][2] );
  131.             rgbp.palette[i][3] = p_yuvp->palette[i][3];
  132.         }
  133.         /* */
  134.         for( unsigned int y = 0; y < p_filter->fmt_in.video.i_height; y++ )
  135.         {
  136.             const uint8_t *p_line = &p_pic->p->p_pixels[y*p_pic->p->i_pitch];
  137.             uint8_t *p_rgba = &p_out->p->p_pixels[y*p_out->p->i_pitch];
  138.             for( unsigned int x = 0; x < p_filter->fmt_in.video.i_width; x++ )
  139.             {
  140.                 const int v = p_line[x];
  141.                 if( v > rgbp.i_entries )  /* maybe assert ? */
  142.                     continue;
  143.                 p_rgba[4*x+0] = rgbp.palette[v][0];
  144.                 p_rgba[4*x+1] = rgbp.palette[v][1];
  145.                 p_rgba[4*x+2] = rgbp.palette[v][2];
  146.                 p_rgba[4*x+3] = rgbp.palette[v][3];
  147.             }
  148.         }
  149.     }
  150.     picture_CopyProperties( p_out, p_pic );
  151.     picture_Release( p_pic );
  152.     return p_out;
  153. }
  154. /* FIXME copied from blend.c */
  155. static inline uint8_t vlc_uint8( int v )
  156. {
  157.     if( v > 255 )
  158.         return 255;
  159.     else if( v < 0 )
  160.         return 0;
  161.     return v;
  162. }
  163. static void Yuv2Rgb( uint8_t *r, uint8_t *g, uint8_t *b, int y1, int u1, int v1 )
  164. {
  165.     /* macros used for YUV pixel conversions */
  166. #   define SCALEBITS 10
  167. #   define ONE_HALF  (1 << (SCALEBITS - 1))
  168. #   define FIX(x)    ((int) ((x) * (1<<SCALEBITS) + 0.5))
  169.     int y, cb, cr, r_add, g_add, b_add;
  170.     cb = u1 - 128;
  171.     cr = v1 - 128;
  172.     r_add = FIX(1.40200*255.0/224.0) * cr + ONE_HALF;
  173.     g_add = - FIX(0.34414*255.0/224.0) * cb
  174.             - FIX(0.71414*255.0/224.0) * cr + ONE_HALF;
  175.     b_add = FIX(1.77200*255.0/224.0) * cb + ONE_HALF;
  176.     y = (y1 - 16) * FIX(255.0/219.0);
  177.     *r = vlc_uint8( (y + r_add) >> SCALEBITS );
  178.     *g = vlc_uint8( (y + g_add) >> SCALEBITS );
  179.     *b = vlc_uint8( (y + b_add) >> SCALEBITS );
  180. #undef FIX
  181. }