Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of Libav. |
| 3 | * |
| 4 | * Libav is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Lesser General Public |
| 6 | * License as published by the Free Software Foundation; either |
| 7 | * version 2.1 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Libav is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Lesser General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU Lesser General Public |
| 15 | * License along with Libav; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 17 | */ |
| 18 | |
| 19 | #ifndef AVCODEC_COPY_BLOCK_H |
| 20 | #define AVCODEC_COPY_BLOCK_H |
| 21 | |
| 22 | #include <stdint.h> |
| 23 | |
| 24 | #include "libavutil/intreadwrite.h" |
| 25 | |
Vittorio Giovara | d37c962 | 2014-03-10 16:05:12 | [diff] [blame^] | 26 | static inline void copy_block4(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h) |
| 27 | { |
| 28 | int i; |
| 29 | for (i = 0; i < h; i++) { |
| 30 | AV_COPY32U(dst, src); |
| 31 | dst += dstStride; |
| 32 | src += srcStride; |
| 33 | } |
| 34 | } |
| 35 | |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 36 | static inline void copy_block8(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h) |
| 37 | { |
| 38 | int i; |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 39 | for (i = 0; i < h; i++) { |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 40 | AV_COPY64U(dst, src); |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 41 | dst += dstStride; |
| 42 | src += srcStride; |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | |
| 46 | static inline void copy_block9(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h) |
| 47 | { |
| 48 | int i; |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 49 | for (i = 0; i < h; i++) { |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 50 | AV_COPY64U(dst, src); |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 51 | dst[8] = src[8]; |
| 52 | dst += dstStride; |
| 53 | src += srcStride; |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
Vittorio Giovara | d37c962 | 2014-03-10 16:05:12 | [diff] [blame^] | 57 | static inline void copy_block16(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h) |
| 58 | { |
| 59 | int i; |
| 60 | for (i = 0; i < h; i++) { |
| 61 | AV_COPY128U(dst, src); |
| 62 | dst += dstStride; |
| 63 | src += srcStride; |
| 64 | } |
| 65 | } |
| 66 | |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 67 | static inline void copy_block17(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h) |
| 68 | { |
| 69 | int i; |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 70 | for (i = 0; i < h; i++) { |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 71 | AV_COPY128U(dst, src); |
Vittorio Giovara | b4e355c | 2014-03-10 20:44:26 | [diff] [blame] | 72 | dst[16] = src[16]; |
| 73 | dst += dstStride; |
| 74 | src += srcStride; |
Diego Biurrun | b9ba525 | 2013-02-07 21:03:49 | [diff] [blame] | 75 | } |
| 76 | } |
| 77 | |
| 78 | #endif /* AVCODEC_COPY_BLOCK_H */ |