You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/avf_showspectrum: unbreak dB legend
This commit is contained in:
@@ -1233,9 +1233,13 @@ static int showspectrumpic_request_frame(AVFilterLink *outlink)
|
||||
for (chn = 0; chn < (s->mode == SEPARATE ? 1 : s->nb_display_channels); chn++) {
|
||||
float yf, uf, vf;
|
||||
int channel = (multi) ? s->nb_display_channels - ch - 1 : chn;
|
||||
float lout[3];
|
||||
|
||||
color_range(s, channel, &yf, &uf, &vf);
|
||||
pick_color(s, yf, uf, vf, y / (float)h, out);
|
||||
pick_color(s, yf, uf, vf, y / (float)h, lout);
|
||||
out[0] += lout[0];
|
||||
out[1] += lout[1];
|
||||
out[2] += lout[2];
|
||||
}
|
||||
memset(s->outpicref->data[0]+(s->start_y + h * (ch + 1) - y - 1) * s->outpicref->linesize[0] + s->w + s->start_x + 20, av_clip_uint8(out[0]), 10);
|
||||
memset(s->outpicref->data[1]+(s->start_y + h * (ch + 1) - y - 1) * s->outpicref->linesize[1] + s->w + s->start_x + 20, av_clip_uint8(out[1]), 10);
|
||||
|
Reference in New Issue
Block a user