]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit 'd7bc52bf456deba0f32d9fe5c288ec441f1ebef5'
authorClément Bœsch <u@pkh.me>
Mon, 20 Mar 2017 07:30:42 +0000 (08:30 +0100)
committerClément Bœsch <u@pkh.me>
Mon, 20 Mar 2017 07:34:10 +0000 (08:34 +0100)
* commit 'd7bc52bf456deba0f32d9fe5c288ec441f1ebef5':
  imgutils: add a function for copying image data from GPU mapped memory

Merged-by: Clément Bœsch <u@pkh.me>
1  2 
doc/APIchanges
libavutil/imgutils.c
libavutil/imgutils.h
libavutil/imgutils_internal.h
libavutil/version.h
libavutil/x86/Makefile
libavutil/x86/imgutils.asm
libavutil/x86/imgutils_init.c

diff --cc doc/APIchanges
index 6e187670c065fb43606d6e1d123dbbeb226bca60,a4e418acd371003388edf492859bfe6d237e185d..436fb71acb812a2e8f0b0ed4532324b3795b3b33
@@@ -15,43 -13,11 +15,47 @@@ libavutil:     2015-08-2
  
  API changes, most recent first:
  
 -2016-08-24 - xxxxxxx - lavu 55.21.0 - imgutils.h
++2016-03-20 - xxxxxxx - lavu 55.50.100 / 55.21.0 - imgutils.h
+   Add av_image_copy_uc_from(), a version of av_image_copy() for copying
+   from GPU mapped memory.
 -2016-xx-xx - xxxxxxx - lavc 59.26.0 - vaapi.h
 +2017-03-20 - 9c2436e - lavu 55.49.100 - pixdesc.h
 +  Add AV_PIX_FMT_FLAG_BAYER pixel format flag.
 +
 +2017-03-18 - xxxxxxx - lavfi 6.77.100 - avfilter.h
 +  Deprecate AVFilterGraph.resample_lavr_opts
 +  It's never been used by avfilter nor passed to anything.
 +
 +2017-02-10 - xxxxxxx - lavu 55.48.100 / 55.33.0 - spherical.h
 +  Add AV_SPHERICAL_EQUIRECTANGULAR_TILE, av_spherical_tile_bounds(),
 +  and projection-specific properties (bound_left, bound_top, bound_right,
 +  bound_bottom, padding) to AVSphericalMapping.
 +
 +2017-03-02 - xxxxxxx - lavc 57.81.104 - videotoolbox.h
 +  AVVideotoolboxContext.cv_pix_fmt_type can now be set to 0 to output the
 +  native decoder format. (The default value is not changed.)
 +
 +2017-03-02 - xxxxxxx - lavu 55.47.101, lavc 57.81.102, lavf 57.66.103
 +  Remove requirement to use AVOption or accessors to access certain fields
 +  in AVFrame, AVCodecContext, and AVFormatContext that were previously
 +  documented as "no direct access" allowed.
 +
 +2017-02-13 - xxxxxxx - lavc 57.80.100 - avcodec.h
 +  Add AVCodecContext.hw_device_ctx.
 +
 +2017-02-11 - xxxxxxx - lavu 55.47.100 - frame.h
 +  Add AVFrame.opaque_ref.
 +
 +2017-01-31 - xxxxxxx - lavu 55.46.100 / 55.20.0 - cpu.h
 +  Add AV_CPU_FLAG_SSSE3SLOW.
 +
 +2017-01-24 - xxxxxxx - lavu 55.45.100 - channel_layout.h
 +  Add av_get_extended_channel_layout()
 +
 +2017-01-22 - xxxxxxx - lavu 55.44.100 - lfg.h
 +  Add av_lfg_init_from_data().
 +
 +2017-01-xx - xxxxxxx - lavc 57.74.100 - vaapi.h
    Deprecate struct vaapi_context and the vaapi.h installed header.
    Callers should set AVCodecContext.hw_frames_ctx instead.
  
index cc410abad1150e954991d61e74dfe3509f5e1184,20d06ec1759e9b846d721f1cc5d6ea58b2e40a35..f8f2244b89ddd5e8c992f3032d9e16113b5834da
   * misc image utilities
   */
  
 +#include "avassert.h"
  #include "common.h"
  #include "imgutils.h"
+ #include "imgutils_internal.h"
  #include "internal.h"
  #include "intreadwrite.h"
  #include "log.h"
