mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-04 11:50:44 -04:00
[misc] Add missing comparison in quality_is_equal()
This commit is contained in:
parent
051e526b2c
commit
dd24c35b2f
@ -993,7 +993,7 @@ linear_regression(double *m, double *b, double *r2, const double *x, const doubl
|
|||||||
bool
|
bool
|
||||||
quality_is_equal(struct media_quality *a, struct media_quality *b)
|
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
|
bool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user