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