]> git.sesse.net Git - vlc/blob - modules/video_filter/noise.c
No full point at end of configuration item short text
[vlc] / modules / video_filter / noise.c
1 /*****************************************************************************
2  * noise.c : "add noise to image" video filter
3  *****************************************************************************
4  * Copyright (C) 2000-2006 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34
35 #include <vlc_filter.h>
36 #include "filter_picture.h"
37
38 /*****************************************************************************
39  * Local prototypes
40  *****************************************************************************/
41 static int  Create    ( vlc_object_t * );
42 static picture_t *Filter( filter_t *, picture_t * );
43
44 #define FILTER_PREFIX "noise-"
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49 vlc_module_begin ()
50     set_description( N_("Noise video filter") )
51     set_shortname( N_( "Noise" ))
52     set_capability( "video filter2", 0 )
53     set_category( CAT_VIDEO )
54     set_subcategory( SUBCAT_VIDEO_VFILTER )
55
56     add_shortcut( "noise" )
57     set_callbacks( Create, NULL )
58 vlc_module_end ()
59
60 /*****************************************************************************
61  * Create: allocates Distort video thread output method
62  *****************************************************************************
63  * This function allocates and initializes a Distort vout method.
64  *****************************************************************************/
65 static int Create( vlc_object_t *p_this )
66 {
67     filter_t *p_filter = (filter_t *)p_this;
68     p_filter->pf_video_filter = Filter;
69
70     return VLC_SUCCESS;
71 }
72
73 /*****************************************************************************
74  * Render: displays previously rendered output
75  *****************************************************************************
76  * This function send the currently rendered image to Distort image, waits
77  * until it is displayed and switch the two rendering buffers, preparing next
78  * frame.
79  *****************************************************************************/
80 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
81 {
82     picture_t *p_outpic;
83     int i_index;
84
85     if( !p_pic ) return NULL;
86
87     p_outpic = filter_NewPicture( p_filter );
88     if( !p_outpic )
89     {
90         msg_Warn( p_filter, "can't get output picture" );
91         picture_Release( p_pic );
92         return NULL;
93     }
94
95     for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
96     {
97         uint8_t *p_in = p_pic->p[i_index].p_pixels;
98         uint8_t *p_out = p_outpic->p[i_index].p_pixels;
99
100         const int i_num_lines = p_pic->p[i_index].i_visible_lines;
101         const int i_num_cols = p_pic->p[i_index].i_visible_pitch;
102         const int i_pitch = p_pic->p[i_index].i_pitch;
103
104         int i_line, i_col;
105
106         for( i_line = 0 ; i_line < i_num_lines ; i_line++ )
107         {
108             if( rand()%8 )
109             {
110                 /* line isn't noisy */
111                 vlc_memcpy( p_out+i_line*i_pitch, p_in+i_line*i_pitch,
112                             i_num_cols );
113             }
114             else
115             {
116                 /* this line is noisy */
117                 int noise_level = rand()%8+2;
118                 for( i_col = 0; i_col < i_num_cols ; i_col++ )
119                 {
120                     if( rand()%noise_level )
121                     {
122                         p_out[i_line*i_pitch+i_col] =
123                             p_in[i_line*i_pitch+i_col];
124                     }
125                     else
126                     {
127                         p_out[i_line*i_pitch+i_col] = (rand()%3)*0x7f;
128                     }
129                 }
130             }
131         }
132     }
133
134     return CopyInfoAndRelease( p_outpic, p_pic );
135 }