| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
#ifdef HAVE_CONFIG_H |
|---|
| 28 |
# include "config.h" |
|---|
| 29 |
#endif |
|---|
| 30 |
|
|---|
| 31 |
#include <vlc_common.h> |
|---|
| 32 |
#include <vlc_plugin.h> |
|---|
| 33 |
#include <vlc_vout.h> |
|---|
| 34 |
#include <vlc_aout.h> |
|---|
| 35 |
|
|---|
| 36 |
#include "visual.h" |
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
#define ELIST_TEXT N_( "Effects list" ) |
|---|
| 42 |
#define ELIST_LONGTEXT N_( \ |
|---|
| 43 |
"A list of visual effect, separated by commas.\n" \ |
|---|
| 44 |
"Current effects include: dummy, scope, spectrum." ) |
|---|
| 45 |
|
|---|
| 46 |
#define WIDTH_TEXT N_( "Video width" ) |
|---|
| 47 |
#define WIDTH_LONGTEXT N_( \ |
|---|
| 48 |
"The width of the effects video window, in pixels." ) |
|---|
| 49 |
|
|---|
| 50 |
#define HEIGHT_TEXT N_( "Video height" ) |
|---|
| 51 |
#define HEIGHT_LONGTEXT N_( \ |
|---|
| 52 |
"The height of the effects video window, in pixels." ) |
|---|
| 53 |
|
|---|
| 54 |
#define NBBANDS_TEXT N_( "Number of bands" ) |
|---|
| 55 |
#define NBBANDS_LONGTEXT N_( \ |
|---|
| 56 |
"Number of bands used by spectrum analyzer, should be 20 or 80." ) |
|---|
| 57 |
#define SPNBBANDS_LONGTEXT N_( \ |
|---|
| 58 |
"Number of bands used by the spectrometer, from 20 to 80." ) |
|---|
| 59 |
|
|---|
| 60 |
#define SEPAR_TEXT N_( "Band separator" ) |
|---|
| 61 |
#define SEPAR_LONGTEXT N_( \ |
|---|
| 62 |
"Number of blank pixels between bands.") |
|---|
| 63 |
|
|---|
| 64 |
#define AMP_TEXT N_( "Amplification" ) |
|---|
| 65 |
#define AMP_LONGTEXT N_( \ |
|---|
| 66 |
"This is a coefficient that modifies the height of the bands.") |
|---|
| 67 |
|
|---|
| 68 |
#define PEAKS_TEXT N_( "Enable peaks" ) |
|---|
| 69 |
#define PEAKS_LONGTEXT N_( \ |
|---|
| 70 |
"Draw \"peaks\" in the spectrum analyzer." ) |
|---|
| 71 |
|
|---|
| 72 |
#define ORIG_TEXT N_( "Enable original graphic spectrum" ) |
|---|
| 73 |
#define ORIG_LONGTEXT N_( \ |
|---|
| 74 |
"Enable the \"flat\" spectrum analyzer in the spectrometer." ) |
|---|
| 75 |
|
|---|
| 76 |
#define BANDS_TEXT N_( "Enable bands" ) |
|---|
| 77 |
#define BANDS_LONGTEXT N_( \ |
|---|
| 78 |
"Draw bands in the spectrometer." ) |
|---|
| 79 |
|
|---|
| 80 |
#define BASE_TEXT N_( "Enable base" ) |
|---|
| 81 |
#define BASE_LONGTEXT N_( \ |
|---|
| 82 |
"Defines whether to draw the base of the bands." ) |
|---|
| 83 |
|
|---|
| 84 |
#define RADIUS_TEXT N_( "Base pixel radius" ) |
|---|
| 85 |
#define RADIUS_LONGTEXT N_( \ |
|---|
| 86 |
"Defines radius size in pixels, of base of bands(beginning)." ) |
|---|
| 87 |
|
|---|
| 88 |
#define SSECT_TEXT N_( "Spectral sections" ) |
|---|
| 89 |
#define SSECT_LONGTEXT N_( \ |
|---|
| 90 |
"Determines how many sections of spectrum will exist." ) |
|---|
| 91 |
|
|---|
| 92 |
#define PEAK_HEIGHT_TEXT N_( "Peak height" ) |
|---|
| 93 |
#define PEAK_HEIGHT_LONGTEXT N_( \ |
|---|
| 94 |
"Total pixel height of the peak items." ) |
|---|
| 95 |
|
|---|
| 96 |
#define PEAK_WIDTH_TEXT N_( "Peak extra width" ) |
|---|
| 97 |
#define PEAK_WIDTH_LONGTEXT N_( \ |
|---|
| 98 |
"Additions or subtractions of pixels on the peak width." ) |
|---|
| 99 |
|
|---|
| 100 |
#define COLOR1_TEXT N_( "V-plane color" ) |
|---|
| 101 |
#define COLOR1_LONGTEXT N_( \ |
|---|
| 102 |
"YUV-Color cube shifting across the V-plane ( 0 - 127 )." ) |
|---|
| 103 |
|
|---|
| 104 |
#define STARS_TEXT N_( "Number of stars" ) |
|---|
| 105 |
#define STARS_LONGTEXT N_( \ |
|---|
| 106 |
"Number of stars to draw with random effect." ) |
|---|
| 107 |
|
|---|
| 108 |
static int Open ( vlc_object_t * ); |
|---|
| 109 |
static void Close ( vlc_object_t * ); |
|---|
| 110 |
|
|---|
| 111 |
vlc_module_begin(); |
|---|
| 112 |
set_shortname( N_("Visualizer")); |
|---|
| 113 |
set_category( CAT_AUDIO ); |
|---|
| 114 |
set_subcategory( SUBCAT_AUDIO_VISUAL ); |
|---|
| 115 |
set_description( N_("Visualizer filter") ); |
|---|
| 116 |
set_section( N_( "General") , NULL ); |
|---|
| 117 |
add_string("effect-list", "spectrum", NULL, |
|---|
| 118 |
ELIST_TEXT, ELIST_LONGTEXT, true ); |
|---|
| 119 |
add_integer("effect-width",VOUT_WIDTH,NULL, |
|---|
| 120 |
WIDTH_TEXT, WIDTH_LONGTEXT, false ); |
|---|
| 121 |
add_integer("effect-height" , VOUT_HEIGHT , NULL, |
|---|
| 122 |
HEIGHT_TEXT, HEIGHT_LONGTEXT, false ); |
|---|
| 123 |
set_section( N_("Spectrum analyser") , NULL ); |
|---|
| 124 |
add_integer("visual-nbbands", 80, NULL, |
|---|
| 125 |
NBBANDS_TEXT, NBBANDS_LONGTEXT, true ); |
|---|
| 126 |
add_integer("visual-separ", 1, NULL, |
|---|
| 127 |
SEPAR_TEXT, SEPAR_LONGTEXT, true ); |
|---|
| 128 |
add_integer("visual-amp", 3, NULL, |
|---|
| 129 |
AMP_TEXT, AMP_LONGTEXT, true ); |
|---|
| 130 |
add_bool("visual-peaks", true, NULL, |
|---|
| 131 |
PEAKS_TEXT, PEAKS_LONGTEXT, true ); |
|---|
| 132 |
set_section( N_("Spectrometer") , NULL ); |
|---|
| 133 |
add_bool("spect-show-original", false, NULL, |
|---|
| 134 |
ORIG_TEXT, ORIG_LONGTEXT, true ); |
|---|
| 135 |
add_bool("spect-show-base", true, NULL, |
|---|
| 136 |
BASE_TEXT, BASE_LONGTEXT, true ); |
|---|
| 137 |
add_integer("spect-radius", 42, NULL, |
|---|
| 138 |
RADIUS_TEXT, RADIUS_LONGTEXT, true ); |
|---|
| 139 |
add_integer("spect-sections", 3, NULL, |
|---|
| 140 |
SSECT_TEXT, SSECT_LONGTEXT, true ); |
|---|
| 141 |
add_integer("spect-color", 80, NULL, |
|---|
| 142 |
COLOR1_TEXT, COLOR1_LONGTEXT, true ); |
|---|
| 143 |
add_bool("spect-show-bands", true, NULL, |
|---|
| 144 |
BANDS_TEXT, BANDS_LONGTEXT, true ); |
|---|
| 145 |
add_integer("spect-nbbands", 32, NULL, |
|---|
| 146 |
NBBANDS_TEXT, SPNBBANDS_LONGTEXT, true ); |
|---|
| 147 |
add_integer("spect-separ", 1, NULL, |
|---|
| 148 |
SEPAR_TEXT, SEPAR_LONGTEXT, true ); |
|---|
| 149 |
add_integer("spect-amp", 8, NULL, |
|---|
| 150 |
AMP_TEXT, AMP_LONGTEXT, true ); |
|---|
| 151 |
add_bool("spect-show-peaks", true, NULL, |
|---|
| 152 |
PEAKS_TEXT, PEAKS_LONGTEXT, true ); |
|---|
| 153 |
add_integer("spect-peak-width", 61, NULL, |
|---|
| 154 |
PEAK_WIDTH_TEXT, PEAK_WIDTH_LONGTEXT, true ); |
|---|
| 155 |
add_integer("spect-peak-height", 1, NULL, |
|---|
| 156 |
PEAK_HEIGHT_TEXT, PEAK_HEIGHT_LONGTEXT, true ); |
|---|
| 157 |
set_capability( "visualization", 0 ); |
|---|
| 158 |
set_callbacks( Open, Close ); |
|---|
| 159 |
add_shortcut( "visualizer"); |
|---|
| 160 |
vlc_module_end(); |
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 |
|
|---|
| 165 |
|
|---|
| 166 |
static void DoWork( aout_instance_t *, aout_filter_t *, |
|---|
| 167 |
aout_buffer_t *, aout_buffer_t * ); |
|---|
| 168 |
static int FilterCallback( vlc_object_t *, char const *, |
|---|
| 169 |
vlc_value_t, vlc_value_t, void * ); |
|---|
| 170 |
static const struct |
|---|
| 171 |
{ |
|---|
| 172 |
const char *psz_name; |
|---|
| 173 |
int (*pf_run)( visual_effect_t *, aout_instance_t *, |
|---|
| 174 |
aout_buffer_t *, picture_t *); |
|---|
| 175 |
} pf_effect_run[]= |
|---|
| 176 |
{ |
|---|
| 177 |
{ "scope", scope_Run }, |
|---|
| 178 |
{ "vuMeter", vuMeter_Run }, |
|---|
| 179 |
{ "spectrum", spectrum_Run }, |
|---|
| 180 |
{ "spectrometer", spectrometer_Run }, |
|---|
| 181 |
{ "dummy", dummy_Run}, |
|---|
| 182 |
{ NULL, dummy_Run} |
|---|
| 183 |
}; |
|---|
| 184 |
|
|---|
| 185 |
|
|---|
| 186 |
|
|---|
| 187 |
|
|---|
| 188 |
static int Open( vlc_object_t *p_this ) |
|---|
| 189 |
{ |
|---|
| 190 |
aout_filter_t *p_filter = (aout_filter_t *)p_this; |
|---|
| 191 |
aout_filter_sys_t *p_sys; |
|---|
| 192 |
vlc_value_t val; |
|---|
| 193 |
|
|---|
| 194 |
char *psz_effects, *psz_parser; |
|---|
| 195 |
video_format_t fmt; |
|---|
| 196 |
|
|---|
| 197 |
|
|---|
| 198 |
if( ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2') && |
|---|
| 199 |
p_filter->input.i_format != VLC_FOURCC('f','i','3','2') ) ) |
|---|
| 200 |
{ |
|---|
| 201 |
return VLC_EGENERIC; |
|---|
| 202 |
} |
|---|
| 203 |
|
|---|
| 204 |
p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) ); |
|---|
| 205 |
if( p_sys == NULL ) |
|---|
| 206 |
return VLC_EGENERIC; |
|---|
| 207 |
|
|---|
| 208 |
p_sys->i_height = config_GetInt( p_filter , "effect-height"); |
|---|
| 209 |
p_sys->i_width = config_GetInt( p_filter , "effect-width"); |
|---|
| 210 |
|
|---|
| 211 |
if( p_sys->i_height < 20 ) p_sys->i_height = 20; |
|---|
| 212 |
if( p_sys->i_width < 20 ) p_sys->i_width = 20; |
|---|
| 213 |
if( (p_sys->i_height % 2 ) != 0 ) p_sys->i_height--; |
|---|
| 214 |
if( (p_sys->i_width % 2 ) != 0 ) p_sys->i_width--; |
|---|
| 215 |
|
|---|
| 216 |
p_sys->i_effect = 0; |
|---|
| 217 |
p_sys->effect = NULL; |
|---|
| 218 |
|
|---|
| 219 |
|
|---|
| 220 |
var_Create( p_filter, "effect-list", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); |
|---|
| 221 |
var_Get( p_filter, "effect-list", &val); |
|---|
| 222 |
psz_parser = psz_effects = strdup( val.psz_string ); |
|---|
| 223 |
free( val.psz_string ); |
|---|
| 224 |
|
|---|
| 225 |
var_AddCallback( p_filter, "effect-list", FilterCallback, NULL ); |
|---|
| 226 |
|
|---|
| 227 |
while( psz_parser && *psz_parser != '\0' ) |
|---|
| 228 |
{ |
|---|
| 229 |
visual_effect_t *p_effect; |
|---|
| 230 |
int i; |
|---|
| 231 |
|
|---|
| 232 |
p_effect = malloc( sizeof( visual_effect_t ) ); |
|---|
| 233 |
if( !p_effect ) |
|---|
| 234 |
break; |
|---|
| 235 |
p_effect->i_width = p_sys->i_width; |
|---|
| 236 |
p_effect->i_height= p_sys->i_height; |
|---|
| 237 |
p_effect->i_nb_chans = aout_FormatNbChannels( &p_filter->input); |
|---|
| 238 |
p_effect->psz_args = NULL; |
|---|
| 239 |
p_effect->p_data = NULL; |
|---|
| 240 |
|
|---|
| 241 |
p_effect->pf_run = NULL; |
|---|
| 242 |
p_effect->psz_name = NULL; |
|---|
| 243 |
|
|---|
| 244 |
for( i = 0; pf_effect_run[i].psz_name != NULL; i++ ) |
|---|
| 245 |
{ |
|---|
| 246 |
if( !strncasecmp( psz_parser, |
|---|
| 247 |
pf_effect_run[i].psz_name, |
|---|
| 248 |
strlen( pf_effect_run[i].psz_name ) ) ) |
|---|
| 249 |
{ |
|---|
| 250 |
p_effect->pf_run = pf_effect_run[i].pf_run; |
|---|
| 251 |
p_effect->psz_name = strdup( pf_effect_run[i].psz_name ); |
|---|
| 252 |
break; |
|---|
| 253 |
} |
|---|
| 254 |
} |
|---|
| 255 |
|
|---|
| 256 |
if( p_effect->psz_name ) |
|---|
| 257 |
{ |
|---|
| 258 |
psz_parser += strlen( p_effect->psz_name ); |
|---|
| 259 |
|
|---|
| 260 |
if( *psz_parser == '{' ) |
|---|
| 261 |
{ |
|---|
| 262 |
char *psz_eoa; |
|---|
| 263 |
|
|---|
| 264 |
psz_parser++; |
|---|
| 265 |
|
|---|
| 266 |
if( ( psz_eoa = strchr( psz_parser, '}') ) == NULL ) |
|---|
| 267 |
{ |
|---|
| 268 |
msg_Err( p_filter, "unable to parse effect list. Aborting"); |
|---|
| 269 |
break; |
|---|
| 270 |
} |
|---|
| 271 |
p_effect->psz_args = |
|---|
| 272 |
strndup( psz_parser, psz_eoa - psz_parser); |
|---|
| 273 |
} |
|---|
| 274 |
TAB_APPEND( p_sys->i_effect, p_sys->effect, p_effect ); |
|---|
| 275 |
} |
|---|
| 276 |
else |
|---|
| 277 |
{ |
|---|
| 278 |
msg_Err( p_filter, "unknown visual effect: %s", psz_parser ); |
|---|
| 279 |
free( p_effect ); |
|---|
| 280 |
} |
|---|
| 281 |
|
|---|
| 282 |
if( strchr( psz_parser, ',' ) ) |
|---|
| 283 |
{ |
|---|
| 284 |
psz_parser = strchr( psz_parser, ',' ) + 1; |
|---|
| 285 |
} |
|---|
| 286 |
else if( strchr( psz_parser, ':' ) ) |
|---|
| 287 |
{ |
|---|
| 288 |
psz_parser = strchr( psz_parser, ':' ) + 1; |
|---|
| 289 |
} |
|---|
| 290 |
else |
|---|
| 291 |
{ |
|---|
| 292 |
break; |
|---|
| 293 |
} |
|---|
| 294 |
} |
|---|
| 295 |
|
|---|
| 296 |
free( psz_effects ); |
|---|
| 297 |
|
|---|
| 298 |
if( !p_sys->i_effect ) |
|---|
| 299 |
{ |
|---|
| 300 |
msg_Err( p_filter, "no effects found" ); |
|---|
| 301 |
free( p_sys ); |
|---|
| 302 |
return VLC_EGENERIC; |
|---|
| 303 |
} |
|---|
| 304 |
|
|---|
| 305 |
|
|---|
| 306 |
memset( &fmt, 0, sizeof(video_format_t) ); |
|---|
| 307 |
|
|---|
| 308 |
fmt.i_width = fmt.i_visible_width = p_sys->i_width; |
|---|
| 309 |
fmt.i_height = fmt.i_visible_height = p_sys->i_height; |
|---|
| 310 |
fmt.i_chroma = VLC_FOURCC('I','4','2','0'); |
|---|
| 311 |
fmt.i_aspect = VOUT_ASPECT_FACTOR * p_sys->i_width/p_sys->i_height; |
|---|
| 312 |
fmt.i_sar_num = fmt.i_sar_den = 1; |
|---|
| 313 |
|
|---|
| 314 |
p_sys->p_vout = vout_Request( p_filter, NULL, &fmt ); |
|---|
| 315 |
if( p_sys->p_vout == NULL ) |
|---|
| 316 |
{ |
|---|
| 317 |
msg_Err( p_filter, "no suitable vout module" ); |
|---|
| 318 |
free( p_sys ); |
|---|
| 319 |
return VLC_EGENERIC; |
|---|
| 320 |
} |
|---|
| 321 |
|
|---|
| 322 |
p_filter->pf_do_work = DoWork; |
|---|
| 323 |
p_filter->b_in_place= 1; |
|---|
| 324 |
|
|---|
| 325 |
return VLC_SUCCESS; |
|---|
| 326 |
} |
|---|
| 327 |
|
|---|
| 328 |
|
|---|
| 329 |
|
|---|
| 330 |
|
|---|
| 331 |
|
|---|
| 332 |
|
|---|
| 333 |
static void DoWork( aout_instance_t *p_aout, aout_filter_t *p_filter, |
|---|
| 334 |
aout_buffer_t *p_in_buf, aout_buffer_t *p_out_buf ) |
|---|
| 335 |
{ |
|---|
| 336 |
aout_filter_sys_t *p_sys = p_filter->p_sys; |
|---|
| 337 |
picture_t *p_outpic; |
|---|
| 338 |
int i; |
|---|
| 339 |
|
|---|
| 340 |
p_out_buf->i_nb_samples = p_in_buf->i_nb_samples; |
|---|
| 341 |
p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * |
|---|
| 342 |
aout_FormatNbChannels( &p_filter->output ) / |
|---|
| 343 |
aout_FormatNbChannels( &p_filter->input ); |
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 |
while( ( p_outpic = vout_CreatePicture( p_sys->p_vout, 0, 0, 3 ) ) == NULL) |
|---|
| 347 |
{ |
|---|
| 348 |
if( !vlc_object_alive (p_aout) ) |
|---|
| 349 |
{ |
|---|
| 350 |
return; |
|---|
| 351 |
} |
|---|
| 352 |
msleep( VOUT_OUTMEM_SLEEP ); |
|---|
| 353 |
} |
|---|
| 354 |
|
|---|
| 355 |
|
|---|
| 356 |
for( i = 0 ; i < p_outpic->i_planes ; i++ ) |
|---|
| 357 |
{ |
|---|
| 358 |
memset( p_outpic->p[i].p_pixels, i > 0 ? 0x80 : 0x00, |
|---|
| 359 |
p_outpic->p[i].i_visible_lines * p_outpic->p[i].i_pitch ); |
|---|
| 360 |
} |
|---|
| 361 |
|
|---|
| 362 |
|
|---|
| 363 |
for( i = 0; i < p_sys->i_effect; i++ ) |
|---|
| 364 |
{ |
|---|
| 365 |
#define p_effect p_sys->effect[i] |
|---|
| 366 |
if( p_effect->pf_run ) |
|---|
| 367 |
{ |
|---|
| 368 |
p_effect->pf_run( p_effect, p_aout, p_out_buf, p_outpic ); |
|---|
| 369 |
} |
|---|
| 370 |
#undef p_effect |
|---|
| 371 |
} |
|---|
| 372 |
|
|---|
| 373 |
vout_DatePicture( p_sys->p_vout, p_outpic, |
|---|
| 374 |
( p_in_buf->start_date + p_in_buf->end_date ) / 2 ); |
|---|
| 375 |
|
|---|
| 376 |
vout_DisplayPicture( p_sys->p_vout, p_outpic ); |
|---|
| 377 |
} |
|---|
| 378 |
|
|---|
| 379 |
|
|---|
| 380 |
|
|---|
| 381 |
|
|---|
| 382 |
static void Close( vlc_object_t *p_this ) |
|---|
| 383 |
{ |
|---|
| 384 |
aout_filter_t * p_filter = (aout_filter_t *)p_this; |
|---|
| 385 |
aout_filter_sys_t *p_sys = p_filter->p_sys; |
|---|
| 386 |
|
|---|
| 387 |
int i; |
|---|
| 388 |
|
|---|
| 389 |
if( p_filter->p_sys->p_vout ) |
|---|
| 390 |
{ |
|---|
| 391 |
vout_Request( p_filter, p_filter->p_sys->p_vout, 0 ); |
|---|
| 392 |
} |
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 |
for( i = 0; i < p_sys->i_effect; i++ ) |
|---|
| 396 |
{ |
|---|
| 397 |
#define p_effect p_sys->effect[i] |
|---|
| 398 |
free( p_effect->p_data ); |
|---|
| 399 |
free( p_effect->psz_name ); |
|---|
| 400 |
free( p_effect->psz_args ); |
|---|
| 401 |
free( p_effect ); |
|---|
| 402 |
#undef p_effect |
|---|
| 403 |
} |
|---|
| 404 |
|
|---|
| 405 |
free( p_sys->effect ); |
|---|
| 406 |
free( p_filter->p_sys ); |
|---|
| 407 |
} |
|---|
| 408 |
|
|---|
| 409 |
|
|---|
| 410 |
|
|---|
| 411 |
|
|---|
| 412 |
static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd, |
|---|
| 413 |
vlc_value_t oldval, vlc_value_t newval, |
|---|
| 414 |
void *p_data ) |
|---|
| 415 |
{ |
|---|
| 416 |
VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); |
|---|
| 417 |
VLC_UNUSED(p_data); VLC_UNUSED(newval); |
|---|
| 418 |
aout_filter_t *p_filter = (aout_filter_t *)p_this; |
|---|
| 419 |
|
|---|
| 420 |
msg_Dbg( p_filter, "we should restart the visual filter" ); |
|---|
| 421 |
return VLC_SUCCESS; |
|---|
| 422 |
} |
|---|
| 423 |
|
|---|