Index: ChangeLog =================================================================== --- ChangeLog (revision 18570) +++ ChangeLog (working copy) @@ -160,7 +160,7 @@ * screenshot filter * -af pan command line fix, now outputs the right number of channels and accepts values < 0 or > 1. Channel order had to be changed. - * -af sinesupress to remove a sine at a certain frequency + * -af sinesuppress to remove a sine at a certain frequency * negative stride support in swscale * big-endian and AltiVec fixes and performance improvements for swscaler, color conversions and post-processing Index: DOCS/man/en/mplayer.1 =================================================================== --- DOCS/man/en/mplayer.1 (revision 18574) +++ DOCS/man/en/mplayer.1 (working copy) @@ -4106,7 +4106,7 @@ .PD 1 . .TP -.B sinesupress[=freq:delay] +.B sinesuppress[=freq:delay] Remove a sine at the specified frequency. Useful to get rid of the 50/60hz noise on low quality audio equipment. It probably only works on mono input. Index: DOCS/man/cs/mplayer.1 =================================================================== --- DOCS/man/cs/mplayer.1 (revision 18570) +++ DOCS/man/cs/mplayer.1 (working copy) @@ -4094,7 +4094,7 @@ .PD 1 . .TP -.B sinesupress[=frekv:zpoždění] +.B sinesuppress[=frekv:zpoždění] Odstaní sinusovku zadaného kmitočtu. Vhodné pro odstranění 50/60Hz rušení na nekvalitním audio zařízení. Pravděpodobně pracuje pouze na mono vstupu. Index: DOCS/man/fr/mplayer.1 =================================================================== --- DOCS/man/fr/mplayer.1 (revision 18570) +++ DOCS/man/fr/mplayer.1 (working copy) @@ -4358,7 +4358,7 @@ .PD 1 . .TP -.B sinesupress[=freq:decay] +.B sinesuppress[=freq:decay] Enlčve un sinosoďde ŕ la fréquence spécifiée. Utile pour supprimer le bruit ŕ 50/60hz que l'on trouve dans les équipements audios bon marchés. Index: DOCS/man/de/mplayer.1 =================================================================== --- DOCS/man/de/mplayer.1 (revision 18570) +++ DOCS/man/de/mplayer.1 (working copy) @@ -4317,7 +4317,7 @@ .PD 1 . .TP -.B sinesupress[=freq:delay] +.B sinesuppress[=freq:delay] Entfernt einen Sinus an der angegebenen Frequenz. Nützlich, um bei Audiogeräten niedriger Qualität das 50/60hz-Rauschen loszuwerden. Index: DOCS/man/hu/mplayer.1 =================================================================== --- DOCS/man/hu/mplayer.1 (revision 18570) +++ DOCS/man/hu/mplayer.1 (working copy) @@ -4126,7 +4126,7 @@ .PD 1 . .TP -.B sinesupress[=frek:késleltetés] +.B sinesuppress[=frek:késleltetés] Eltávolít egy szinuszgörbét a megadott frekvencián. Hasznos az 50/60 Hz-es zaj eltávolításához gyenge minőségű audió berendezésnél. Valószínűleg csak mono bemeneten működik. Index: libmpdemux/tvi_v4l2.c =================================================================== --- libmpdemux/tvi_v4l2.c (revision 18570) +++ libmpdemux/tvi_v4l2.c (working copy) @@ -687,7 +687,7 @@ case TVI_CONTROL_TUN_SET_FREQ: #if 0 set_mute(priv, 1); - usleep(100000); // wait to supress noise during switching + usleep(100000); // wait to suppress noise during switching #endif frequency.tuner = 0; frequency.type = V4L2_TUNER_ANALOG_TV; @@ -698,7 +698,7 @@ return TVI_CONTROL_FALSE; } #if 0 - usleep(100000); // wait to supress noise during switching + usleep(100000); // wait to suppress noise during switching set_mute(priv, 0); #endif return TVI_CONTROL_TRUE; Index: libmpdemux/tvi_v4l.c =================================================================== --- libmpdemux/tvi_v4l.c (revision 18570) +++ libmpdemux/tvi_v4l.c (working copy) @@ -1147,7 +1147,7 @@ mp_msg(MSGT_TV, MSGL_ERR, "ioctl set freq failed: %s\n", strerror(errno)); return(TVI_CONTROL_FALSE); } - usleep(100000); // wait to supress noise during switching + usleep(100000); // wait to suppress noise during switching if (priv->capability.audios) { priv->audio[priv->audio_id].flags &= ~VIDEO_AUDIO_MUTE; Index: libaf/Makefile =================================================================== --- libaf/Makefile (revision 18570) +++ libaf/Makefile (working copy) @@ -17,7 +17,7 @@ af_karaoke.c \ af_pan.c \ af_resample.c \ - af_sinesupress.c \ + af_sinesuppress.c \ af_sub.c \ af_surround.c \ af_sweep.c \ Index: libaf/af_karaoke.c =================================================================== --- libaf/af_karaoke.c (revision 18570) +++ libaf/af_karaoke.c (working copy) @@ -46,7 +46,7 @@ register int i; /* - FIXME1 add a low band pass filter to avoid supressing + FIXME1 add a low band pass filter to avoid suppressing centered bass/drums FIXME2 better calculated* atenuation factor */ Index: libaf/af.c =================================================================== --- libaf/af.c (revision 18570) +++ libaf/af.c (working copy) @@ -29,7 +29,7 @@ extern af_info_t af_info_hrtf; extern af_info_t af_info_ladspa; extern af_info_t af_info_center; -extern af_info_t af_info_sinesupress; +extern af_info_t af_info_sinesuppress; extern af_info_t af_info_karaoke; static af_info_t* filter_list[]={ @@ -59,7 +59,7 @@ &af_info_ladspa, #endif &af_info_center, - &af_info_sinesupress, + &af_info_sinesuppress, &af_info_karaoke, NULL };