summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-06-09 12:05:00 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-06-09 12:05:00 +0000
commit409526e5e7226fdec40b1a86ebdce2f3045e3dc0 (patch)
tree9672b6c439d1796ec9cdfc219acafa199e25834b
parent1ec82dec7203d670fa7bd7de48cafc52228a4e9d (diff)
downloadgst-plugins-bad-409526e5e7226fdec40b1a86ebdce2f3045e3dc0.tar.gz
gst-plugins-bad-409526e5e7226fdec40b1a86ebdce2f3045e3dc0.tar.bz2
gst-plugins-bad-409526e5e7226fdec40b1a86ebdce2f3045e3dc0.zip
gst/rawparse/gstrawparse.*: Fix seeking, timestamps, duration and some more. Fixes #536309.
Original commit message from CVS: * gst/rawparse/gstrawparse.c: (gst_raw_parse_reset), (gst_raw_parse_push_buffer), (gst_raw_parse_chain), (gst_raw_parse_loop), (gst_raw_parse_sink_activatepull), (gst_raw_parse_convert), (gst_raw_parse_sink_event), (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull), (gst_raw_parse_src_query), (gst_raw_parse_get_fps): * gst/rawparse/gstrawparse.h: Fix seeking, timestamps, duration and some more. Fixes #536309.
-rw-r--r--ChangeLog11
-rw-r--r--gst/rawparse/gstrawparse.c310
-rw-r--r--gst/rawparse/gstrawparse.h8
3 files changed, 222 insertions, 107 deletions
diff --git a/ChangeLog b/ChangeLog
index 679a6614..487e29e7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-06-09 Wim Taymans <wim.taymans@collabora.co.uk>
+
+ * gst/rawparse/gstrawparse.c: (gst_raw_parse_reset),
+ (gst_raw_parse_push_buffer), (gst_raw_parse_chain),
+ (gst_raw_parse_loop), (gst_raw_parse_sink_activatepull),
+ (gst_raw_parse_convert), (gst_raw_parse_sink_event),
+ (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
+ (gst_raw_parse_src_query), (gst_raw_parse_get_fps):
+ * gst/rawparse/gstrawparse.h:
+ Fix seeking, timestamps, duration and some more. Fixes #536309.
+
2008-06-06 Wim Taymans <wim.taymans@collabora.co.uk>
* examples/app/Makefile.am:
diff --git a/gst/rawparse/gstrawparse.c b/gst/rawparse/gstrawparse.c
index cbb43a45..b8d2b3b7 100644
--- a/gst/rawparse/gstrawparse.c
+++ b/gst/rawparse/gstrawparse.c
@@ -27,6 +27,8 @@
# include "config.h"
#endif
+#include <string.h>
+
#include <gst/gst.h>
#include <gst/base/gstbasetransform.h>
#include <gst/base/gstadapter.h>
@@ -49,6 +51,8 @@ static gboolean gst_raw_parse_src_query (GstPad * pad, GstQuery * query);
static gboolean gst_raw_parse_convert (GstRawParse * rp,
GstFormat src_format, gint64 src_value,
GstFormat dest_format, gint64 * dest_value);
+static gboolean gst_raw_parse_handle_seek_pull (GstRawParse * rp,
+ GstEvent * event);
static void gst_raw_parse_reset (GstRawParse * rp);
@@ -176,13 +180,9 @@ static void
gst_raw_parse_reset (GstRawParse * rp)
{
rp->n_frames = 0;
- rp->offset = 0;
rp->discont = TRUE;
- rp->upstream_length = 0;
-
gst_segment_init (&rp->segment, GST_FORMAT_TIME);
- rp->need_newsegment = TRUE;
gst_adapter_clear (rp->adapter);
}
@@ -216,20 +216,21 @@ gst_raw_parse_push_buffer (GstRawParse * rp, GstBuffer * buffer)
nframes = GST_BUFFER_SIZE (buffer) / rp->framesize;
+ GST_BUFFER_OFFSET (buffer) = rp->n_frames;
+ GST_BUFFER_OFFSET_END (buffer) = rp->n_frames + nframes;
+
if (rp->fps_n) {
- GST_BUFFER_TIMESTAMP (buffer) = rp->segment.start +
+ GST_BUFFER_TIMESTAMP (buffer) =
gst_util_uint64_scale (rp->n_frames, GST_SECOND * rp->fps_d, rp->fps_n);
GST_BUFFER_DURATION (buffer) =
- gst_util_uint64_scale (nframes * GST_SECOND, rp->fps_d, rp->fps_n);
- GST_BUFFER_OFFSET (buffer) = rp->offset / rp->framesize;
- GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET (buffer) + nframes;
+ gst_util_uint64_scale ((rp->n_frames + nframes) * GST_SECOND, rp->fps_d,
+ rp->fps_n) - GST_BUFFER_TIMESTAMP (buffer);
} else {
GST_BUFFER_TIMESTAMP (buffer) = rp->segment.start;
GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
- GST_BUFFER_OFFSET (buffer) = rp->offset / rp->framesize;
- GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET (buffer) + nframes;
}
gst_buffer_set_caps (buffer, GST_PAD_CAPS (rp->srcpad));
+
if (rp->discont) {
GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
rp->discont = FALSE;
@@ -258,11 +259,12 @@ gst_raw_parse_chain (GstPad * pad, GstBuffer * buffer)
if (G_UNLIKELY (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))) {
GST_DEBUG_OBJECT (rp, "received DISCONT buffer");
-
+ gst_adapter_clear (rp->adapter);
rp->discont = TRUE;
}
- g_return_val_if_fail (gst_raw_parse_set_src_caps (rp), GST_FLOW_ERROR);
+ if (!gst_raw_parse_set_src_caps (rp))
+ goto no_caps;
gst_adapter_push (rp->adapter, buffer);
@@ -277,13 +279,21 @@ gst_raw_parse_chain (GstPad * pad, GstBuffer * buffer)
buffer = gst_adapter_take_buffer (rp->adapter, buffersize);
ret = gst_raw_parse_push_buffer (rp, buffer);
-
if (ret != GST_FLOW_OK)
break;
}
-
+done:
gst_object_unref (rp);
+
return ret;
+
+ /* ERRORS */
+no_caps:
+ {
+ GST_ERROR_OBJECT (rp, "could not set caps");
+ ret = GST_FLOW_NOT_NEGOTIATED;
+ goto done;
+ }
}
static void
@@ -295,9 +305,18 @@ gst_raw_parse_loop (GstElement * element)
GstBuffer *buffer;
gint size;
- if (!gst_raw_parse_set_src_caps (rp)) {
- ret = GST_FLOW_ERROR;
- goto pause;
+ if (!gst_raw_parse_set_src_caps (rp))
+ goto no_caps;
+
+ if (rp->close_segment) {
+ GST_DEBUG_OBJECT (rp, "sending close segment");
+ gst_pad_push_event (rp->srcpad, rp->close_segment);
+ rp->close_segment = NULL;
+ }
+ if (rp->start_segment) {
+ GST_DEBUG_OBJECT (rp, "sending start segment");
+ gst_pad_push_event (rp->srcpad, rp->start_segment);
+ rp->start_segment = NULL;
}
if (rp_class->multiple_frames_per_buffer && rp->framesize < 4096)
@@ -323,7 +342,7 @@ gst_raw_parse_loop (GstElement * element)
ret = gst_pad_pull_range (rp->sinkpad, rp->offset, size, &buffer);
- if (GST_FLOW_IS_FATAL (ret)) {
+ if (ret != GST_FLOW_OK) {
GST_DEBUG_OBJECT (rp, "pull_range (%" G_GINT64_FORMAT ", %u) "
"failed, flow: %s", rp->offset, size, gst_flow_get_name (ret));
buffer = NULL;
@@ -345,23 +364,19 @@ gst_raw_parse_loop (GstElement * element)
}
}
- if (rp->need_newsegment) {
- GST_DEBUG_OBJECT (rp, "sending newsegment from %" GST_TIME_FORMAT
- " to %" GST_TIME_FORMAT, GST_TIME_ARGS (rp->segment.start),
- GST_TIME_ARGS (rp->segment.stop));
-
- if (gst_pad_push_event (rp->srcpad, gst_event_new_new_segment (FALSE,
- rp->segment.rate, GST_FORMAT_TIME, rp->segment.start,
- rp->segment.stop, rp->segment.last_stop)));
- rp->need_newsegment = FALSE;
- }
-
ret = gst_raw_parse_push_buffer (rp, buffer);
- if (GST_FLOW_IS_FATAL (ret))
+ if (ret != GST_FLOW_OK)
goto pause;
return;
+ /* ERRORS */
+no_caps:
+ {
+ GST_ERROR_OBJECT (rp, "could not negotiate caps");
+ ret = GST_FLOW_NOT_NEGOTIATED;
+ goto pause;
+ }
pause:
{
const gchar *reason = gst_flow_get_name (ret);
@@ -370,7 +385,7 @@ pause:
gst_pad_pause_task (rp->sinkpad);
if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
- if (ret == GST_FLOW_UNEXPECTED && rp->srcpad) {
+ if (ret == GST_FLOW_UNEXPECTED) {
if (rp->segment.flags & GST_SEEK_FLAG_SEGMENT) {
GstClockTime stop;
@@ -390,8 +405,7 @@ pause:
GST_ELEMENT_ERROR (rp, STREAM, FAILED,
("Internal data stream error."),
("stream stopped, reason %s", reason));
- if (rp->srcpad)
- gst_pad_push_event (rp->srcpad, gst_event_new_eos ());
+ gst_pad_push_event (rp->srcpad, gst_event_new_eos ());
}
}
return;
@@ -413,15 +427,35 @@ gst_raw_parse_sink_activate (GstPad * sinkpad)
static gboolean
gst_raw_parse_sink_activatepull (GstPad * sinkpad, gboolean active)
{
+ GstRawParse *rp = GST_RAW_PARSE (gst_pad_get_parent (sinkpad));
gboolean result;
if (active) {
- result = gst_pad_start_task (sinkpad,
- (GstTaskFunction) gst_raw_parse_loop, GST_PAD_PARENT (sinkpad));
+ GstFormat format;
+ gint64 duration;
+
+ /* get the duration in bytes */
+ format = GST_FORMAT_BYTES;
+ result = gst_pad_query_peer_duration (sinkpad, &format, &duration);
+ if (result) {
+ GST_DEBUG_OBJECT (rp, "got duration %" GST_TIME_FORMAT,
+ GST_TIME_ARGS (duration));
+ rp->upstream_length = duration;
+ /* convert to time */
+ gst_raw_parse_convert (rp, format, duration, GST_FORMAT_TIME, &duration);
+ } else {
+ rp->upstream_length = -1;
+ duration = -1;
+ }
+ gst_segment_set_duration (&rp->segment, GST_FORMAT_TIME, duration);
+
+ result = gst_raw_parse_handle_seek_pull (rp, NULL);
} else {
result = gst_pad_stop_task (sinkpad);
}
+ gst_object_unref (rp);
+
return result;
}
@@ -460,9 +494,9 @@ gst_raw_parse_convert (GstRawParse * rp,
{
gboolean ret = FALSE;
- GST_DEBUG ("converting value %" G_GINT64_FORMAT " from %s to %s",
- src_value, gst_format_get_name (src_format),
- gst_format_get_name (dest_format));
+ GST_DEBUG ("converting value %" G_GINT64_FORMAT " from %s (%d) to %s (%d)",
+ src_value, gst_format_get_name (src_format), src_format,
+ gst_format_get_name (dest_format), dest_format);
if (src_format == dest_format) {
*dest_value = src_value;
@@ -580,9 +614,9 @@ gst_raw_parse_sink_event (GstPad * pad, GstEvent * event)
&start, &stop, &time);
if (format == GST_FORMAT_TIME) {
- ret = gst_pad_push_event (rp->srcpad, event);
gst_segment_set_newsegment_full (&rp->segment, update, rate, arate,
GST_FORMAT_TIME, start, stop, time);
+ ret = gst_pad_push_event (rp->srcpad, event);
} else {
gst_event_unref (event);
@@ -599,18 +633,13 @@ gst_raw_parse_sink_event (GstPad * pad, GstEvent * event)
gst_segment_set_newsegment_full (&rp->segment, update, rate, arate,
GST_FORMAT_TIME, start, stop, time);
- event = gst_event_new_new_segment (FALSE, rp->segment.rate,
+
+ /* create new segment with the fields converted to time */
+ event = gst_event_new_new_segment_full (update, rate, arate,
GST_FORMAT_TIME, start, stop, time);
ret = gst_pad_push_event (rp->srcpad, event);
}
-
- if (ret) {
- rp->n_frames = 0;
- rp->offset = 0;
- rp->discont = TRUE;
- gst_adapter_clear (rp->adapter);
- }
break;
}
default:
@@ -642,9 +671,6 @@ gst_raw_parse_handle_seek_push (GstRawParse * rp, GstEvent * event)
if (ret)
return ret;
-
- gst_event_unref (event);
-
/* Otherwise convert to bytes and push upstream */
if (format == GST_FORMAT_TIME || format == GST_FORMAT_DEFAULT) {
ret = gst_raw_parse_convert (rp, format, start, GST_FORMAT_BYTES, &start);
@@ -674,73 +700,106 @@ gst_raw_parse_handle_seek_push (GstRawParse * rp, GstEvent * event)
static gboolean
gst_raw_parse_handle_seek_pull (GstRawParse * rp, GstEvent * event)
{
- GstFormat format;
gdouble rate;
+ GstFormat format;
GstSeekFlags flags;
GstSeekType start_type, stop_type;
gint64 start, stop;
- gint64 start_byte, stop_byte;
gint64 last_stop;
gboolean ret = FALSE;
gboolean flush;
- GstFormat fmt = GST_FORMAT_BYTES;
- GstSegment segment;
+ GstSegment seeksegment;
- gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
- &stop_type, &stop);
+ if (event) {
+ gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
+ &stop_type, &stop);
- gst_event_unref (event);
+ /* can't seek backwards yet */
+ if (rate <= 0.0)
+ goto wrong_rate;
- if (format != GST_FORMAT_TIME && format != GST_FORMAT_DEFAULT) {
- GST_DEBUG ("seeking is only supported in TIME or DEFAULT format");
- return FALSE;
- }
+ /* convert input offsets to time */
+ ret = gst_raw_parse_convert (rp, format, start, GST_FORMAT_TIME, &start);
+ ret &= gst_raw_parse_convert (rp, format, stop, GST_FORMAT_TIME, &stop);
+ if (!ret)
+ goto convert_failed;
- GST_OBJECT_LOCK (rp);
+ GST_DEBUG_OBJECT (rp, "converted start - stop to time");
+ format = GST_FORMAT_TIME;
- if (stop == -1 && !gst_pad_query_peer_duration (rp->sinkpad, &fmt, &stop))
- stop = -1;
+ gst_event_unref (event);
+ } else {
+ format = GST_FORMAT_TIME;
+ flags = 0;
+ }
- ret =
- gst_raw_parse_convert (rp, format, start, GST_FORMAT_BYTES, &start_byte);
- ret &= gst_raw_parse_convert (rp, format, stop, GST_FORMAT_BYTES, &stop_byte);
+ flush = ((flags & GST_SEEK_FLAG_FLUSH) != 0);
- if (ret) {
- /* Seek on a frame boundary */
- start_byte -= start_byte % rp->framesize;
- if (stop_byte != -1)
- stop_byte += rp->framesize - stop_byte % rp->framesize;
+ /* start flushing up and downstream so that the loop function pauses and we
+ * can acquire the STREAM_LOCK. */
+ if (flush) {
+ GST_LOG_OBJECT (rp, "flushing");
+ gst_pad_push_event (rp->sinkpad, gst_event_new_flush_start ());
+ gst_pad_push_event (rp->srcpad, gst_event_new_flush_start ());
+ } else {
+ GST_LOG_OBJECT (rp, "pause task");
+ gst_pad_pause_task (rp->sinkpad);
+ }
- flush = ((flags & GST_SEEK_FLAG_FLUSH) != 0);
+ GST_PAD_STREAM_LOCK (rp->sinkpad);
- segment = rp->segment;
+ memcpy (&seeksegment, &rp->segment, sizeof (GstSegment));
- gst_segment_set_seek (&segment, rate, GST_FORMAT_TIME, flags, start_type,
- start, stop_type, stop, NULL);
+ if (event) {
+ /* configure the seek values */
+ gst_segment_set_seek (&seeksegment, rate, format, flags,
+ start_type, start, stop_type, stop, NULL);
+ }
- gst_pad_push_event (rp->sinkpad, gst_event_new_flush_start ());
- if (flush)
- gst_pad_push_event (rp->srcpad, gst_event_new_flush_start ());
- else
- gst_pad_pause_task (rp->sinkpad);
+ /* get the desired position */
+ last_stop = seeksegment.last_stop;
- GST_PAD_STREAM_LOCK (rp->sinkpad);
+ GST_LOG_OBJECT (rp, "seeking to %" GST_TIME_FORMAT,
+ GST_TIME_ARGS (last_stop));
- last_stop = rp->segment.last_stop;
+ /* convert the desired position to bytes */
+ ret =
+ gst_raw_parse_convert (rp, format, last_stop, GST_FORMAT_BYTES,
+ &last_stop);
+ /* prepare for streaming */
+ if (flush) {
+ GST_LOG_OBJECT (rp, "stop flush");
gst_pad_push_event (rp->sinkpad, gst_event_new_flush_stop ());
- if (flush)
- gst_pad_push_event (rp->srcpad, gst_event_new_flush_stop ());
+ gst_pad_push_event (rp->srcpad, gst_event_new_flush_stop ());
+ } else if (ret && rp->running) {
+ /* we are running the current segment and doing a non-flushing seek,
+ * close the segment first based on the last_stop. */
+ GST_DEBUG_OBJECT (rp, "prepare close segment %" G_GINT64_FORMAT
+ " to %" G_GINT64_FORMAT, rp->segment.start, rp->segment.last_stop);
+
+ /* queue the segment for sending in the stream thread */
+ if (rp->close_segment)
+ gst_event_unref (rp->close_segment);
+ rp->close_segment =
+ gst_event_new_new_segment_full (TRUE,
+ rp->segment.rate, rp->segment.applied_rate, rp->segment.format,
+ rp->segment.start, rp->segment.last_stop, rp->segment.time);
+ }
+
+ if (ret) {
+ /* seek done */
+
+ /* Seek on a frame boundary */
+ last_stop -= last_stop % rp->framesize;
- GST_DEBUG_OBJECT (rp, "Performing seek to %" GST_TIME_FORMAT ", byte %"
- G_GINT64_FORMAT, GST_TIME_ARGS (segment.start), start_byte);
+ rp->offset = last_stop;
+ rp->n_frames = last_stop / rp->framesize;
- rp->offset = start_byte;
- rp->segment = segment;
- rp->segment.last_stop = start;
- rp->need_newsegment = TRUE;
- rp->discont = (last_stop != start) ? TRUE : FALSE;
+ GST_LOG_OBJECT (rp, "seeking to bytes %" G_GINT64_FORMAT, last_stop);
+
+ memcpy (&rp->segment, &seeksegment, sizeof (GstSegment));
if (rp->segment.flags & GST_SEEK_FLAG_SEGMENT) {
gst_element_post_message (GST_ELEMENT_CAST (rp),
@@ -748,16 +807,54 @@ gst_raw_parse_handle_seek_pull (GstRawParse * rp, GstEvent * event)
rp->segment.format, rp->segment.last_stop));
}
- GST_PAD_STREAM_UNLOCK (rp->sinkpad);
- } else {
- GST_DEBUG_OBJECT (rp, "Seek failed: couldn't convert to byte positions");
+ /* for deriving a stop position for the playback segment from the seek
+ * segment, we must take the duration when the stop is not set */
+ if ((stop = rp->segment.stop) == -1)
+ stop = rp->segment.duration;
+
+ GST_DEBUG_OBJECT (rp, "preparing newsegment from %" G_GINT64_FORMAT
+ " to %" G_GINT64_FORMAT, rp->segment.start, stop);
+
+ /* now replace the old segment so that we send it in the stream thread the
+ * next time it is scheduled. */
+ if (rp->start_segment)
+ gst_event_unref (rp->start_segment);
+
+ if (rp->segment.rate >= 0.0) {
+ /* forward, we send data from last_stop to stop */
+ rp->start_segment =
+ gst_event_new_new_segment_full (FALSE,
+ rp->segment.rate, rp->segment.applied_rate, rp->segment.format,
+ rp->segment.last_stop, stop, rp->segment.time);
+ } else {
+ /* reverse, we send data from last_stop to start */
+ rp->start_segment =
+ gst_event_new_new_segment_full (FALSE,
+ rp->segment.rate, rp->segment.applied_rate, rp->segment.format,
+ rp->segment.start, rp->segment.last_stop, rp->segment.time);
+ }
}
+ rp->discont = TRUE;
- GST_OBJECT_UNLOCK (rp);
-
+ GST_LOG_OBJECT (rp, "start streaming");
+ rp->running = TRUE;
gst_pad_start_task (rp->sinkpad, (GstTaskFunction) gst_raw_parse_loop, rp);
+ GST_PAD_STREAM_UNLOCK (rp->sinkpad);
+
return ret;
+
+ /* ERRORS */
+wrong_rate:
+ {
+ GST_DEBUG_OBJECT (rp, "Seek failed: negative rates not supported yet");
+ return FALSE;
+ }
+convert_failed:
+ {
+ GST_DEBUG_OBJECT (rp, "Seek failed: couldn't convert to byte positions");
+ return FALSE;
+ }
}
static gboolean
@@ -827,7 +924,7 @@ gst_raw_parse_src_query (GstPad * pad, GstQuery * query)
GstQuery *bquery;
GST_LOG ("query duration");
- ret = gst_pad_peer_query (rp->srcpad, query);
+ ret = gst_pad_peer_query (rp->sinkpad, query);
if (ret)
goto done;
@@ -837,8 +934,7 @@ gst_raw_parse_src_query (GstPad * pad, GstQuery * query)
goto error;
bquery = gst_query_new_duration (GST_FORMAT_BYTES);
- ret = gst_pad_peer_query (rp->srcpad, bquery);
-
+ ret = gst_pad_peer_query (rp->sinkpad, bquery);
if (!ret) {
gst_query_unref (bquery);
goto error;
@@ -878,9 +974,13 @@ gst_raw_parse_src_query (GstPad * pad, GstQuery * query)
done:
gst_object_unref (rp);
return ret;
+
+ /* ERRORS */
error:
- GST_DEBUG_OBJECT (rp, "query failed");
- goto done;
+ {
+ GST_DEBUG_OBJECT (rp, "query failed");
+ goto done;
+ }
}
void
@@ -907,8 +1007,10 @@ gst_raw_parse_get_fps (GstRawParse * rp, int *fps_n, int *fps_d)
{
g_return_if_fail (GST_IS_RAW_PARSE (rp));
- *fps_n = rp->fps_n;
- *fps_d = rp->fps_d;
+ if (fps_n)
+ *fps_n = rp->fps_n;
+ if (fps_d)
+ *fps_d = rp->fps_d;
}
gboolean
diff --git a/gst/rawparse/gstrawparse.h b/gst/rawparse/gstrawparse.h
index ce63a1a1..aa8cd153 100644
--- a/gst/rawparse/gstrawparse.h
+++ b/gst/rawparse/gstrawparse.h
@@ -61,14 +61,16 @@ struct _GstRawParse
gboolean discont;
guint64 n_frames;
+
+ gint64 upstream_length;
gint64 offset;
GstSegment segment;
-
- gint64 upstream_length;
+ gboolean running;
+ GstEvent *close_segment;
+ GstEvent *start_segment;
gboolean negotiated;
- gboolean need_newsegment;
};
struct _GstRawParseClass