]> git.sesse.net Git - vlc/blob - modules/video_filter/noise.c
eb26d3b4946adafd625c75b47333670334698a59
[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 #include <vlc_vout.h>
35
36 #include "vlc_filter.h"
37 #include "filter_picture.h"
38
39 /*****************************************************************************
40  * Local prototypes
41  *****************************************************************************/
42 static int  Create    ( vlc_object_t * );
43 static void Destroy   ( vlc_object_t * );
44
45 static picture_t *Filter( filter_t *, picture_t * );
46
47 #define FILTER_PREFIX "noise-"
48
49 /*****************************************************************************
50  * Module descriptor
51  *****************************************************************************/
52 vlc_module_begin();
53     set_description( N_("Noise video filter") );
54     set_shortname( N_( "Noise" ));
55     set_capability( "video filter2", 0 );
56     set_category( CAT_VIDEO );
57     set_subcategory( SUBCAT_VIDEO_VFILTER );
58
59     add_shortcut( "noise" );
60     set_callbacks( Create, Destroy );
61 vlc_module_end();
62
63 /*****************************************************************************
64  * vout_sys_t: Distort video output method descriptor
65  *****************************************************************************
66  * This structure is part of the video output thread descriptor.
67  * It describes the Distort specific properties of an output thread.
68  *****************************************************************************/
69 struct filter_sys_t
70 {
71     mtime_t last_date;
72 };
73
74 /*****************************************************************************
75  * Create: allocates Distort video thread output method
76  *****************************************************************************
77  * This function allocates and initializes a Distort vout method.
78  *****************************************************************************/
79 static int Create( vlc_object_t *p_this )
80 {
81     filter_t *p_filter = (filter_t *)p_this;
82
83     /* Allocate structure */
84     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
85     if( p_filter->p_sys == NULL )
86     {
87         msg_Err( p_filter, "out of memory" );
88         return VLC_ENOMEM;
89     }
90
91     p_filter->pf_video_filter = Filter;
92
93     p_filter->p_sys->last_date = 0;
94
95     return VLC_SUCCESS;
96 }
97
98 /*****************************************************************************
99  * Destroy: destroy Distort video thread output method
100  *****************************************************************************
101  * Terminate an output method created by DistortCreateOutputMethod
102  *****************************************************************************/
103 static void Destroy( vlc_object_t *p_this )
104 {
105     filter_t *p_filter = (filter_t *)p_this;
106     free( p_filter->p_sys );
107 }
108
109 /*****************************************************************************
110  * Render: displays previously rendered output
111  *****************************************************************************
112  * This function send the currently rendered image to Distort image, waits
113  * until it is displayed and switch the two rendering buffers, preparing next
114  * frame.
115  *****************************************************************************/
116 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
117 {
118     picture_t *p_outpic;
119     filter_sys_t *p_sys = p_filter->p_sys;
120     int i_index;
121     mtime_t new_date = mdate();
122
123     if( !p_pic ) return NULL;
124
125     p_outpic = p_filter->pf_vout_buffer_new( p_filter );
126     if( !p_outpic )
127     {
128         msg_Warn( p_filter, "can't get output picture" );
129         if( p_pic->pf_release )
130             p_pic->pf_release( p_pic );
131         return NULL;
132     }
133
134     p_sys->last_date = new_date;
135
136     for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
137     {
138         uint8_t *p_in = p_pic->p[i_index].p_pixels;
139         uint8_t *p_out = p_outpic->p[i_index].p_pixels;
140
141         const int i_num_lines = p_pic->p[i_index].i_visible_lines;
142         const int i_num_cols = p_pic->p[i_index].i_visible_pitch;
143         const int i_pitch = p_pic->p[i_index].i_pitch;
144
145         int i_line, i_col;
146
147         for( i_line = 0 ; i_line < i_num_lines ; i_line++ )
148         {
149             if( rand()%8 )
150             {
151                 /* line isn't noisy */
152                 vlc_memcpy( p_out+i_line*i_pitch, p_in+i_line*i_pitch,
153                             i_num_cols );
154             }
155             else
156             {
157                 /* this line is noisy */
158                 int noise_level = rand()%8+2;
159                 for( i_col = 0; i_col < i_num_cols ; i_col++ )
160                 {
161                     if( rand()%noise_level )
162                     {
163                         p_out[i_line*i_pitch+i_col] =
164                             p_in[i_line*i_pitch+i_col];
165                     }
166                     else
167                     {
168                         p_out[i_line*i_pitch+i_col] = (rand()%3)*0x7f;
169                     }
170                 }
171             }
172         }
173     }
174
175     return CopyInfoAndRelease( p_outpic, p_pic );
176 }