[gst-cvs] gst-plugins-bad: flacparse: minor refactor and enable default baseparse segment clipping
Mark Nauwelaerts
mnauw at kemper.freedesktop.org
Wed Nov 17 06:47:02 PST 2010
Module: gst-plugins-bad
Branch: master
Commit: 551f9707fa0bf942721f15ec9f038f88c3748866
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=551f9707fa0bf942721f15ec9f038f88c3748866
Author: Mark Nauwelaerts <mark.nauwelaerts at collabora.co.uk>
Date: Tue Nov 16 12:08:54 2010 +0100
flacparse: minor refactor and enable default baseparse segment clipping
---
gst/audioparsers/gstflacparse.c | 18 +++++++-----------
1 files changed, 7 insertions(+), 11 deletions(-)
diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c
index d4e81f0..5496077 100644
--- a/gst/audioparsers/gstflacparse.c
+++ b/gst/audioparsers/gstflacparse.c
@@ -1174,10 +1174,10 @@ gst_flac_parse_parse_frame (GstBaseParse * parse, GstBuffer * buffer)
GST_BUFFER_OFFSET (buffer) = 0;
GST_BUFFER_OFFSET_END (buffer) = 0;
- if (is_last) {
- flacparse->headers =
- g_list_append (flacparse->headers, gst_buffer_ref (buffer));
+ flacparse->headers =
+ g_list_append (flacparse->headers, gst_buffer_ref (buffer));
+ if (is_last) {
if (!gst_flac_parse_handle_headers (flacparse))
return GST_FLOW_ERROR;
@@ -1185,14 +1185,10 @@ gst_flac_parse_parse_frame (GstBaseParse * parse, GstBuffer * buffer)
gst_base_parse_set_min_frame_size (GST_BASE_PARSE (flacparse), MAX (9,
flacparse->min_framesize));
flacparse->state = GST_FLAC_PARSE_STATE_DATA;
-
- /* DROPPED because we pushed all headers manually already */
- return GST_BASE_PARSE_FLOW_DROPPED;
- } else {
- flacparse->headers =
- g_list_append (flacparse->headers, gst_buffer_ref (buffer));
- return GST_BASE_PARSE_FLOW_DROPPED;
}
+
+ /* DROPPED because we pushed already or will push all headers manually */
+ return GST_BASE_PARSE_FLOW_DROPPED;
} else {
if (flacparse->offset != GST_BUFFER_OFFSET (buffer)) {
FrameHeaderCheckReturn ret;
@@ -1290,5 +1286,5 @@ gst_flac_parse_pre_push_buffer (GstBaseParse * parse, GstBuffer * buf)
flacparse->tags = NULL;
}
- return GST_FLOW_OK;
+ return GST_BASE_PARSE_FLOW_CLIP;
}
More information about the Gstreamer-commits
mailing list