Skip to content

Commit

Permalink
Test for AVC in unpack.c (AcademySoftwareFoundation#1354)
Browse files Browse the repository at this point in the history
Addresses AcademySoftwareFoundation#1353

Signed-off-by: Cary Phillips <cary@ilm.com>
  • Loading branch information
cary-ilm committed Mar 26, 2023
1 parent fd9d1ff commit a1ab2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/unpack.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ half_to_float8 (float* out, const uint16_t* src)
}
#endif

#if (defined(__x86_64__) || defined(_M_X64)) && \
#if (defined(__x86_64__) || defined(_M_X64)) && defined(__AVX__) && \
(defined(__F16C__) || defined(__GNUC__) || defined(__clang__))

# if defined(__F16C__)
Expand Down

0 comments on commit a1ab2f2

Please sign in to comment.