diff options
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/audio_resample.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/audio_resample.c b/libhb/audio_resample.c index bd9cbf61c..927a3b7c4 100644 --- a/libhb/audio_resample.c +++ b/libhb/audio_resample.c @@ -113,8 +113,7 @@ int hb_audio_resample_update(hb_audio_resample_t *resample) int ret, resample_changed; resample->resample_needed = - (resample->resample_needed || - resample->out.sample_fmt != resample->in.sample_fmt || + (resample->out.sample_fmt != resample->in.sample_fmt || resample->out.channel_layout != resample->in.channel_layout); resample_changed = |