mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
Revert "videodecoder: expose default query handling function"
Apparently I forgot how gobject works, there is no need to expose
it directly as one can call it from the parent_class pointer
This reverts commit ea9b6a7e3c
.
This commit is contained in:
parent
065968c3fc
commit
c63db0e104
3 changed files with 3 additions and 18 deletions
|
@ -479,6 +479,8 @@ static GstFlowReturn gst_video_decoder_parse_available (GstVideoDecoder * dec,
|
|||
gboolean at_eos, gboolean new_buffer);
|
||||
static gboolean gst_video_decoder_negotiate_unlocked (GstVideoDecoder *
|
||||
decoder);
|
||||
static gboolean gst_video_decoder_sink_query_default (GstVideoDecoder * decoder,
|
||||
GstQuery * query);
|
||||
static gboolean gst_video_decoder_src_query_default (GstVideoDecoder * decoder,
|
||||
GstQuery * query);
|
||||
|
||||
|
@ -1806,19 +1808,7 @@ gst_video_decoder_sink_getcaps (GstVideoDecoder * decoder, GstCaps * filter)
|
|||
return caps;
|
||||
}
|
||||
|
||||
/**
|
||||
* gst_video_decoder_sink_query_default:
|
||||
* @decoder: a #GstVideoDecoder
|
||||
* @query: (transfer none): a #GstQuery
|
||||
*
|
||||
* Calls the default query handler for #GstVideoDecoder. It is useful
|
||||
* when a subclass only want to handle a particular type of query and
|
||||
* wants to use the default handler for others.
|
||||
*
|
||||
* Returns: a boolean, representing if the query was handled.
|
||||
* Since: 1.6
|
||||
*/
|
||||
gboolean
|
||||
static gboolean
|
||||
gst_video_decoder_sink_query_default (GstVideoDecoder * decoder,
|
||||
GstQuery * query)
|
||||
{
|
||||
|
|
|
@ -424,13 +424,9 @@ GstCaps * gst_video_decoder_proxy_getcaps (GstVideoDecoder * decoder,
|
|||
GstCaps * caps,
|
||||
GstCaps * filter);
|
||||
|
||||
gboolean gst_video_decoder_sink_query_default (GstVideoDecoder * decoder,
|
||||
GstQuery * query);
|
||||
|
||||
void gst_video_decoder_set_use_default_pad_acceptcaps (GstVideoDecoder * decoder,
|
||||
gboolean use);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
||||
|
|
|
@ -130,7 +130,6 @@ EXPORTS
|
|||
gst_video_decoder_set_output_state
|
||||
gst_video_decoder_set_packetized
|
||||
gst_video_decoder_set_use_default_pad_acceptcaps
|
||||
gst_video_decoder_sink_query_default
|
||||
gst_video_dither_flags_get_type
|
||||
gst_video_dither_free
|
||||
gst_video_dither_line
|
||||
|
|
Loading…
Reference in a new issue