Remove ifdef now that we depend on Qt >= 6.9.0

This commit is contained in:
Albert Astals Cid
2026-03-23 22:57:17 +01:00
parent e28c48cfeb
commit 38b8b70304
2 changed files with 0 additions and 13 deletions

View File

@@ -513,21 +513,12 @@ bool QAVIFHandler::decode_one_frame()
#else
switch (m_decoder->image->imir.axis) {
#endif
#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0)
case 0: // top-to-bottom
result = result.mirrored(false, true);
break;
case 1: // left-to-right
result = result.mirrored(true, false);
break;
#else
case 0: // top-to-bottom
result = result.flipped(Qt::Vertical);
break;
case 1: // left-to-right
result = result.flipped(Qt::Horizontal);
break;
#endif
}
}