summaryrefslogtreecommitdiff
path: root/gst-libs/gst/codecs/gstvp9decoder.h
diff options
context:
space:
mode:
authorSeungha Yang <seungha@centricular.com>2021-09-18 00:09:24 +0900
committerNicolas Dufresne <nicolas@ndufresne.ca>2021-09-20 13:03:44 +0000
commite009e801788be672d97c12f5a416eddfd7f18c51 (patch)
tree728bdb15cc86113c5cb509cb810990d5e9856452 /gst-libs/gst/codecs/gstvp9decoder.h
parentaaeb76f09c5e3c83439fbfebfd15f36767b34f0d (diff)
downloadgstreamer-plugins-bad-e009e801788be672d97c12f5a416eddfd7f18c51.tar.gz
codecs: vp9decoder: Use GstFlowReturn everywhere
The same modification as that of VP8 decoder Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2528>
Diffstat (limited to 'gst-libs/gst/codecs/gstvp9decoder.h')
-rw-r--r--gst-libs/gst/codecs/gstvp9decoder.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst-libs/gst/codecs/gstvp9decoder.h b/gst-libs/gst/codecs/gstvp9decoder.h
index 8a6b9b4fc..98c2f7332 100644
--- a/gst-libs/gst/codecs/gstvp9decoder.h
+++ b/gst-libs/gst/codecs/gstvp9decoder.h
@@ -72,7 +72,7 @@ struct _GstVp9DecoderClass
*
* Since: 1.18
*/
- gboolean (*new_sequence) (GstVp9Decoder * decoder,
+ GstFlowReturn (*new_sequence) (GstVp9Decoder * decoder,
const GstVp9FrameHeader *frame_hdr);
/**
@@ -87,7 +87,7 @@ struct _GstVp9DecoderClass
*
* Since: 1.18
*/
- gboolean (*new_picture) (GstVp9Decoder * decoder,
+ GstFlowReturn (*new_picture) (GstVp9Decoder * decoder,
GstVideoCodecFrame * frame,
GstVp9Picture * picture);
@@ -126,7 +126,7 @@ struct _GstVp9DecoderClass
*
* Since: 1.18
*/
- gboolean (*start_picture) (GstVp9Decoder * decoder,
+ GstFlowReturn (*start_picture) (GstVp9Decoder * decoder,
GstVp9Picture * picture);
/**
@@ -140,7 +140,7 @@ struct _GstVp9DecoderClass
*
* Since: 1.18
*/
- gboolean (*decode_picture) (GstVp9Decoder * decoder,
+ GstFlowReturn (*decode_picture) (GstVp9Decoder * decoder,
GstVp9Picture * picture,
GstVp9Dpb * dpb);
@@ -154,7 +154,7 @@ struct _GstVp9DecoderClass
*
* Since: 1.18
*/
- gboolean (*end_picture) (GstVp9Decoder * decoder,
+ GstFlowReturn (*end_picture) (GstVp9Decoder * decoder,
GstVp9Picture * picture);
/**