summaryrefslogtreecommitdiffstats
path: root/libmpeg2/cpu_accel.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpeg2/cpu_accel.c')
-rw-r--r--libmpeg2/cpu_accel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmpeg2/cpu_accel.c b/libmpeg2/cpu_accel.c
index db47a7c03f..66f7b7fdff 100644
--- a/libmpeg2/cpu_accel.c
+++ b/libmpeg2/cpu_accel.c
@@ -37,9 +37,9 @@
#ifdef ACCEL_DETECT
#if defined(ARCH_X86) || defined(ARCH_X86_64)
-/* MPlayer imports libmpeg2 as decoder, which detects MMX / 3DNow!
- * instructions via assembly. However, it is regarded as duplicaed work
- * in MPlayer, so that we enforce to use MPlayer's implementation.
+/* MPlayer imports libmpeg2 as decoder, which detects MMX / 3DNow!
+ * instructions via assembly. However, it is regarded as duplicated work
+ * in MPlayer, so that we enforce using MPlayer's implementation.
*/
#define USE_MPLAYER_CPUDETECT
@@ -120,7 +120,7 @@ static inline uint32_t arch_accel (void)
caps |= MPEG2_ACCEL_X86_MMXEXT;
return caps;
-#else /* USE_MPLAYER_CPUDETECT: Use MPlayer's cpu capability property */
+#else /* USE_MPLAYER_CPUDETECT: Use MPlayer's CPU capability property. */
caps = 0;
if (gCpuCaps.hasMMX)
caps |= MPEG2_ACCEL_X86_MMX;