Skip to content

Commit c688b02

Browse files
Always use ppc_zoom in PowerPC CPUs. There was an if (useAltivec) here for future implimentation, but at this point no one will ever write an altivec specific version as the platform is dead on PCs.
1 parent d958f96 commit c688b02

File tree

1 file changed

+1
-6
lines changed
  • mythtv/libs/libmythtv/visualisations/goom

1 file changed

+1
-6
lines changed

mythtv/libs/libmythtv/visualisations/goom/filters.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -720,12 +720,7 @@ zoomFilterFastRGB (Uint * pix1, Uint * pix2, ZoomFilterData * zf, Uint resx, Uin
720720
#endif
721721

722722
#ifdef POWERPC
723-
if (useAltivec)
724-
{
725-
ppc_zoom (expix1, expix2, prevX, prevY, brutS, brutD, buffratio,precalCoef);
726-
}
727-
else
728-
ppc_zoom (expix1, expix2, prevX, prevY, brutS, brutD, buffratio,precalCoef);
723+
ppc_zoom (expix1, expix2, prevX, prevY, brutS, brutD, buffratio,precalCoef);
729724
#endif
730725
#else
731726
c_zoom (expix1, expix2, prevX, prevY, brutS, brutD);

0 commit comments

Comments
 (0)