1. 17 Jul, 2015 4 commits
  2. 15 Jul, 2015 3 commits
  3. 13 Jul, 2015 7 commits
  4. 12 Jul, 2015 14 commits
  5. 11 Jul, 2015 5 commits
  6. 10 Jul, 2015 2 commits
  7. 09 Jul, 2015 2 commits
  8. 08 Jul, 2015 3 commits
    • Luca Barbato's avatar
      configure: Make the new qsv encoder depend on libmfx · 84b223cc
      Luca Barbato authored
      Found-by: kropping
      84b223cc
    • Henrik Gramner's avatar
      x86: Serialize rdtsc in read_time() · d1a6cb19
      Henrik Gramner authored
      Improves the accuracy of measurements, especially in short sections.
      
      To quote the Intel 64 and IA-32 Architectures Software Developer's Manual:
      "The RDTSC instruction is not a serializing instruction. It does not necessarily
      wait until all previous instructions have been executed before reading the counter.
      Similarly, subsequent instructions may begin execution before the read operation
      is performed. If software requires RDTSC to be executed only after all previous
      instructions have completed locally, it can either use RDTSCP (if the processor
      supports that instruction) or execute the sequence LFENCE;RDTSC."
      
      SSE2 is a requirement for lfence so only use it on SSE2-capable systems.
      Prefer lfence;rdtsc over rdtscp since rdtscp is supported on fewer systems.
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      d1a6cb19
    • Sebastien Zwickert's avatar
      avconv: vda: Unlock the pixel buffer once it is accessed · 40af330a
      Sebastien Zwickert authored
      Avoid possible issues with memmapped hardware buffers in
      case VDA is not doing a conversion on behalf of the user
      and make the code more proper as working example.
      
      CC: libav-stable@libav.org
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      40af330a