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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * sharpen.c: Sharpen video filter
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2007 the VideoLAN team
  5.  * $Id: 135f21b49ceff5558de68c10a849d636c5f49dac $
  6.  *
  7.  * Author: Jérémy DEMEULE <dj_mulder at djduron dot no-ip dot org>
  8.  *         Jean-Baptiste Kempf <jb at videolan dot org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /* The sharpen filter. */
  25. /*
  26.  * static int filter[] = { -1, -1, -1,
  27.  *                         -1,  8, -1,
  28.  *                         -1, -1, -1 };
  29.  */
  30. /*****************************************************************************
  31.  * Preamble
  32.  *****************************************************************************/
  33. #ifdef HAVE_CONFIG_H
  34. # include "config.h"
  35. #endif
  36. #include <vlc_common.h>
  37. #include <vlc_plugin.h>
  38. #include <vlc_vout.h>
  39. #include "vlc_filter.h"
  40. #include "filter_picture.h"
  41. #define SIG_TEXT N_("Sharpen strength (0-2)")
  42. #define SIG_LONGTEXT N_("Set the Sharpen strength, between 0 and 2. Defaults to 0.05.")
  43. /*****************************************************************************
  44.  * Local prototypes
  45.  *****************************************************************************/
  46. static int  Create    ( vlc_object_t * );
  47. static void Destroy   ( vlc_object_t * );
  48. static picture_t *Filter( filter_t *, picture_t * );
  49. static int SharpenCallback( vlc_object_t *, char const *,
  50.                             vlc_value_t, vlc_value_t, void * );
  51. #define FILTER_PREFIX "sharpen-"
  52. /*****************************************************************************
  53.  * Module descriptor
  54.  *****************************************************************************/
  55. vlc_module_begin ()
  56.     set_description( N_("Augment contrast between contours.") )
  57.     set_shortname( N_("Sharpen video filter") )
  58.     set_category( CAT_VIDEO )
  59.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  60.     set_capability( "video filter2", 0 )
  61.     add_float_with_range( "sharpen-sigma", 0.05, 0.0, 2.0, NULL,
  62.         SIG_TEXT, SIG_LONGTEXT, false )
  63.     add_shortcut( "sharpen" )
  64.     set_callbacks( Create, Destroy )
  65. vlc_module_end ()
  66. static const char *const ppsz_filter_options[] = {
  67.     "sigma", NULL
  68. };
  69. /*****************************************************************************
  70.  * filter_sys_t: Sharpen video filter descriptor
  71.  *****************************************************************************
  72.  * This structure is part of the video output thread descriptor.
  73.  * It describes the Sharpen specific properties of an output thread.
  74.  *****************************************************************************/
  75. struct filter_sys_t
  76. {
  77.     vlc_mutex_t lock;
  78.     int tab_precalc[512];
  79. };
  80. /*****************************************************************************
  81.  * clip: avoid negative value and value > 255
  82.  *****************************************************************************/
  83. inline static int32_t clip( int32_t a )
  84. {
  85.     return (a > 255) ? 255 : (a < 0) ? 0 : a;
  86. }
  87. static void init_precalc_table(filter_sys_t *p_filter, float sigma)
  88. {
  89.     for(int i = 0; i < 512; ++i)
  90.     {
  91.         p_filter->tab_precalc[i] = (i - 256) * sigma;
  92.     }
  93. }
  94. /*****************************************************************************
  95.  * Create: allocates Sharpen video thread output method
  96.  *****************************************************************************
  97.  * This function allocates and initializes a Sharpen vout method.
  98.  *****************************************************************************/
  99. static int Create( vlc_object_t *p_this )
  100. {
  101.     filter_t *p_filter = (filter_t *)p_this;
  102.     /* Allocate structure */
  103.     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  104.     if( p_filter->p_sys == NULL )
  105.         return VLC_ENOMEM;
  106.     p_filter->pf_video_filter = Filter;
  107.     config_ChainParse( p_filter, FILTER_PREFIX, ppsz_filter_options,
  108.                    p_filter->p_cfg );
  109.     float sigma = var_CreateGetFloatCommand( p_filter, FILTER_PREFIX "sigma" );
  110.     init_precalc_table(p_filter->p_sys, sigma);
  111.     vlc_mutex_init( &p_filter->p_sys->lock );
  112.     var_AddCallback( p_filter, FILTER_PREFIX "sigma",
  113.                      SharpenCallback, p_filter->p_sys );
  114.     return VLC_SUCCESS;
  115. }
  116. /*****************************************************************************
  117.  * Destroy: destroy Sharpen video thread output method
  118.  *****************************************************************************
  119.  * Terminate an output method created by SharpenCreateOutputMethod
  120.  *****************************************************************************/
  121. static void Destroy( vlc_object_t *p_this )
  122. {
  123.     filter_t *p_filter = (filter_t *)p_this;
  124.     filter_sys_t *p_sys = p_filter->p_sys;
  125.     var_DelCallback( p_filter, FILTER_PREFIX "sigma", SharpenCallback, p_sys );
  126.     vlc_mutex_destroy( &p_sys->lock );
  127.     free( p_sys );
  128. }
  129. /*****************************************************************************
  130.  * Render: displays previously rendered output
  131.  *****************************************************************************
  132.  * This function send the currently rendered image to Invert image, waits
  133.  * until it is displayed and switch the two rendering buffers, preparing next
  134.  * frame.
  135.  *****************************************************************************/
  136. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  137. {
  138.     picture_t *p_outpic;
  139.     int i, j;
  140.     uint8_t *p_src = NULL;
  141.     uint8_t *p_out = NULL;
  142.     int i_src_pitch;
  143.     int pix;
  144.     const int v1 = -1;
  145.     const int v2 = 3; /* 2^3 = 8 */
  146.     if( !p_pic ) return NULL;
  147.     p_outpic = filter_NewPicture( p_filter );
  148.     if( !p_outpic )
  149.     {
  150.         picture_Release( p_pic );
  151.         return NULL;
  152.     }
  153.     /* process the Y plane */
  154.     p_src = p_pic->p[Y_PLANE].p_pixels;
  155.     p_out = p_outpic->p[Y_PLANE].p_pixels;
  156.     i_src_pitch = p_pic->p[Y_PLANE].i_visible_pitch;
  157.     /* perform convolution only on Y plane. Avoid border line. */
  158.     vlc_mutex_lock( &p_filter->p_sys->lock );
  159.     for( i = 0; i < p_pic->p[Y_PLANE].i_visible_lines; i++ )
  160.     {
  161.         if( (i == 0) || (i == p_pic->p[Y_PLANE].i_visible_lines - 1) )
  162.         {
  163.             for( j = 0; j < p_pic->p[Y_PLANE].i_visible_pitch; j++ )
  164.                 p_out[i * i_src_pitch + j] = clip( p_src[i * i_src_pitch + j] );
  165.             continue ;
  166.         }
  167.         for( j = 0; j < p_pic->p[Y_PLANE].i_visible_pitch; j++ )
  168.         {
  169.             if( (j == 0) || (j == p_pic->p[Y_PLANE].i_visible_pitch - 1) )
  170.             {
  171.                 p_out[i * i_src_pitch + j] = p_src[i * i_src_pitch + j];
  172.                 continue ;
  173.             }
  174.             pix = (p_src[(i - 1) * i_src_pitch + j - 1] * v1) +
  175.                   (p_src[(i - 1) * i_src_pitch + j    ] * v1) +
  176.                   (p_src[(i - 1) * i_src_pitch + j + 1] * v1) +
  177.                   (p_src[(i    ) * i_src_pitch + j - 1] * v1) +
  178.                   (p_src[(i    ) * i_src_pitch + j    ] << v2) +
  179.                   (p_src[(i    ) * i_src_pitch + j + 1] * v1) +
  180.                   (p_src[(i + 1) * i_src_pitch + j - 1] * v1) +
  181.                   (p_src[(i + 1) * i_src_pitch + j    ] * v1) +
  182.                   (p_src[(i + 1) * i_src_pitch + j + 1] * v1);
  183.            pix = pix >= 0 ? clip(pix) : -clip(pix * -1);
  184.            p_out[i * i_src_pitch + j] = clip( p_src[i * i_src_pitch + j] +
  185.                p_filter->p_sys->tab_precalc[pix + 256] );
  186.         }
  187.     }
  188.     vlc_mutex_unlock( &p_filter->p_sys->lock );
  189.     vlc_memcpy( p_outpic->p[U_PLANE].p_pixels, p_pic->p[U_PLANE].p_pixels,
  190.                 p_outpic->p[U_PLANE].i_lines * p_outpic->p[U_PLANE].i_pitch );
  191.     vlc_memcpy( p_outpic->p[V_PLANE].p_pixels, p_pic->p[V_PLANE].p_pixels,
  192.                 p_outpic->p[V_PLANE].i_lines * p_outpic->p[V_PLANE].i_pitch );
  193.     return CopyInfoAndRelease( p_outpic, p_pic );
  194. }
  195. static int SharpenCallback( vlc_object_t *p_this, char const *psz_var,
  196.                             vlc_value_t oldval, vlc_value_t newval,
  197.                             void *p_data )
  198. {
  199.     VLC_UNUSED(p_this); VLC_UNUSED(oldval); VLC_UNUSED(psz_var);
  200.     filter_sys_t *p_sys = (filter_sys_t *)p_data;
  201.     vlc_mutex_lock( &p_sys->lock );
  202.     init_precalc_table(p_sys,  __MIN( 2., __MAX( 0., newval.f_float ) ));
  203.     vlc_mutex_unlock( &p_sys->lock );
  204.     return VLC_SUCCESS;
  205. }