mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
0b790b663c
Sync both pads by waiting in the kate chain function. Do not reset our internal segment from segment updates, in order to be able to map video running time to kate running time, to give libtiger the timestamp it expects. This allows us to use running time to sync to video, which is The Right Way. https://bugzilla.gnome.org/show_bug.cgi?id=600929
591 lines
18 KiB
C
591 lines
18 KiB
C
/* GStreamer
|
|
* Copyright (C) 2008 Vincent Penquerc'h <ogg.k.ogg.k@googlemail.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., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* FIXME: shouldn't all this GstKateDecoderBase stuff really be a base class? */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <gst/tag/tag.h>
|
|
#include "gstkate.h"
|
|
#include "gstkateutil.h"
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gst_kateutil_debug);
|
|
#define GST_CAT_DEFAULT gst_kateutil_debug
|
|
|
|
static void gst_kate_util_decoder_base_free_event_queue (GstKateDecoderBase *
|
|
decoder);
|
|
|
|
GstCaps *
|
|
gst_kate_util_set_header_on_caps (GstElement * element, GstCaps * caps,
|
|
GList * headers)
|
|
{
|
|
GstStructure *structure;
|
|
GValue array = { 0 };
|
|
|
|
GST_LOG_OBJECT (element, "caps: %" GST_PTR_FORMAT, caps);
|
|
|
|
if (G_UNLIKELY (!caps))
|
|
return NULL;
|
|
if (G_UNLIKELY (!headers))
|
|
return NULL;
|
|
|
|
caps = gst_caps_make_writable (caps);
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
g_value_init (&array, GST_TYPE_ARRAY);
|
|
|
|
while (headers) {
|
|
GValue value = { 0 };
|
|
GstBuffer *buffer = headers->data;
|
|
g_assert (buffer);
|
|
GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_IN_CAPS);
|
|
g_value_init (&value, GST_TYPE_BUFFER);
|
|
/* as in theoraenc, we need to copy to avoid circular references */
|
|
buffer = gst_buffer_copy (buffer);
|
|
gst_value_set_buffer (&value, buffer);
|
|
gst_buffer_unref (buffer);
|
|
gst_value_array_append_value (&array, &value);
|
|
g_value_unset (&value);
|
|
headers = headers->next;
|
|
}
|
|
|
|
gst_structure_set_value (structure, "streamheader", &array);
|
|
g_value_unset (&array);
|
|
GST_LOG_OBJECT (element, "here are the newly set caps: %" GST_PTR_FORMAT,
|
|
caps);
|
|
|
|
return caps;
|
|
}
|
|
|
|
void
|
|
gst_kate_util_install_decoder_base_properties (GObjectClass * gobject_class)
|
|
{
|
|
g_object_class_install_property (gobject_class, ARG_DEC_BASE_LANGUAGE,
|
|
g_param_spec_string ("language", "Language", "The language of the stream",
|
|
"", G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class, ARG_DEC_BASE_CATEGORY,
|
|
g_param_spec_string ("category", "Category", "The category of the stream",
|
|
"", G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
ARG_DEC_BASE_ORIGINAL_CANVAS_WIDTH,
|
|
g_param_spec_int ("original-canvas-width",
|
|
"Original canvas width (0 is unspecified)",
|
|
"The canvas width this stream was authored for", 0, G_MAXINT, 0,
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
ARG_DEC_BASE_ORIGINAL_CANVAS_HEIGHT,
|
|
g_param_spec_int ("original-canvas-height", "Original canvas height",
|
|
"The canvas height this stream was authored for (0 is unspecified)",
|
|
0, G_MAXINT, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
}
|
|
|
|
void
|
|
gst_kate_util_decode_base_init (GstKateDecoderBase * decoder,
|
|
gboolean delay_events)
|
|
{
|
|
if (G_UNLIKELY (!decoder))
|
|
return;
|
|
|
|
decoder->language = NULL;
|
|
decoder->category = NULL;
|
|
decoder->original_canvas_width = 0;
|
|
decoder->original_canvas_height = 0;
|
|
decoder->tags = NULL;
|
|
decoder->initialized = FALSE;
|
|
decoder->delay_events = delay_events;
|
|
decoder->event_queue = NULL;
|
|
}
|
|
|
|
static void
|
|
gst_kate_util_decode_base_reset (GstKateDecoderBase * decoder)
|
|
{
|
|
g_free (decoder->language);
|
|
decoder->language = NULL;
|
|
g_free (decoder->category);
|
|
decoder->category = NULL;
|
|
if (decoder->tags) {
|
|
gst_tag_list_free (decoder->tags);
|
|
decoder->tags = NULL;
|
|
}
|
|
decoder->original_canvas_width = 0;
|
|
decoder->original_canvas_height = 0;
|
|
if (decoder->event_queue) {
|
|
gst_kate_util_decoder_base_free_event_queue (decoder);
|
|
}
|
|
decoder->initialized = FALSE;
|
|
}
|
|
|
|
gboolean
|
|
gst_kate_util_decoder_base_queue_event (GstKateDecoderBase * decoder,
|
|
GstEvent * event, gboolean (*handler) (GstPad *, GstEvent *), GstPad * pad)
|
|
{
|
|
gboolean can_be_queued;
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
case GST_EVENT_FLUSH_START:
|
|
case GST_EVENT_FLUSH_STOP:
|
|
case GST_EVENT_EOS:
|
|
can_be_queued = FALSE;
|
|
break;
|
|
default:
|
|
can_be_queued = TRUE;
|
|
break;
|
|
}
|
|
|
|
if (decoder->delay_events && can_be_queued) {
|
|
GstKateDecoderBaseQueuedEvent *item;
|
|
GST_DEBUG_OBJECT (decoder, "We have to delay the event");
|
|
item = g_slice_new (GstKateDecoderBaseQueuedEvent);
|
|
if (item) {
|
|
item->event = event;
|
|
item->pad = pad;
|
|
item->handler = handler;
|
|
g_queue_push_tail (decoder->event_queue, item);
|
|
return TRUE;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_kate_util_decoder_base_free_event_queue (GstKateDecoderBase * decoder)
|
|
{
|
|
while (decoder->event_queue->length) {
|
|
GstKateDecoderBaseQueuedEvent *item = (GstKateDecoderBaseQueuedEvent *)
|
|
g_queue_pop_head (decoder->event_queue);
|
|
g_slice_free (GstKateDecoderBaseQueuedEvent, item);
|
|
}
|
|
g_queue_free (decoder->event_queue);
|
|
decoder->event_queue = NULL;
|
|
}
|
|
|
|
static void
|
|
gst_kate_util_decoder_base_drain_event_queue (GstKateDecoderBase * decoder)
|
|
{
|
|
decoder->delay_events = FALSE;
|
|
|
|
if (decoder->event_queue->length == 0)
|
|
return;
|
|
|
|
GST_DEBUG_OBJECT (decoder, "We can now drain all events!");
|
|
while (decoder->event_queue->length) {
|
|
GstKateDecoderBaseQueuedEvent *item = (GstKateDecoderBaseQueuedEvent *)
|
|
g_queue_pop_head (decoder->event_queue);
|
|
(*item->handler) (item->pad, item->event);
|
|
g_slice_free (GstKateDecoderBaseQueuedEvent, item);
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
gst_kate_util_decoder_base_get_property (GstKateDecoderBase * decoder,
|
|
GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
|
|
{
|
|
gboolean res = TRUE;
|
|
switch (prop_id) {
|
|
case ARG_DEC_BASE_LANGUAGE:
|
|
g_value_set_string (value, decoder->language);
|
|
break;
|
|
case ARG_DEC_BASE_CATEGORY:
|
|
g_value_set_string (value, decoder->category);
|
|
break;
|
|
case ARG_DEC_BASE_ORIGINAL_CANVAS_WIDTH:
|
|
g_value_set_int (value, decoder->original_canvas_width);
|
|
break;
|
|
case ARG_DEC_BASE_ORIGINAL_CANVAS_HEIGHT:
|
|
g_value_set_int (value, decoder->original_canvas_height);
|
|
break;
|
|
default:
|
|
res = FALSE;
|
|
break;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
GstFlowReturn
|
|
gst_kate_util_decoder_base_chain_kate_packet (GstKateDecoderBase * decoder,
|
|
GstElement * element, GstPad * pad, GstBuffer * buf, GstPad * srcpad,
|
|
GstPad * tagpad, GstCaps ** src_caps, const kate_event ** ev)
|
|
{
|
|
kate_packet kp;
|
|
int ret;
|
|
GstFlowReturn rflow = GST_FLOW_OK;
|
|
gboolean is_header;
|
|
|
|
GST_DEBUG_OBJECT (element, "got kate packet, %u bytes, type %02x",
|
|
GST_BUFFER_SIZE (buf),
|
|
GST_BUFFER_SIZE (buf) == 0 ? -1 : GST_BUFFER_DATA (buf)[0]);
|
|
|
|
is_header = GST_BUFFER_SIZE (buf) > 0 && (GST_BUFFER_DATA (buf)[0] & 0x80);
|
|
|
|
if (!is_header && decoder->tags) {
|
|
/* after we've processed headers, send any tags before processing the data packet */
|
|
GST_DEBUG_OBJECT (element, "Not a header, sending tags for pad %s:%s",
|
|
GST_DEBUG_PAD_NAME (tagpad));
|
|
gst_element_found_tags_for_pad (element, tagpad, decoder->tags);
|
|
decoder->tags = NULL;
|
|
}
|
|
|
|
kate_packet_wrap (&kp, GST_BUFFER_SIZE (buf), GST_BUFFER_DATA (buf));
|
|
ret = kate_high_decode_packetin (&decoder->k, &kp, ev);
|
|
if (G_UNLIKELY (ret < 0)) {
|
|
GST_ELEMENT_ERROR (element, STREAM, DECODE, (NULL),
|
|
("Failed to decode Kate packet: %d", ret));
|
|
return GST_FLOW_ERROR;
|
|
}
|
|
|
|
if (G_UNLIKELY (ret > 0)) {
|
|
GST_DEBUG_OBJECT (element,
|
|
"kate_high_decode_packetin has received EOS packet");
|
|
}
|
|
|
|
/* headers may be interesting to retrieve information from */
|
|
if (G_UNLIKELY (is_header)) {
|
|
switch (GST_BUFFER_DATA (buf)[0]) {
|
|
case 0x80: /* ID header */
|
|
GST_INFO_OBJECT (element, "Parsed ID header: language %s, category %s",
|
|
decoder->k.ki->language, decoder->k.ki->category);
|
|
if (src_caps) {
|
|
if (*src_caps) {
|
|
gst_caps_unref (*src_caps);
|
|
*src_caps = NULL;
|
|
}
|
|
if (strcmp (decoder->k.ki->category, "K-SPU") == 0 ||
|
|
strcmp (decoder->k.ki->category, "spu-subtitles") == 0) {
|
|
*src_caps = gst_caps_new_simple ("video/x-dvd-subpicture", NULL);
|
|
} else if (decoder->k.ki->text_markup_type == kate_markup_none) {
|
|
*src_caps = gst_caps_new_simple ("text/plain", NULL);
|
|
} else {
|
|
*src_caps = gst_caps_new_simple ("text/x-pango-markup", NULL);
|
|
}
|
|
GST_INFO_OBJECT (srcpad, "Setting caps: %" GST_PTR_FORMAT, *src_caps);
|
|
if (!gst_pad_set_caps (srcpad, *src_caps)) {
|
|
GST_ERROR_OBJECT (srcpad, "Failed to set caps %" GST_PTR_FORMAT,
|
|
*src_caps);
|
|
}
|
|
}
|
|
if (decoder->k.ki->language && *decoder->k.ki->language) {
|
|
GstTagList *old = decoder->tags, *tags = gst_tag_list_new ();
|
|
if (tags) {
|
|
gchar *lang_code;
|
|
|
|
/* en_GB -> en */
|
|
lang_code = g_ascii_strdown (decoder->k.ki->language, -1);
|
|
g_strdelimit (lang_code, NULL, '\0');
|
|
gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_LANGUAGE_CODE,
|
|
lang_code, NULL);
|
|
g_free (lang_code);
|
|
/* TODO: category - where should it go ? */
|
|
decoder->tags =
|
|
gst_tag_list_merge (decoder->tags, tags, GST_TAG_MERGE_REPLACE);
|
|
gst_tag_list_free (tags);
|
|
if (old)
|
|
gst_tag_list_free (old);
|
|
}
|
|
}
|
|
|
|
/* update properties */
|
|
if (decoder->language)
|
|
g_free (decoder->language);
|
|
decoder->language = g_strdup (decoder->k.ki->language);
|
|
if (decoder->category)
|
|
g_free (decoder->category);
|
|
decoder->category = g_strdup (decoder->k.ki->category);
|
|
decoder->original_canvas_width = decoder->k.ki->original_canvas_width;
|
|
decoder->original_canvas_height = decoder->k.ki->original_canvas_height;
|
|
|
|
/* we can now send away any event we've delayed, as the src pad now has caps */
|
|
gst_kate_util_decoder_base_drain_event_queue (decoder);
|
|
|
|
break;
|
|
|
|
case 0x81: /* Vorbis comments header */
|
|
GST_INFO_OBJECT (element, "Parsed comments header");
|
|
{
|
|
gchar *encoder = NULL;
|
|
GstTagList *old = decoder->tags, *list =
|
|
gst_tag_list_from_vorbiscomment_buffer (buf,
|
|
(const guint8 *) "\201kate\0\0\0\0", 9, &encoder);
|
|
if (list) {
|
|
decoder->tags =
|
|
gst_tag_list_merge (decoder->tags, list, GST_TAG_MERGE_REPLACE);
|
|
gst_tag_list_free (list);
|
|
}
|
|
|
|
if (!decoder->tags) {
|
|
GST_ERROR_OBJECT (element, "failed to decode comment header");
|
|
decoder->tags = gst_tag_list_new ();
|
|
}
|
|
if (encoder) {
|
|
gst_tag_list_add (decoder->tags, GST_TAG_MERGE_REPLACE,
|
|
GST_TAG_ENCODER, encoder, NULL);
|
|
g_free (encoder);
|
|
}
|
|
gst_tag_list_add (decoder->tags, GST_TAG_MERGE_REPLACE,
|
|
GST_TAG_SUBTITLE_CODEC, "Kate", NULL);
|
|
gst_tag_list_add (decoder->tags, GST_TAG_MERGE_REPLACE,
|
|
GST_TAG_ENCODER_VERSION, decoder->k.ki->bitstream_version_major,
|
|
NULL);
|
|
|
|
if (old)
|
|
gst_tag_list_free (old);
|
|
|
|
if (decoder->initialized) {
|
|
gst_element_found_tags_for_pad (element, tagpad, decoder->tags);
|
|
decoder->tags = NULL;
|
|
} else {
|
|
/* Only push them as messages for the time being. *
|
|
* They will be pushed on the pad once the decoder is initialized */
|
|
gst_element_post_message (element,
|
|
gst_message_new_tag (GST_OBJECT (element),
|
|
gst_tag_list_copy (decoder->tags)));
|
|
}
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return rflow;
|
|
}
|
|
|
|
GstStateChangeReturn
|
|
gst_kate_decoder_base_change_state (GstKateDecoderBase * decoder,
|
|
GstElement * element, GstElementClass * parent_class,
|
|
GstStateChange transition)
|
|
{
|
|
GstStateChangeReturn res;
|
|
int ret;
|
|
|
|
switch (transition) {
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
break;
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
GST_DEBUG_OBJECT (element, "READY -> PAUSED, initializing kate state");
|
|
ret = kate_high_decode_init (&decoder->k);
|
|
if (ret < 0) {
|
|
GST_WARNING_OBJECT (element, "failed to initialize kate state: %d",
|
|
ret);
|
|
}
|
|
gst_segment_init (&decoder->kate_segment, GST_FORMAT_UNDEFINED);
|
|
decoder->kate_flushing = FALSE;
|
|
decoder->initialized = TRUE;
|
|
decoder->event_queue = g_queue_new ();
|
|
break;
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
res = parent_class->change_state (element, transition);
|
|
|
|
switch (transition) {
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
break;
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
GST_DEBUG_OBJECT (element, "PAUSED -> READY, clearing kate state");
|
|
if (decoder->initialized) {
|
|
kate_high_decode_clear (&decoder->k);
|
|
decoder->initialized = FALSE;
|
|
}
|
|
gst_segment_init (&decoder->kate_segment, GST_FORMAT_UNDEFINED);
|
|
decoder->kate_flushing = TRUE;
|
|
gst_kate_util_decode_base_reset (decoder);
|
|
break;
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
|
gst_kate_util_decode_base_reset (decoder);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
void
|
|
gst_kate_util_decoder_base_set_flushing (GstKateDecoderBase * decoder,
|
|
gboolean flushing)
|
|
{
|
|
decoder->kate_flushing = flushing;
|
|
gst_segment_init (&decoder->kate_segment, GST_FORMAT_UNDEFINED);
|
|
}
|
|
|
|
void
|
|
gst_kate_util_decoder_base_new_segment_event (GstKateDecoderBase * decoder,
|
|
GstEvent * event)
|
|
{
|
|
gboolean update;
|
|
gdouble rate;
|
|
GstFormat format;
|
|
gint64 start, stop, time;
|
|
gdouble arate;
|
|
|
|
gst_event_parse_new_segment_full (event, &update, &rate, &arate, &format,
|
|
&start, &stop, &time);
|
|
GST_DEBUG_OBJECT (decoder, "kate pad segment:"
|
|
" Update %d, rate %g arate %g format %d start %" GST_TIME_FORMAT
|
|
" %" GST_TIME_FORMAT " position %" GST_TIME_FORMAT,
|
|
update, rate, arate, format, GST_TIME_ARGS (start),
|
|
GST_TIME_ARGS (stop), GST_TIME_ARGS (time));
|
|
if (!update) {
|
|
/* Tiger uses this segment is used to remap the video running time to the
|
|
Kate running time. The sending of segment updates to keep streams in sync
|
|
does kinda rain on our parade though, and since we don't need these,
|
|
we just ignore those here */
|
|
gst_segment_set_newsegment_full (&decoder->kate_segment, update, rate,
|
|
arate, format, start, stop, time);
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
gst_kate_util_decoder_base_update_segment (GstKateDecoderBase * decoder,
|
|
GstElement * element, GstBuffer * buf)
|
|
{
|
|
gint64 clip_start = 0, clip_stop = 0;
|
|
gboolean in_seg;
|
|
|
|
if (decoder->kate_flushing) {
|
|
GST_LOG_OBJECT (element, "Kate pad flushing, buffer ignored");
|
|
return FALSE;
|
|
}
|
|
|
|
if (G_LIKELY (GST_BUFFER_TIMESTAMP_IS_VALID (buf))) {
|
|
GstClockTime stop;
|
|
|
|
if (G_LIKELY (GST_BUFFER_DURATION_IS_VALID (buf)))
|
|
stop = GST_BUFFER_TIMESTAMP (buf) + GST_BUFFER_DURATION (buf);
|
|
else
|
|
stop = GST_CLOCK_TIME_NONE;
|
|
|
|
in_seg = gst_segment_clip (&decoder->kate_segment, GST_FORMAT_TIME,
|
|
GST_BUFFER_TIMESTAMP (buf), stop, &clip_start, &clip_stop);
|
|
} else {
|
|
in_seg = TRUE;
|
|
}
|
|
|
|
if (in_seg) {
|
|
if (GST_BUFFER_TIMESTAMP_IS_VALID (buf)) {
|
|
gst_segment_set_last_stop (&decoder->kate_segment, GST_FORMAT_TIME,
|
|
clip_start);
|
|
}
|
|
} else {
|
|
GST_INFO_OBJECT (element, "Kate buffer not in segment, ignored");
|
|
}
|
|
|
|
return in_seg;
|
|
}
|
|
|
|
static GstClockTime
|
|
gst_kate_util_granule_time (kate_state * k, gint64 granulepos)
|
|
{
|
|
if (G_UNLIKELY (granulepos == -1))
|
|
return -1;
|
|
|
|
return kate_granule_time (k->ki, granulepos) * GST_SECOND;
|
|
}
|
|
|
|
/*
|
|
conversions on the sink:
|
|
- default is granules at num/den rate (subject to the granule shift)
|
|
- default -> time is possible
|
|
- bytes do not mean anything, packets can be any number of bytes, and we
|
|
have no way to know the number of bytes emitted without decoding
|
|
conversions on the source:
|
|
- nothing
|
|
*/
|
|
|
|
gboolean
|
|
gst_kate_decoder_base_convert (GstKateDecoderBase * decoder,
|
|
GstElement * element, GstPad * pad, GstFormat src_fmt, gint64 src_val,
|
|
GstFormat * dest_fmt, gint64 * dest_val)
|
|
{
|
|
gboolean res = FALSE;
|
|
|
|
if (src_fmt == *dest_fmt) {
|
|
*dest_val = src_val;
|
|
return TRUE;
|
|
}
|
|
|
|
if (!decoder->initialized) {
|
|
GST_WARNING_OBJECT (element, "not initialized yet");
|
|
return FALSE;
|
|
}
|
|
|
|
if (src_fmt == GST_FORMAT_BYTES || *dest_fmt == GST_FORMAT_BYTES) {
|
|
GST_WARNING_OBJECT (element, "unsupported format");
|
|
return FALSE;
|
|
}
|
|
|
|
switch (src_fmt) {
|
|
case GST_FORMAT_DEFAULT:
|
|
switch (*dest_fmt) {
|
|
case GST_FORMAT_TIME:
|
|
*dest_val = gst_kate_util_granule_time (&decoder->k, src_val);
|
|
res = TRUE;
|
|
break;
|
|
default:
|
|
res = FALSE;
|
|
break;
|
|
}
|
|
break;
|
|
default:
|
|
res = FALSE;
|
|
break;
|
|
}
|
|
|
|
if (!res) {
|
|
GST_WARNING_OBJECT (element, "unsupported format");
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
gboolean
|
|
gst_kate_decoder_base_sink_query (GstKateDecoderBase * decoder,
|
|
GstElement * element, GstPad * pad, GstQuery * query)
|
|
{
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
case GST_QUERY_CONVERT:
|
|
{
|
|
GstFormat src_fmt, dest_fmt;
|
|
gint64 src_val, dest_val;
|
|
|
|
gst_query_parse_convert (query, &src_fmt, &src_val, &dest_fmt, &dest_val);
|
|
if (!gst_kate_decoder_base_convert (decoder, element, pad, src_fmt,
|
|
src_val, &dest_fmt, &dest_val)) {
|
|
return gst_pad_query_default (pad, query);
|
|
}
|
|
gst_query_set_convert (query, src_fmt, src_val, dest_fmt, dest_val);
|
|
return TRUE;
|
|
}
|
|
default:
|
|
return gst_pad_query_default (pad, query);
|
|
}
|
|
}
|