1. 15 4月, 2019 4 次提交
  2. 14 4月, 2019 4 次提交
  3. 12 4月, 2019 5 次提交
  4. 11 4月, 2019 7 次提交
  5. 10 4月, 2019 4 次提交
  6. 09 4月, 2019 3 次提交
  7. 08 4月, 2019 3 次提交
  8. 07 4月, 2019 6 次提交
    • N
      avfilter/af_asetnsamples: fix sample queuing. · 4c8e3725
      Nikolas Bowe via ffmpeg-devel 提交于
      When asetnsamples uses output samples < input samples, remaining samples build up in the fifo over time.
      Fix this by marking the filter as ready again if there are enough samples.
      
      Regression since ef3babb2Reviewed-by: NPaul B Mahol <onemda@gmail.com>
      Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
      4c8e3725
    • L
      swscale/ppc: VSX-optimize yuv2rgb_full_X · 8607e29f
      Lauri Kasanen 提交于
      ./ffmpeg -f lavfi -i yuvtestsrc=duration=1:size=1200x1440 \
                      -s 1200x720 -f null -vframes 100 -pix_fmt $i -nostats \
                      -cpuflags 0 -v error -
      
      32-bit mul, power8 only.
      
      ~6.4x speedup:
      
      rgb24
       214278 UNITS in yuv2packedX,   16384 runs,      0 skips
        33249 UNITS in yuv2packedX,   16384 runs,      0 skips
      bgr24
       214616 UNITS in yuv2packedX,   16384 runs,      0 skips
        33233 UNITS in yuv2packedX,   16384 runs,      0 skips
      rgba
       214517 UNITS in yuv2packedX,   16384 runs,      0 skips
        33271 UNITS in yuv2packedX,   16384 runs,      0 skips
      bgra
       214973 UNITS in yuv2packedX,   16384 runs,      0 skips
        33397 UNITS in yuv2packedX,   16384 runs,      0 skips
      argb
       214613 UNITS in yuv2packedX,   16384 runs,      0 skips
        33310 UNITS in yuv2packedX,   16384 runs,      0 skips
      bgra
       214637 UNITS in yuv2packedX,   16384 runs,      0 skips
        33330 UNITS in yuv2packedX,   16384 runs,      0 skips
      8607e29f
    • L
      swscale/ppc: VSX-optimize yuv2rgb_full_2 · 3256e949
      Lauri Kasanen 提交于
      ./ffmpeg -f lavfi -i yuvtestsrc=duration=1:size=1200x1440 -sws_flags area \
                  -s 1200x720 -f null -vframes 100 -pix_fmt $i -nostats \
                  -cpuflags 0 -v error -
      
      32-bit mul, power8 only.
      
      ~4x speedup:
      
      rgb24
        52763 UNITS in yuv2packed2,   16384 runs,      0 skips
        13453 UNITS in yuv2packed2,   16384 runs,      0 skips
      bgr24
        53144 UNITS in yuv2packed2,   16384 runs,      0 skips
        13616 UNITS in yuv2packed2,   16384 runs,      0 skips
      rgba
        52796 UNITS in yuv2packed2,   16384 runs,      0 skips
        12904 UNITS in yuv2packed2,   16384 runs,      0 skips
      bgra
        52732 UNITS in yuv2packed2,   16384 runs,      0 skips
        13262 UNITS in yuv2packed2,   16384 runs,      0 skips
      argb
        52661 UNITS in yuv2packed2,   16384 runs,      0 skips
        12879 UNITS in yuv2packed2,   16384 runs,      0 skips
      bgra
        52662 UNITS in yuv2packed2,   16384 runs,      0 skips
        12932 UNITS in yuv2packed2,   16384 runs,      0 skips
      3256e949
    • L
      swscale/ppc: VSX-optimize non-full-chroma yuv2rgb_1 · 50e672bc
      Lauri Kasanen 提交于
      ./ffmpeg -f lavfi -i yuvtestsrc=duration=1:size=1200x1440 -sws_flags fast_bilinear \
              -s 1200x1440 -f null -vframes 100 -pix_fmt $i -nostats \
              -cpuflags 0 -v error -
      
      32-bit mul, power8 only.
      
      1.8-2.3x speedup:
      
      rgb24
        18192 UNITS in yuv2packed1,   32767 runs,      1 skips
         9983 UNITS in yuv2packed1,   32760 runs,      8 skips
      bgr24
        18665 UNITS in yuv2packed1,   32766 runs,      2 skips
         9925 UNITS in yuv2packed1,   32763 runs,      5 skips
      rgba
        20239 UNITS in yuv2packed1,   32767 runs,      1 skips
         8794 UNITS in yuv2packed1,   32759 runs,      9 skips
      bgra
        20354 UNITS in yuv2packed1,   32768 runs,      0 skips
         8770 UNITS in yuv2packed1,   32761 runs,      7 skips
      argb
        20185 UNITS in yuv2packed1,   32768 runs,      0 skips
         8761 UNITS in yuv2packed1,   32761 runs,      7 skips
      bgra
        20360 UNITS in yuv2packed1,   32766 runs,      2 skips
         8759 UNITS in yuv2packed1,   32764 runs,      4 skips
      
      This is a low speedup, but the x86 mmx version also gets only ~2x. The mmx version
      is also heavily inaccurate, while the vsx version has high accuracy.
      50e672bc
    • J
      doc/examples/metadata: fix the example can't dump FLV metadata · 7c187514
      Jun Zhao 提交于
      fix the example can't dump FLV metadata.
      Signed-off-by: NJun Zhao <barryjzhao@tencent.com>
      7c187514
    • C
      d234ed76
  9. 06 4月, 2019 2 次提交
    • S
      lavf/flvdec: added support for KUX container · 208ae228
      Swaraj Hota 提交于
      Fixes ticket #4519.
      
      The metadata starting at 0xe00004 is encrypted
      with the password "meta" but zlib does not
      support decryption, so no kux metadata is read.
      208ae228
    • O
      lavd/x11grab: fix vertical repositioning · f4f40cbb
      Octavio Alvarez 提交于
      There is a calculation error in xcbgrab_reposition() that breaks
      vertical repositioning on follow_mouse. It made the bottom
      reposition occur when moving the mouse lower than N pixels after
      the capture bottom edge, instead of before.
      
      This commit fixes the calculation to match the documentation.
      
      follow_mouse: centered or number of pixels. The documentation says:
      
      When it is specified with "centered", the grabbing region follows
      the mouse pointer and keeps the pointer at the center of region;
      otherwise, the region follows only when the mouse pointer reaches
      within PIXELS (greater than zero) to the edge of region.
      f4f40cbb
  10. 05 4月, 2019 2 次提交