Skip to content

Commit

Permalink
Revert "make: Print unsupported status of FFmpeg AAC on Darwin/macOS …
Browse files Browse the repository at this point in the history
…in configure.py."

Actually is supported; I was passing the wrong parameter to configure.

This reverts commit 1908834.
  • Loading branch information
bradleysepos committed Oct 25, 2019
1 parent 401f7a3 commit 0ba5561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -2120,7 +2120,7 @@ class Tools:
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 )
Expand Down

0 comments on commit 0ba5561

Please sign in to comment.