summaryrefslogtreecommitdiffstats
path: root/libavfilter/asrc_sine.c
diff options
context:
space:
mode:
authorKyle Swanson <k@ylo.ph>2015-10-28 13:03:43 -0500
committerMichael Niedermayer <michael@niedermayer.cc>2015-10-29 17:43:13 +0100
commite5451f25d3c2728943d31da2cf7975f33f5c9831 (patch)
treeb00a2fdadb4421239ad178bc3bbe4c9635f2624c /libavfilter/asrc_sine.c
parent7968b1f85339694e05ea9f904d20a7233e652c43 (diff)
downloadffmpeg-streaming-e5451f25d3c2728943d31da2cf7975f33f5c9831.zip
ffmpeg-streaming-e5451f25d3c2728943d31da2cf7975f33f5c9831.tar.gz
avfilter/asrc_sine: fix options typos
Signed-off-by: Kyle Swanson <k@ylo.ph> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/asrc_sine.c')
-rw-r--r--libavfilter/asrc_sine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/asrc_sine.c b/libavfilter/asrc_sine.c
index f361faa..2a2f3c3 100644
--- a/libavfilter/asrc_sine.c
+++ b/libavfilter/asrc_sine.c
@@ -69,8 +69,8 @@ typedef struct {
static const AVOption sine_options[] = {
OPT_DBL("frequency", frequency, 440, 0, DBL_MAX, "set the sine frequency",),
OPT_DBL("f", frequency, 440, 0, DBL_MAX, "set the sine frequency",),
- OPT_DBL("beep_factor", beep_factor, 0, 0, DBL_MAX, "set the beep fequency factor",),
- OPT_DBL("b", beep_factor, 0, 0, DBL_MAX, "set the beep fequency factor",),
+ OPT_DBL("beep_factor", beep_factor, 0, 0, DBL_MAX, "set the beep frequency factor",),
+ OPT_DBL("b", beep_factor, 0, 0, DBL_MAX, "set the beep frequency factor",),
OPT_INT("sample_rate", sample_rate, 44100, 1, INT_MAX, "set the sample rate",),
OPT_INT("r", sample_rate, 44100, 1, INT_MAX, "set the sample rate",),
OPT_DUR("duration", duration, 0, 0, INT64_MAX, "set the audio duration",),
OpenPOWER on IntegriCloud