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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * noise.c : "add noise to image" video filter
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2006 the VideoLAN team
  5.  * $Id: dcd6cdeea9fc0cc4fefda3454c1f635bd4a31910 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- 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 "filter_picture.h"
  34. /*****************************************************************************
  35.  * Local prototypes
  36.  *****************************************************************************/
  37. static int  Create    ( vlc_object_t * );
  38. static void Destroy   ( vlc_object_t * );
  39. static picture_t *Filter( filter_t *, picture_t * );
  40. #define FILTER_PREFIX "noise-"
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. vlc_module_begin ()
  45.     set_description( N_("Noise video filter") )
  46.     set_shortname( N_( "Noise" ))
  47.     set_capability( "video filter2", 0 )
  48.     set_category( CAT_VIDEO )
  49.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  50.     add_shortcut( "noise" )
  51.     set_callbacks( Create, Destroy )
  52. vlc_module_end ()
  53. /*****************************************************************************
  54.  * vout_sys_t: Distort video output method descriptor
  55.  *****************************************************************************
  56.  * This structure is part of the video output thread descriptor.
  57.  * It describes the Distort specific properties of an output thread.
  58.  *****************************************************************************/
  59. struct filter_sys_t
  60. {
  61.     mtime_t last_date;
  62. };
  63. /*****************************************************************************
  64.  * Create: allocates Distort video thread output method
  65.  *****************************************************************************
  66.  * This function allocates and initializes a Distort vout method.
  67.  *****************************************************************************/
  68. static int Create( vlc_object_t *p_this )
  69. {
  70.     filter_t *p_filter = (filter_t *)p_this;
  71.     /* Allocate structure */
  72.     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  73.     if( p_filter->p_sys == NULL )
  74.         return VLC_ENOMEM;
  75.     p_filter->pf_video_filter = Filter;
  76.     p_filter->p_sys->last_date = 0;
  77.     return VLC_SUCCESS;
  78. }
  79. /*****************************************************************************
  80.  * Destroy: destroy Distort video thread output method
  81.  *****************************************************************************
  82.  * Terminate an output method created by DistortCreateOutputMethod
  83.  *****************************************************************************/
  84. static void Destroy( vlc_object_t *p_this )
  85. {
  86.     filter_t *p_filter = (filter_t *)p_this;
  87.     free( p_filter->p_sys );
  88. }
  89. /*****************************************************************************
  90.  * Render: displays previously rendered output
  91.  *****************************************************************************
  92.  * This function send the currently rendered image to Distort image, waits
  93.  * until it is displayed and switch the two rendering buffers, preparing next
  94.  * frame.
  95.  *****************************************************************************/
  96. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  97. {
  98.     picture_t *p_outpic;
  99.     filter_sys_t *p_sys = p_filter->p_sys;
  100.     int i_index;
  101.     mtime_t new_date = mdate();
  102.     if( !p_pic ) return NULL;
  103.     p_outpic = filter_NewPicture( p_filter );
  104.     if( !p_outpic )
  105.     {
  106.         msg_Warn( p_filter, "can't get output picture" );
  107.         picture_Release( p_pic );
  108.         return NULL;
  109.     }
  110.     p_sys->last_date = new_date;
  111.     for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
  112.     {
  113.         uint8_t *p_in = p_pic->p[i_index].p_pixels;
  114.         uint8_t *p_out = p_outpic->p[i_index].p_pixels;
  115.         const int i_num_lines = p_pic->p[i_index].i_visible_lines;
  116.         const int i_num_cols = p_pic->p[i_index].i_visible_pitch;
  117.         const int i_pitch = p_pic->p[i_index].i_pitch;
  118.         int i_line, i_col;
  119.         for( i_line = 0 ; i_line < i_num_lines ; i_line++ )
  120.         {
  121.             if( rand()%8 )
  122.             {
  123.                 /* line isn't noisy */
  124.                 vlc_memcpy( p_out+i_line*i_pitch, p_in+i_line*i_pitch,
  125.                             i_num_cols );
  126.             }
  127.             else
  128.             {
  129.                 /* this line is noisy */
  130.                 int noise_level = rand()%8+2;
  131.                 for( i_col = 0; i_col < i_num_cols ; i_col++ )
  132.                 {
  133.                     if( rand()%noise_level )
  134.                     {
  135.                         p_out[i_line*i_pitch+i_col] =
  136.                             p_in[i_line*i_pitch+i_col];
  137.                     }
  138.                     else
  139.                     {
  140.                         p_out[i_line*i_pitch+i_col] = (rand()%3)*0x7f;
  141.                     }
  142.                 }
  143.             }
  144.         }
  145.     }
  146.     return CopyInfoAndRelease( p_outpic, p_pic );
  147. }