~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavutil/x86/cpu.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-03-16 08:10:23 UTC
  • mfrom: (1.2.24)
  • Revision ID: package-import@ubuntu.com-20150316081023-n87nz86h5222aig3
Tags: 4:0.8.17-0ubuntu0.12.04.1
* Update to 0.8.17 to fix multiple security issues (LP: #1432610)
  - CVE-2014-8542
  - CVE-2014-8543
  - CVE-2014-8544
  - CVE-2014-8547
  - CVE-2014-8548
  - CVE-2014-9604

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        cpuid(1, eax, ebx, ecx, std_caps);
84
84
        family = ((eax>>8)&0xf) + ((eax>>20)&0xff);
85
85
        model  = ((eax>>4)&0xf) + ((eax>>12)&0xf0);
 
86
        if (std_caps & (1 << 15))
 
87
            rval |= AV_CPU_FLAG_CMOV;
86
88
        if (std_caps & (1<<23))
87
89
            rval |= AV_CPU_FLAG_MMX;
88
90
        if (std_caps & (1<<25))