blob: de6ce33c3fa7faf1aa5b08dc0c396cb29fb10291 [file] [log] [blame]
reed43fe6182015-09-08 08:37:36 -07001/*
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"
msarett4984c3c2016-03-10 05:44:43 -080013#include "SkYUVSizeInfo.h"
reed43fe6182015-09-08 08:37:36 -070014
15class GrContext;
Brian Salomonf4a00e42018-03-23 15:15:03 -040016struct GrSurfaceDesc;
reed43fe6182015-09-08 08:37:36 -070017class GrTexture;
Brian Salomonc65aec92017-03-09 09:03:58 -050018class GrTextureProxy;
Robert Phillipsb4a8eac2018-09-21 08:26:33 -040019class SkCachedData;
reed43fe6182015-09-08 08:37:36 -070020
21/**
22 * There are at least 2 different ways to extract/retrieve YUV planar data...
23 * - SkPixelRef
Brian Osmanef90ae42017-04-24 09:30:24 -040024 * - SkImageGenerator
reed43fe6182015-09-08 08:37:36 -070025 *
26 * To share common functionality around using the planar data, we use this abstract base-class
27 * to represent accessing that data.
28 */
29class GrYUVProvider {
30public:
31 virtual ~GrYUVProvider() {}
32
33 /**
Robert Phillips538f1a32017-03-08 14:32:55 -050034 * On success, this returns a texture proxy that has converted the YUV data from the provider
Greg Daniel1445da62018-01-04 10:27:29 -050035 * into a form that is supported by the GPU (typically transformed into RGB). The texture will
36 * automatically have a key added, so it can be retrieved from the cache (assuming it is
37 * requested by a provider w/ the same genID). If srcColorSpace and dstColorSpace are
38 * specified, then a color conversion from src to dst will be applied to the pixels.
reed43fe6182015-09-08 08:37:36 -070039 *
40 * On failure (e.g. the provider had no data), this returns NULL.
41 */
Greg Daniel1445da62018-01-04 10:27:29 -050042 sk_sp<GrTextureProxy> refAsTextureProxy(GrContext*, const GrSurfaceDesc&,
Brian Osman861ea5b2018-06-14 09:14:03 -040043 SkColorSpace* srcColorSpace,
44 SkColorSpace* dstColorSpace);
reed43fe6182015-09-08 08:37:36 -070045
Jim Van Verthf99a6742018-10-18 16:13:18 +000046 sk_sp<SkCachedData> getPlanes(SkYUVSizeInfo*, SkYUVColorSpace*, const void* planes[3]);
Robert Phillipsb4a8eac2018-09-21 08:26:33 -040047
48private:
49 virtual uint32_t onGetID() const = 0;
reed43fe6182015-09-08 08:37:36 -070050
reed43fe6182015-09-08 08:37:36 -070051 // These are not meant to be called by a client, only by the implementation
52
53 /**
msarett4984c3c2016-03-10 05:44:43 -080054 * If decoding to YUV is supported, this returns true. Otherwise, this
55 * returns false and does not modify any of the parameters.
56 *
Jim Van Verthf99a6742018-10-18 16:13:18 +000057 * @param sizeInfo Output parameter indicating the sizes and required
58 * allocation widths of the Y, U, and V planes.
59 * @param colorSpace Output parameter.
reed43fe6182015-09-08 08:37:36 -070060 */
Jim Van Verthf99a6742018-10-18 16:13:18 +000061 virtual bool onQueryYUV8(SkYUVSizeInfo* sizeInfo, SkYUVColorSpace* colorSpace) const = 0;
reed43fe6182015-09-08 08:37:36 -070062
63 /**
msarett4984c3c2016-03-10 05:44:43 -080064 * Returns true on success and false on failure.
65 * This always attempts to perform a full decode. If the client only
Jim Van Verthf99a6742018-10-18 16:13:18 +000066 * wants size, it should call onQueryYUV8().
reed43fe6182015-09-08 08:37:36 -070067 *
Jim Van Verthf99a6742018-10-18 16:13:18 +000068 * @param sizeInfo Needs to exactly match the values returned by the
69 * query, except the WidthBytes may be larger than the
70 * recommendation (but not smaller).
71 * @param planes Memory for each of the Y, U, and V planes.
reed43fe6182015-09-08 08:37:36 -070072 */
Jim Van Verthf99a6742018-10-18 16:13:18 +000073 virtual bool onGetYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) = 0;
Greg Danielfb3abcd2018-02-02 15:48:33 -050074
Greg Danielfb3abcd2018-02-02 15:48:33 -050075 // This is used as release callback for the YUV data that we capture in an SkImage when
76 // uploading to a gpu. When the upload is complete and we release the SkImage this callback will
77 // release the underlying data.
78 static void YUVGen_DataReleaseProc(const void*, void* data);
reed43fe6182015-09-08 08:37:36 -070079};
80
81#endif