~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavcodec/rectangle.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        *(uint32_t*)(p + 3*stride)= v;
65
65
    }else if(w==8){
66
66
    //gcc can't optimize 64bit math on x86_32
67
 
#ifdef HAVE_FAST_64BIT
 
67
#if HAVE_FAST_64BIT
68
68
        const uint64_t v= val*0x0100000001ULL;
69
69
        *(uint64_t*)(p + 0*stride)= v;
70
70
        if(h==1) return;