diff options
author | Bradley Sepos <[email protected]> | 2019-10-25 15:16:23 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-10-25 15:16:23 -0400 |
commit | 0ba5561880faaf84d4bd52fa5da76d5a46be693e (patch) | |
tree | b5a1870266a31159c14af27fd62c238bdefae754 | |
parent | 401f7a3d252792424230430b90798b057ee1fd7f (diff) |
Revert "make: Print unsupported status of FFmpeg AAC on Darwin/macOS in configure.py."
Actually is supported; I was passing the wrong parameter to configure.
This reverts commit 19088348e2f397defd92ee554b283b8b681d2517.
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index 8dbaa634f..86dd6c119 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_unsupported ) if host_tuple.system == 'darwin' else stdout.write( ' (%s)\n' % note_required ) + stdout.write( ' (%s)\n' % note_required ) if host_tuple.system != 'darwin' else stdout.write( '\n' ) 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 ) |