Issue #2041 follow-up - fix macro condition

This commit is contained in:
lexx9999 2022-12-11 02:04:38 +01:00 committed by roytam1
commit 8f09162893

View file

@ -203,13 +203,11 @@ DecoderFactory::CreateAnimationDecoder(DecoderType aType,
}
MOZ_ASSERT(aType == DecoderType::GIF || aType == DecoderType::PNG ||
aType == DecoderType::WEBP,
aType == DecoderType::WEBP
#ifdef MOZ_JXL
|| aType == DecoderType::JXL,
#else
,
|| aType == DecoderType::JXL
#endif
"Calling CreateAnimationDecoder for non-animating DecoderType");
, "Calling CreateAnimationDecoder for non-animating DecoderType");
// Create an anonymous decoder. Interaction with the SurfaceCache and the
// owning RasterImage will be mediated by AnimationSurfaceProvider.