| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /** | ||
| 2 | * Copyright (C) 2025 Niklas Haas | ||
| 3 | * | ||
| 4 | * This file is part of FFmpeg. | ||
| 5 | * | ||
| 6 | * FFmpeg is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU Lesser General Public | ||
| 8 | * License as published by the Free Software Foundation; either | ||
| 9 | * version 2.1 of the License, or (at your option) any later version. | ||
| 10 | * | ||
| 11 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 14 | * Lesser General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU Lesser General Public | ||
| 17 | * License along with FFmpeg; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef SWSCALE_OPS_INTERNAL_H | ||
| 22 | #define SWSCALE_OPS_INTERNAL_H | ||
| 23 | |||
| 24 | #include "libavutil/mem_internal.h" | ||
| 25 | |||
| 26 | #include "ops.h" | ||
| 27 | #include "ops_dispatch.h" | ||
| 28 | |||
| 29 | #define Q(N) ((AVRational64) { N, 1 }) | ||
| 30 | |||
| 31 | 29313373 | static inline AVRational64 ff_sws_pixel_expand(SwsPixelType from, SwsPixelType to) | |
| 32 | { | ||
| 33 | 29313373 | const int src = ff_sws_pixel_type_size(from); | |
| 34 | 29313373 | const int dst = ff_sws_pixel_type_size(to); | |
| 35 |
2/2✓ Branch 0 taken 25467735 times.
✓ Branch 1 taken 3845638 times.
|
29313373 | if (src > dst) |
| 36 | 25467735 | return Q(0); | |
| 37 | 3845638 | int scale = 1; | |
| 38 |
2/2✓ Branch 0 taken 2686756 times.
✓ Branch 1 taken 3845638 times.
|
6532394 | for (int i = 1; i < dst / src; i++) |
| 39 | 2686756 | scale = (scale << (src * 8)) | 1; | |
| 40 | 3845638 | return Q(scale); | |
| 41 | } | ||
| 42 | |||
| 43 | 4483714 | static inline void ff_sws_pack_op_decode(const SwsOp *op, uint64_t mask[4], int shift[4]) | |
| 44 | { | ||
| 45 | 4483714 | int size = 0; | |
| 46 |
2/2✓ Branch 0 taken 17934856 times.
✓ Branch 1 taken 4483714 times.
|
22418570 | for (int i = 0; i < 4; i++) |
| 47 | 17934856 | size += op->pack.pattern[i]; | |
| 48 |
2/2✓ Branch 0 taken 17934856 times.
✓ Branch 1 taken 4483714 times.
|
22418570 | for (int i = 0; i < 4; i++) { |
| 49 | 17934856 | const int bits = op->pack.pattern[i]; | |
| 50 | 17934856 | mask[i] = (UINT64_C(1) << bits) - 1; | |
| 51 |
2/2✓ Branch 0 taken 13451142 times.
✓ Branch 1 taken 4483714 times.
|
17934856 | shift[i] = (i ? shift[i - 1] : size) - bits; |
| 52 | } | ||
| 53 | 4483714 | } | |
| 54 | |||
| 55 | /** | ||
| 56 | * Split an op list into two at the given index. The split will be mediated | ||
| 57 | * by a set of planar read/write operations, plus a swizzle (if necessary) | ||
| 58 | * to re-order only used components. If a split is performed, both output | ||
| 59 | * lists will be optimized before returning. | ||
| 60 | * | ||
| 61 | * @param ops1 The first part of the split op list. Will be modified in-place. | ||
| 62 | * @param ops2 The second part of the split op list will be returned here, or | ||
| 63 | * NULL if no split was necessary. | ||
| 64 | * @param index The index of the operation to split before. The operation | ||
| 65 | * itself will be absent from `ops1` and instead moved to the | ||
| 66 | * start of `ops2`. | ||
| 67 | * | ||
| 68 | * Returnse 0 or a negative error code. | ||
| 69 | */ | ||
| 70 | int ff_sws_op_list_split_at(SwsOpList *ops1, SwsOpList **ops2, int index); | ||
| 71 | |||
| 72 | /** | ||
| 73 | * Reduce an op list into a reduced subset that operates only on a given | ||
| 74 | * subset of planes. No effect if the output is not planar, or if the plane | ||
| 75 | * mask is empty or equal to all planes. | ||
| 76 | * | ||
| 77 | * @param ops1 Updated in-place to contain only the selected planes. | ||
| 78 | * @param ops2 The removed remainder is returned here, or NULL if no-op. | ||
| 79 | * @param planes A mask of the plane indices to keep. | ||
| 80 | * | ||
| 81 | * Returns 0 or a negative error code. | ||
| 82 | */ | ||
| 83 | int ff_sws_op_list_split_planes(SwsOpList *ops1, SwsOpList **ops2, SwsCompMask planes); | ||
| 84 | |||
| 85 | #endif /* SWSCALE_OPS_INTERNAL_H */ | ||
| 86 |