diff options
author | Rodeo <[email protected]> | 2013-04-28 20:38:20 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-04-28 20:38:20 +0000 |
commit | a9e2b0dfab1a54db3e8f5e0cc1c1f14fe41e98e2 (patch) | |
tree | b3c72ceb62871751ab59a83defefcebc76d90dae | |
parent | 61738cdb9c81d49a93c910a2ae22179bb69a0a52 (diff) |
Fix log pollution when Auto Passthru is not possible and uses the fallback audio encoder, if that encoder does not accept s16(p) input samples.
"work: track 1, dithering not supported by codec"
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5421 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index f9ba7a761..95c9f921d 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -2397,7 +2397,7 @@ int hb_audio_add(const hb_job_t * job, const hb_audio_config_t * audiocfg) audio->config.out.normalize_mix_level = 0; audio->config.out.compression_level = -1; audio->config.out.quality = HB_INVALID_AUDIO_QUALITY; - audio->config.out.dither_method = AV_RESAMPLE_DITHER_NONE; + audio->config.out.dither_method = hb_audio_dither_get_default(); } else { |