reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef GrYUVProvider_DEFINED |
| 9 | #define GrYUVProvider_DEFINED |
| 10 | |
| 11 | #include "GrTypes.h" |
| 12 | #include "SkImageInfo.h" |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 13 | #include "SkYUVSizeInfo.h" |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 14 | |
| 15 | class GrContext; |
Brian Salomon | f4a00e4 | 2018-03-23 15:15:03 -0400 | [diff] [blame] | 16 | struct GrSurfaceDesc; |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 17 | class GrTexture; |
Brian Salomon | c65aec9 | 2017-03-09 09:03:58 -0500 | [diff] [blame] | 18 | class GrTextureProxy; |
Robert Phillips | b4a8eac | 2018-09-21 08:26:33 -0400 | [diff] [blame] | 19 | class SkCachedData; |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 20 | struct SkYUVAIndex; |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 21 | |
| 22 | /** |
| 23 | * There are at least 2 different ways to extract/retrieve YUV planar data... |
| 24 | * - SkPixelRef |
Brian Osman | ef90ae4 | 2017-04-24 09:30:24 -0400 | [diff] [blame] | 25 | * - SkImageGenerator |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 26 | * |
| 27 | * To share common functionality around using the planar data, we use this abstract base-class |
| 28 | * to represent accessing that data. |
| 29 | */ |
| 30 | class GrYUVProvider { |
| 31 | public: |
| 32 | virtual ~GrYUVProvider() {} |
| 33 | |
| 34 | /** |
Robert Phillips | 538f1a3 | 2017-03-08 14:32:55 -0500 | [diff] [blame] | 35 | * On success, this returns a texture proxy that has converted the YUV data from the provider |
Greg Daniel | 1445da6 | 2018-01-04 10:27:29 -0500 | [diff] [blame] | 36 | * into a form that is supported by the GPU (typically transformed into RGB). The texture will |
| 37 | * automatically have a key added, so it can be retrieved from the cache (assuming it is |
| 38 | * requested by a provider w/ the same genID). If srcColorSpace and dstColorSpace are |
| 39 | * specified, then a color conversion from src to dst will be applied to the pixels. |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 40 | * |
| 41 | * On failure (e.g. the provider had no data), this returns NULL. |
| 42 | */ |
Greg Daniel | 1445da6 | 2018-01-04 10:27:29 -0500 | [diff] [blame] | 43 | sk_sp<GrTextureProxy> refAsTextureProxy(GrContext*, const GrSurfaceDesc&, |
Brian Osman | 861ea5b | 2018-06-14 09:14:03 -0400 | [diff] [blame] | 44 | SkColorSpace* srcColorSpace, |
| 45 | SkColorSpace* dstColorSpace); |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 46 | |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 47 | sk_sp<SkCachedData> getPlanes(SkYUVSizeInfo*, SkYUVAIndex[SkYUVAIndex::kIndexCount], |
| 48 | SkYUVColorSpace*, const void* planes[SkYUVSizeInfo::kMaxCount]); |
Robert Phillips | b4a8eac | 2018-09-21 08:26:33 -0400 | [diff] [blame] | 49 | |
| 50 | private: |
| 51 | virtual uint32_t onGetID() const = 0; |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 52 | |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 53 | // These are not meant to be called by a client, only by the implementation |
| 54 | |
| 55 | /** |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 56 | * If decoding to YUV is supported, this returns true. Otherwise, this |
| 57 | * returns false and does not modify any of the parameters. |
| 58 | * |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 59 | * @param sizeInfo Output parameter indicating the sizes and required |
| 60 | * allocation widths of the Y, U, V, and A planes. |
| 61 | * @param yuvaIndices How the YUVA planes are used/organized |
| 62 | * @param colorSpace Output parameter. |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 63 | */ |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 64 | virtual bool onQueryYUVA8(SkYUVSizeInfo* sizeInfo, |
| 65 | SkYUVAIndex yuvaIndices[SkYUVAIndex::kIndexCount], |
| 66 | SkYUVColorSpace* colorSpace) const = 0; |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 69 | * Returns true on success and false on failure. |
| 70 | * This always attempts to perform a full decode. If the client only |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 71 | * wants size, it should call onQueryYUVA8(). |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 72 | * |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 73 | * @param sizeInfo Needs to exactly match the values returned by the |
| 74 | * query, except the WidthBytes may be larger than the |
| 75 | * recommendation (but not smaller). |
| 76 | * @param yuvaIndices How the YUVA planes are used/organized |
| 77 | * @param planes Memory for each of the Y, U, V, and A planes. |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 78 | */ |
Jim Van Verth | 8f11e43 | 2018-10-18 14:36:59 -0400 | [diff] [blame^] | 79 | virtual bool onGetYUVA8Planes(const SkYUVSizeInfo& sizeInfo, |
| 80 | const SkYUVAIndex yuvaIndices[SkYUVAIndex::kIndexCount], |
| 81 | void* planes[]) = 0; |
Greg Daniel | fb3abcd | 2018-02-02 15:48:33 -0500 | [diff] [blame] | 82 | |
Greg Daniel | fb3abcd | 2018-02-02 15:48:33 -0500 | [diff] [blame] | 83 | // This is used as release callback for the YUV data that we capture in an SkImage when |
| 84 | // uploading to a gpu. When the upload is complete and we release the SkImage this callback will |
| 85 | // release the underlying data. |
| 86 | static void YUVGen_DataReleaseProc(const void*, void* data); |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | #endif |