summaryrefslogtreecommitdiff
path: root/gst-libs/gst/vaapi/gstvaapitexturemap.h
blob: e74fedf8f59a7e0f0c6bdf6c3c3d68e6a56635ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 *  gstvaapitexturemap.h - VA texture Hash map
 *
 *  Copyright (C) 2016 Intel Corporation
 *  Copyright (C) 2016 Igalia S.L.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public License
 *  as published by the Free Software Foundation; either version 2.1
 *  of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301 USA
 */

#ifndef GST_VAAPI_TEXTURE_MAP_H
#define GST_VAAPI_TEXTURE_MAP_H

#include <gst/vaapi/gstvaapitexture.h>

G_BEGIN_DECLS

typedef struct _GstVaapiTextureMap GstVaapiTextureMap;
typedef struct _GstVaapiTextureMapClass GstVaapiTextureMapClass;

#define GST_TYPE_VAAPI_TEXTURE_MAP \
  (gst_vaapi_texture_map_get_type ())
#define GST_VAAPI_TEXTURE_MAP(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VAAPI_TEXTURE_MAP, GstVaapiTextureMap))

GstVaapiTextureMap *
gst_vaapi_texture_map_new (void);

gboolean
gst_vaapi_texture_map_add (GstVaapiTextureMap * map,
                           GstVaapiTexture * texture,
                           guint id);

GstVaapiTexture *
gst_vaapi_texture_map_lookup (GstVaapiTextureMap * map,
                              guint id);

void
gst_vaapi_texture_map_reset (GstVaapiTextureMap * map);

GType
gst_vaapi_texture_map_get_type (void) G_GNUC_CONST;

G_END_DECLS

#endif /* GST_VAAPI_TEXTURE_MAP_H */