diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-09-07 18:58:36 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-09-07 19:44:25 +0200 |
commit | 15e844ed9d7fceaf114f0c1d790af61560e56010 (patch) | |
tree | 75fc4bed7413b400db17a0e64b6f90fdb559596e /libavfilter/af_silenceremove.c | |
parent | 1d1e8a47b79e6ac4bca0bf26c6746028efe861ce (diff) | |
download | ffmpeg-15e844ed9d7fceaf114f0c1d790af61560e56010.tar.gz |
avfilter/af_silenceremove: fix indentation
Diffstat (limited to 'libavfilter/af_silenceremove.c')
-rw-r--r-- | libavfilter/af_silenceremove.c | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/libavfilter/af_silenceremove.c b/libavfilter/af_silenceremove.c index 65d05b4889..35f4ac5369 100644 --- a/libavfilter/af_silenceremove.c +++ b/libavfilter/af_silenceremove.c @@ -462,53 +462,53 @@ static int config_input(AVFilterLink *inlink) case AV_SAMPLE_FMT_DBL: s->copy = copy_double; switch (s->detection) { - case D_PEAK: - s->update = update_peak_double; - s->compute = compute_peak_double; - break; - case D_RMS: - s->update = update_rms_double; - s->compute = compute_rms_double; - break; + case D_PEAK: + s->update = update_peak_double; + s->compute = compute_peak_double; + break; + case D_RMS: + s->update = update_rms_double; + s->compute = compute_rms_double; + break; } break; case AV_SAMPLE_FMT_FLT: s->copy = copy_float; switch (s->detection) { - case D_PEAK: - s->update = update_peak_float; - s->compute = compute_peak_float; - break; - case D_RMS: - s->update = update_rms_float; - s->compute = compute_rms_float; - break; + case D_PEAK: + s->update = update_peak_float; + s->compute = compute_peak_float; + break; + case D_RMS: + s->update = update_rms_float; + s->compute = compute_rms_float; + break; } break; case AV_SAMPLE_FMT_DBLP: s->copy = copy_doublep; switch (s->detection) { - case D_PEAK: - s->update = update_peak_doublep; - s->compute = compute_peak_doublep; - break; - case D_RMS: - s->update = update_rms_doublep; - s->compute = compute_rms_doublep; - break; + case D_PEAK: + s->update = update_peak_doublep; + s->compute = compute_peak_doublep; + break; + case D_RMS: + s->update = update_rms_doublep; + s->compute = compute_rms_doublep; + break; } break; case AV_SAMPLE_FMT_FLTP: s->copy = copy_floatp; switch (s->detection) { - case D_PEAK: - s->update = update_peak_floatp; - s->compute = compute_peak_floatp; - break; - case D_RMS: - s->update = update_rms_floatp; - s->compute = compute_rms_floatp; - break; + case D_PEAK: + s->update = update_peak_floatp; + s->compute = compute_peak_floatp; + break; + case D_RMS: + s->update = update_rms_floatp; + s->compute = compute_rms_floatp; + break; } break; default: |