mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
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>
This commit is contained in:
parent
7968b1f853
commit
e5451f25d3
@ -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",),
|
||||
|
Loading…
Reference in New Issue
Block a user