[FFmpeg-cvslog] avutil/cpu: add missing check for mmxext to av_force_cpu_flags

James Almer git at videolan.org
Sun Mar 29 06:16:02 CEST 2015


ffmpeg | branch: release/2.2 | James Almer <jamrial at gmail.com> | Thu Mar 26 02:11:55 2015 -0300| [0b51e0baea31213038d2e908be4ae0203140240f] | committer: James Almer

avutil/cpu: add missing check for mmxext to av_force_cpu_flags

Reviewed-by: Michael Niedermayer <michaelni at gmx.at>
Signed-off-by: James Almer <jamrial at gmail.com>
(cherry picked from commit 1f5d1eed78fad63f1c80a3766d3dc2421b99104d)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0b51e0baea31213038d2e908be4ae0203140240f
---

 libavutil/cpu.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/cpu.c b/libavutil/cpu.c
index f4d3d14..14c28ff 100644
--- a/libavutil/cpu.c
+++ b/libavutil/cpu.c
@@ -49,6 +49,7 @@ static int flags, checked;
 void av_force_cpu_flags(int arg){
     if (   (arg & ( AV_CPU_FLAG_3DNOW    |
                     AV_CPU_FLAG_3DNOWEXT |
+                    AV_CPU_FLAG_MMXEXT   |
                     AV_CPU_FLAG_SSE      |
                     AV_CPU_FLAG_SSE2     |
                     AV_CPU_FLAG_SSE2SLOW |



More information about the ffmpeg-cvslog mailing list