mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-03 05:22:10 +00:00
avfilter/vf_nnedi: unbreak nsize=0:nns=0 output
This commit is contained in:
parent
c737f6edce
commit
f359575c0b
@ -948,10 +948,10 @@ static void subtract_mean_predictor(PredictorCoefficients *model)
|
||||
int filter_size = model->nsize;
|
||||
int nns = model->nns;
|
||||
|
||||
float softmax_means[256]; // Average of individual softmax filters.
|
||||
float elliott_means[256]; // Average of individual elliott filters.
|
||||
float mean_filter[48 * 6]; // Pointwise average of all softmax filters.
|
||||
float mean_bias;
|
||||
double softmax_means[256]; // Average of individual softmax filters.
|
||||
double elliott_means[256]; // Average of individual elliott filters.
|
||||
double mean_filter[48 * 6]; // Pointwise average of all softmax filters.
|
||||
double mean_bias;
|
||||
|
||||
// Quality 1.
|
||||
for (int nn = 0; nn < nns; nn++) {
|
||||
@ -976,7 +976,7 @@ static void subtract_mean_predictor(PredictorCoefficients *model)
|
||||
}
|
||||
|
||||
// Quality 2.
|
||||
memset(mean_filter, 0, 48 * 6 * sizeof(float));
|
||||
memset(mean_filter, 0, sizeof(mean_filter));
|
||||
|
||||
for (int nn = 0; nn < nns; nn++) {
|
||||
softmax_means[nn] = mean(model->softmax_q2 + nn * filter_size, filter_size);
|
||||
|
Loading…
Reference in New Issue
Block a user