blob: c32af15df00596d7270564403f6befac081426dd [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;
16class GrTexture;
17
18/**
19 * There are at least 2 different ways to extract/retrieve YUV planar data...
20 * - SkPixelRef
21 * - SkImageGeneartor
22 *
23 * To share common functionality around using the planar data, we use this abstract base-class
24 * to represent accessing that data.
25 */
26class GrYUVProvider {
27public:
28 virtual ~GrYUVProvider() {}
29
30 /**
31 * On success, this returns a texture that has converted the YUV data from the provider
32 * into a form that is supported by the GPU (typically transformed into RGB). If useCache
33 * is true, then the texture will automatically have a key added, so it can be retrieved
34 * from the cache (assuming it is requested by a provider w/ the same genID).
35 *
36 * On failure (e.g. the provider had no data), this returns NULL.
37 */
robertphillips677da9d2016-05-11 05:15:55 -070038 sk_sp<GrTexture> refAsTexture(GrContext*, const GrSurfaceDesc&, bool useCache);
reed43fe6182015-09-08 08:37:36 -070039
40 virtual uint32_t onGetID() = 0;
41
reed43fe6182015-09-08 08:37:36 -070042 // These are not meant to be called by a client, only by the implementation
43
44 /**
msarett4984c3c2016-03-10 05:44:43 -080045 * If decoding to YUV is supported, this returns true. Otherwise, this
46 * returns false and does not modify any of the parameters.
47 *
48 * @param sizeInfo Output parameter indicating the sizes and required
49 * allocation widths of the Y, U, and V planes.
50 * @param colorSpace Output parameter.
reed43fe6182015-09-08 08:37:36 -070051 */
msarett4984c3c2016-03-10 05:44:43 -080052 virtual bool onQueryYUV8(SkYUVSizeInfo* sizeInfo, SkYUVColorSpace* colorSpace) const = 0;
reed43fe6182015-09-08 08:37:36 -070053
54 /**
msarett4984c3c2016-03-10 05:44:43 -080055 * Returns true on success and false on failure.
56 * This always attempts to perform a full decode. If the client only
57 * wants size, it should call onQueryYUV8().
reed43fe6182015-09-08 08:37:36 -070058 *
msarett4984c3c2016-03-10 05:44:43 -080059 * @param sizeInfo Needs to exactly match the values returned by the
60 * query, except the WidthBytes may be larger than the
61 * recommendation (but not smaller).
62 * @param planes Memory for each of the Y, U, and V planes.
reed43fe6182015-09-08 08:37:36 -070063 */
msarett4984c3c2016-03-10 05:44:43 -080064 virtual bool onGetYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) = 0;
reed43fe6182015-09-08 08:37:36 -070065};
66
67#endif