1. 10 Apr, 2011 4 commits
    • Carl Eugen Hoyos's avatar
      x11: fix memleak · c55efca0
      Carl Eugen Hoyos authored
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      c55efca0
    • pin xue's avatar
      replace movw instruction in ac3dsp_armv6.S · 05c062e9
      pin xue authored
      AS      libavcodec/arm/ac3dsp_armv6.o
      ffmpeg-src/libavcodec/arm/ac3dsp_armv6.S: Assembler messages:
      ffmpeg-src/libavcodec/arm/ac3dsp_armv6.S:40: Error: selected processor
      does not support `movw r8,#0x1fe0'
      make[1]: *** [libavcodec/arm/ac3dsp_armv6.o] Error 1
      
      MOVW is ARMv7 way to load constant:
         * movw, or move wide, will move a 16-bit constant into a register,
      implicitly zeroing the top 16 bits of the target register.
         * movt, or move top, will move a 16-bit constant into the top half
      of a given register without altering the bottom 16 bits
      To load 32 bit constant, movw  lower16; movt upper16; is better than
      ldr if available, because:
      While this approach takes two instructions, it does not require any
      extra space to store the constant so both the movw/movt method and the
      ldr method will end up using the same amount of memory. Memory
      bandwidth is precious in and the movw/movt approach avoids an extra
      read on the data side, not to mention the read could have missed the
      cache.
      
      But here it is armv6 optimization, so that we have to use ldr.
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      05c062e9
    • Michael Niedermayer's avatar
      Merge remote branch 'qatar/master' · a2beabc2
      Michael Niedermayer authored
      * qatar/master:
        daud: Don't write packets that are too large to have their size expressed in the bytestream.
      DUPLICATE  pthread: validate_thread_parameters() ignored slice-threading being intentionally off
      DUPLICATE  Use consistent condition for whether to run slice-threading execute function.
        avformat.h: fix a misplaced #endif
      DUPLCIATE  vaapi: cope with VA-API 0.32, i.e. fix VC-1 decoding on Sandy Bridge.
      DUPLICATE  vaapi: filter out DELAYED_PIC_REF flag to determine field.
      Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      a2beabc2
    • Alex Converse's avatar
  2. 09 Apr, 2011 16 commits
  3. 08 Apr, 2011 19 commits
  4. 07 Apr, 2011 1 commit