[misc] Add missing comparison in quality_is_equal()

This commit is contained in:
ejurgensen 2019-10-26 23:30:44 +02:00
parent 051e526b2c
commit dd24c35b2f
1 changed files with 1 additions and 1 deletions

View File

@ -993,7 +993,7 @@ linear_regression(double *m, double *b, double *r2, const double *x, const doubl
bool
quality_is_equal(struct media_quality *a, struct media_quality *b)
{
return (a->sample_rate == b->sample_rate && a->bits_per_sample == b->bits_per_sample && a->channels == b->channels);
return (a->sample_rate == b->sample_rate && a->bits_per_sample == b->bits_per_sample && a->channels == b->channels && a->bit_rate == b->bit_rate);
}
bool