avfilter/avf_showfreqs: add group delay data mode

pull/358/head
Paul B Mahol 4 years ago
parent f3891430fc
commit a01b037c90
  1. 1
      doc/filters.texi
  2. 13
      libavfilter/avf_showfreqs.c

@ -25230,6 +25230,7 @@ It accepts the following values:
@table @samp @table @samp
@item magnitude @item magnitude
@item phase @item phase
@item delay
@end table @end table
Default is @code{magnitude}. Default is @code{magnitude}.
@end table @end table

@ -36,7 +36,7 @@
#include "internal.h" #include "internal.h"
#include "window_func.h" #include "window_func.h"
enum DataMode { MAGNITUDE, PHASE, NB_DATA }; enum DataMode { MAGNITUDE, PHASE, DELAY, NB_DATA };
enum DisplayMode { LINE, BAR, DOT, NB_MODES }; enum DisplayMode { LINE, BAR, DOT, NB_MODES };
enum ChannelMode { COMBINED, SEPARATE, NB_CMODES }; enum ChannelMode { COMBINED, SEPARATE, NB_CMODES };
enum FrequencyScale { FS_LINEAR, FS_LOG, FS_RLOG, NB_FSCALES }; enum FrequencyScale { FS_LINEAR, FS_LOG, FS_RLOG, NB_FSCALES };
@ -120,6 +120,7 @@ static const AVOption showfreqs_options[] = {
{ "data", "set data mode", OFFSET(data_mode), AV_OPT_TYPE_INT, {.i64=MAGNITUDE}, 0, NB_DATA-1, FLAGS, "data" }, { "data", "set data mode", OFFSET(data_mode), AV_OPT_TYPE_INT, {.i64=MAGNITUDE}, 0, NB_DATA-1, FLAGS, "data" },
{ "magnitude", "show magnitude", 0, AV_OPT_TYPE_CONST, {.i64=MAGNITUDE}, 0, 0, FLAGS, "data" }, { "magnitude", "show magnitude", 0, AV_OPT_TYPE_CONST, {.i64=MAGNITUDE}, 0, 0, FLAGS, "data" },
{ "phase", "show phase", 0, AV_OPT_TYPE_CONST, {.i64=PHASE}, 0, 0, FLAGS, "data" }, { "phase", "show phase", 0, AV_OPT_TYPE_CONST, {.i64=PHASE}, 0, 0, FLAGS, "data" },
{ "delay", "show group delay",0, AV_OPT_TYPE_CONST, {.i64=DELAY}, 0, 0, FLAGS, "data" },
{ NULL } { NULL }
}; };
@ -440,6 +441,16 @@ static int plot_freqs(AVFilterLink *inlink, AVFrame *in)
plot_freq(s, ch, a, f, fg, &prev_y, out, outlink); plot_freq(s, ch, a, f, fg, &prev_y, out, outlink);
} }
break; break;
case DELAY:
plot_freq(s, ch, 0, 0, fg, &prev_y, out, outlink);
for (f = 1; f < s->nb_freq; f++) {
a = av_clipd((M_PI - P(IM(f, ch) * RE(f-1, ch) - IM(f-1, ch) * RE(f, ch),
RE(f, ch) * RE(f-1, ch) + IM(f, ch) * IM(f-1, ch))) / (2. * M_PI), 0, 1);
plot_freq(s, ch, a, f, fg, &prev_y, out, outlink);
}
break;
} }
} }

Loading…
Cancel
Save