From: Bradley Sepos Date: Sun, 13 Oct 2019 18:35:34 +0000 (-0400) Subject: make: Print unsupported status of FFmpeg AAC on Darwin/macOS in configure.py. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19088348e2f397defd92ee554b283b8b681d2517;p=handbrake make: Print unsupported status of FFmpeg AAC on Darwin/macOS in configure.py. --- diff --git a/make/configure.py b/make/configure.py index 894f52b77..16c7e513e 100644 --- a/make/configure.py +++ b/make/configure.py @@ -2120,7 +2120,7 @@ int main() stdout.write( ' (%s)\n' % note_unsupported ) if not host_tuple.system == 'darwin' else stdout.write( '\n' ) stdout.write( 'Enable FDK-AAC: %s\n' % options.enable_fdk_aac ) stdout.write( 'Enable FFmpeg AAC: %s' % options.enable_ffmpeg_aac ) - stdout.write( ' (%s)\n' % note_required ) if host_tuple.system != 'darwin' else stdout.write( '\n' ) + stdout.write( ' (%s)\n' % note_unsupported ) if host_tuple.system == 'darwin' else stdout.write( ' (%s)\n' % note_required ) stdout.write( 'Enable NVENC: %s' % options.enable_nvenc ) stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) stdout.write( 'Enable QSV: %s' % options.enable_qsv )