summaryrefslogtreecommitdiffstats
path: root/libhb/hb.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-14 17:20:58 -0700
committerJohn Stebbins <[email protected]>2018-06-27 10:34:38 -0700
commite7b1636fca20d91241ff3e1c12919a3123d05daf (patch)
tree67866cef1b93620d50832daed5fdde75280b5450 /libhb/hb.c
parentb25af79e205c55f9f09b93a88e3f4f7cc18acb8c (diff)
audio_resample: switch from avresample to swresample
Eliminates deprecation warnings for avresample
Diffstat (limited to 'libhb/hb.c')
-rw-r--r--libhb/hb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/hb.c b/libhb/hb.c
index e4b0e1110..f14c9b6fa 100644
--- a/libhb/hb.c
+++ b/libhb/hb.c
@@ -74,6 +74,7 @@ static void thread_func( void * );
void hb_avcodec_init()
{
#ifdef _WIN64
+ // TODO: retest with swresample
// avresample's assembly optimizations can cause crashes under Win x86_64
// (see http://bugzilla.libav.org/show_bug.cgi?id=496)
// disable AVX and FMA4 as a workaround