Skip to content

Commit

Permalink
skip warning on osx since we cannot build libvpx 1.4 there
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@10752 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 7, 2015
1 parent 8723ca2 commit 9e7ebaf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/xpra/codecs/vpx/decoder.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ IF ENABLE_VP9:
if VPX_DECODER_ABI_VERSION>=9:
vp9_cs.append("YUV444P")
else:
log.warn("Warning: libvpx ABI version %s is too old:", VPX_DECODER_ABI_VERSION)
log.warn(" disabling YUV444P support with VP9")
if sys.platform.startswith("darwin"):
pass #cannot build libvpx 1.4 on osx... so skip warning
else:
log.warn("Warning: libvpx ABI version %s is too old:", VPX_DECODER_ABI_VERSION)
log.warn(" disabling YUV444P support with VP9")
COLORSPACES["vp9"] = vp9_cs


Expand Down

0 comments on commit 9e7ebaf

Please sign in to comment.