blob: 10718ccfda7ebb8d4cc1118f595f80e0ac8594a9 [file] [log] [blame]
Diego Biurrunb9ba5252013-02-07 21:03:491/*
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 Giovarad37c9622014-03-10 16:05:1226static 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 Biurrunb9ba5252013-02-07 21:03:4936static inline void copy_block8(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
37{
38 int i;
Vittorio Giovarab4e355c2014-03-10 20:44:2639 for (i = 0; i < h; i++) {
Diego Biurrunb9ba5252013-02-07 21:03:4940 AV_COPY64U(dst, src);
Vittorio Giovarab4e355c2014-03-10 20:44:2641 dst += dstStride;
42 src += srcStride;
Diego Biurrunb9ba5252013-02-07 21:03:4943 }
44}
45
46static inline void copy_block9(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
47{
48 int i;
Vittorio Giovarab4e355c2014-03-10 20:44:2649 for (i = 0; i < h; i++) {
Diego Biurrunb9ba5252013-02-07 21:03:4950 AV_COPY64U(dst, src);
Vittorio Giovarab4e355c2014-03-10 20:44:2651 dst[8] = src[8];
52 dst += dstStride;
53 src += srcStride;
Diego Biurrunb9ba5252013-02-07 21:03:4954 }
55}
56
Vittorio Giovarad37c9622014-03-10 16:05:1257static 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 Biurrunb9ba5252013-02-07 21:03:4967static inline void copy_block17(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
68{
69 int i;
Vittorio Giovarab4e355c2014-03-10 20:44:2670 for (i = 0; i < h; i++) {
Diego Biurrunb9ba5252013-02-07 21:03:4971 AV_COPY128U(dst, src);
Vittorio Giovarab4e355c2014-03-10 20:44:2672 dst[16] = src[16];
73 dst += dstStride;
74 src += srcStride;
Diego Biurrunb9ba5252013-02-07 21:03:4975 }
76}
77
78#endif /* AVCODEC_COPY_BLOCK_H */