@@@ -342,11 -314,7 +367,11 @@@ static void image_copy(uint8_t *dst_dat
  
          for (i = 0; i < planes_nb; i++) {
              int h = height;
-             int bwidth = av_image_get_linesize(pix_fmt, width, i);
+             ptrdiff_t bwidth = av_image_get_linesize(pix_fmt, width, i);
 +            if (bwidth < 0) {
 +                av_log(NULL, AV_LOG_ERROR, "av_image_get_linesize failed\n");
 +                return;
 +            }
              if (i == 1 || i == 2) {
                  h = AV_CEIL_RSHIFT(height, desc->log2_chroma_h);
              }
Simple merge
index 0000000000000000000000000000000000000000,7a932a5f52cc576006fc736d83f7e6072ceaeaa4..d5158584133ba0c7443dba6fc74820dd9ff8e029
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,30 +1,30 @@@
 - * This file is part of Libav.
+ /*
 - * Libav is free software; you can redistribute it and/or
++ * This file is part of FFmpeg.
+  *
 - * Libav is distributed in the hope that it will be useful,
++ * FFmpeg is free software; you can redistribute it and/or
+  * modify it under the terms of the GNU Lesser General Public
+  * License as published by the Free Software Foundation; either
+  * version 2.1 of the License, or (at your option) any later version.
+  *
 - * License along with Libav; if not, write to the Free Software
++ * FFmpeg is distributed in the hope that it will be useful,
+  * but WITHOUT ANY WARRANTY; without even the implied warranty of
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
++ * License along with FFmpeg; if not, write to the Free Software
+  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+  */
+ #ifndef AVUTIL_IMGUTILS_INTERNAL_H
+ #define AVUTIL_IMGUTILS_INTERNAL_H
+ #include <stddef.h>
+ #include <stdint.h>
+ int ff_image_copy_plane_uc_from_x86(uint8_t       *dst, ptrdiff_t dst_linesize,
+                                     const uint8_t *src, ptrdiff_t src_linesize,
+                                     ptrdiff_t bytewidth, int height);
+ #endif /* AVUTIL_IMGUTILS_INTERNAL_H */
index 25925b996dd3c4c0079c664ead4ee85c0bf5c298,f63dfa5d3f7cc1f2765101d01af794b4e2127e95..d50f92ce122f65628a74c460215a6359c1c2a66c
@@@ -78,9 -53,9 +78,9 @@@
   * @{
   */
  
 -#define LIBAVUTIL_VERSION_MAJOR 55
 -#define LIBAVUTIL_VERSION_MINOR 21
 -#define LIBAVUTIL_VERSION_MICRO  0
 +#define LIBAVUTIL_VERSION_MAJOR  55
- #define LIBAVUTIL_VERSION_MINOR  49
++#define LIBAVUTIL_VERSION_MINOR  50
 +#define LIBAVUTIL_VERSION_MICRO 100
  
  #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
                                                 LIBAVUTIL_VERSION_MINOR, \
index 94d88320622b6154a562e4db2a3aab29e8ddf714,ffee43b1ad6493207e4d1c9bb2b091e96256168e..2b0ba16c9487ef8faeb482eda392051247c8c813
@@@ -1,16 -1,10 +1,18 @@@
  OBJS += x86/cpu.o                                                       \
 +        x86/fixed_dsp_init.o                                            \
          x86/float_dsp_init.o                                            \
+         x86/imgutils_init.o                                             \
          x86/lls_init.o                                                  \
  
 +OBJS-$(CONFIG_PIXELUTILS) += x86/pixelutils_init.o                      \
 +
 +EMMS_OBJS_$(HAVE_MMX_INLINE)_$(HAVE_MMX_EXTERNAL)_$(HAVE_MM_EMPTY) = x86/emms.o
 +
  YASM-OBJS += x86/cpuid.o                                                \
 -             x86/emms.o                                                 \
 +             $(EMMS_OBJS__yes_)                                      \
 +             x86/fixed_dsp.o                                            \
               x86/float_dsp.o                                            \
+              x86/imgutils.o                                             \
               x86/lls.o                                                  \
 +
 +YASM-OBJS-$(CONFIG_PIXELUTILS) += x86/pixelutils.o                      \
index 0000000000000000000000000000000000000000,9c1e940822bc3fbe51c2aa701291190bc6ea0345..f5ebc0f3516aa8e06d88e518264f108e1c2144f6
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,53 +1,53 @@@
 -;* This file is part of Libav.
+ ;*****************************************************************************
+ ;* Copyright 2016 Anton Khirnov
+ ;*
 -;* Libav is free software; you can redistribute it and/or
++;* This file is part of FFmpeg.
+ ;*
 -;* Libav is distributed in the hope that it will be useful,
++;* FFmpeg is free software; you can redistribute it and/or
+ ;* modify it under the terms of the GNU Lesser General Public
+ ;* License as published by the Free Software Foundation; either
+ ;* version 2.1 of the License, or (at your option) any later version.
+ ;*
 -;* License along with Libav; if not, write to the Free Software
++;* FFmpeg is distributed in the hope that it will be useful,
+ ;* but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ ;* Lesser General Public License for more details.
+ ;*
+ ;* You should have received a copy of the GNU Lesser General Public
++;* License along with FFmpeg; if not, write to the Free Software
+ ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ ;******************************************************************************
+ %include "libavutil/x86/x86util.asm"
+ SECTION .text
+ INIT_XMM sse4
+ cglobal image_copy_plane_uc_from, 6, 7, 4, dst, dst_linesize, src, src_linesize, bw, height, rowpos
+     add dstq, bwq
+     add srcq, bwq
+     neg bwq
+ .row_start
+     mov rowposq, bwq
+ .loop
+     movntdqa m0, [srcq + rowposq + 0 * mmsize]
+     movntdqa m1, [srcq + rowposq + 1 * mmsize]
+     movntdqa m2, [srcq + rowposq + 2 * mmsize]
+     movntdqa m3, [srcq + rowposq + 3 * mmsize]
+     mova [dstq + rowposq + 0 * mmsize], m0
+     mova [dstq + rowposq + 1 * mmsize], m1
+     mova [dstq + rowposq + 2 * mmsize], m2
+     mova [dstq + rowposq + 3 * mmsize], m3
+     add rowposq, 4 * mmsize
+     jnz .loop
+     add srcq, src_linesizeq
+     add dstq, dst_linesizeq
+     dec heightd
+     jnz .row_start
+     RET
index 0000000000000000000000000000000000000000,20ee9abaa2c4de42f9ff9d253d1771c6f902a8df..4ea398205e03f396b2db2d2ddabdb7a886dba686
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,49 +1,49 @@@
 - * This file is part of Libav.
+ /*
 - * Libav is free software; you can redistribute it and/or
++ * This file is part of FFmpeg.
+  *
 - * Libav is distributed in the hope that it will be useful,
++ * FFmpeg is free software; you can redistribute it and/or
+  * modify it under the terms of the GNU Lesser General Public
+  * License as published by the Free Software Foundation; either
+  * version 2.1 of the License, or (at your option) any later version.
+  *
 - * License along with Libav; if not, write to the Free Software
++ * FFmpeg is distributed in the hope that it will be useful,
+  * but WITHOUT ANY WARRANTY; without even the implied warranty of
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
++ * License along with FFmpeg; if not, write to the Free Software
+  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+  */
+ #include <stddef.h>
+ #include <stdint.h>
+ #include "libavutil/cpu.h"
+ #include "libavutil/error.h"
+ #include "libavutil/imgutils.h"
+ #include "libavutil/imgutils_internal.h"
+ #include "libavutil/internal.h"
+ #include "cpu.h"
+ void ff_image_copy_plane_uc_from_sse4(uint8_t *dst, ptrdiff_t dst_linesize,
+                                       const uint8_t *src, ptrdiff_t src_linesize,
+                                       ptrdiff_t bytewidth, int height);
+ int ff_image_copy_plane_uc_from_x86(uint8_t       *dst, ptrdiff_t dst_linesize,
+                                     const uint8_t *src, ptrdiff_t src_linesize,
+                                     ptrdiff_t bytewidth, int height)
+ {
+     int cpu_flags = av_get_cpu_flags();
+     ptrdiff_t bw_aligned = FFALIGN(bytewidth, 64);
+     if (EXTERNAL_SSE4(cpu_flags) &&
+         bw_aligned <= dst_linesize && bw_aligned <= src_linesize)
+         ff_image_copy_plane_uc_from_sse4(dst, dst_linesize, src, src_linesize,
+                                          bw_aligned, height);
+     else
+         return AVERROR(ENOSYS);
+     return 0;
+ }