summaryrefslogtreecommitdiff
path: root/gst-libs/gst/codecs/gstvp8picture.h
blob: 5de240b1806abbad43a810e933a314b4636faffa (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* GStreamer
 * Copyright (C) 2020 Seungha Yang <seungha@centricular.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef __GST_VP8_PICTURE_H__
#define __GST_VP8_PICTURE_H__

#include <gst/codecs/codecs-prelude.h>
#include <gst/codecparsers/gstvp8parser.h>

G_BEGIN_DECLS

#define GST_TYPE_VP8_PICTURE     (gst_vp8_picture_get_type())
#define GST_IS_VP8_PICTURE(obj)  (GST_IS_MINI_OBJECT_TYPE(obj, GST_TYPE_VP8_PICTURE))
#define GST_VP8_PICTURE(obj)     ((GstVp8Picture *)obj)
#define GST_VP8_PICTURE_CAST(obj) (GST_VP8_PICTURE(obj))

typedef struct _GstVp8Picture GstVp8Picture;

struct _GstVp8Picture
{
  GstMiniObject parent;

  GstClockTime pts;
  /* From GstVideoCodecFrame */
  guint32 system_frame_number;

  GstVp8FrameHdr frame_hdr;

  /* raw data and size (does not have ownership) */
  const guint8 * data;
  gsize size;

  gpointer user_data;
  GDestroyNotify notify;
};

GST_CODECS_API
GType gst_vp8_picture_get_type (void);

GST_CODECS_API
GstVp8Picture * gst_vp8_picture_new (void);

static inline GstVp8Picture *
gst_vp8_picture_ref (GstVp8Picture * picture)
{
  return (GstVp8Picture *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (picture));
}

static inline void
gst_vp8_picture_unref (GstVp8Picture * picture)
{
  gst_mini_object_unref (GST_MINI_OBJECT_CAST (picture));
}

static inline gboolean
gst_vp8_picture_replace (GstVp8Picture ** old_picture,
    GstVp8Picture * new_picture)
{
  return gst_mini_object_replace ((GstMiniObject **) old_picture,
      (GstMiniObject *) new_picture);
}

static inline void
gst_vp8_picture_clear (GstVp8Picture ** picture)
{
  if (picture && *picture) {
    gst_vp8_picture_unref (*picture);
    *picture = NULL;
  }
}

GST_CODECS_API
void gst_vp8_picture_set_user_data (GstVp8Picture * picture,
                                    gpointer user_data,
                                    GDestroyNotify notify);

GST_CODECS_API
gpointer gst_vp8_picture_get_user_data (GstVp8Picture * picture);

G_END_DECLS

#endif /* __GST_VP8_PICTURE_H__ */