summaryrefslogtreecommitdiff
path: root/ext/ofa
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-03-19 18:44:51 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-03-19 18:44:51 +0000
commit2cdcdd43e70fee4fb3b4889d012edd81af6ce4a9 (patch)
tree5d649bbbfbf4ca44af6ce6fb00528eba57151b72 /ext/ofa
parent3999646a0d26f7db52bd18325e390a2695614f2a (diff)
downloadgstreamer-plugins-bad-2cdcdd43e70fee4fb3b4889d012edd81af6ce4a9.tar.gz
ext/ofa/gstofa.c: Improve debugging, clean up a bit and really generate the fingerprint after 135 seconds.
Original commit message from CVS: * ext/ofa/gstofa.c: (create_fingerprint), (gst_ofa_event), (gst_ofa_transform_ip), (plugin_init): Improve debugging, clean up a bit and really generate the fingerprint after 135 seconds.
Diffstat (limited to 'ext/ofa')
-rw-r--r--ext/ofa/gstofa.c41
1 files changed, 23 insertions, 18 deletions
diff --git a/ext/ofa/gstofa.c b/ext/ofa/gstofa.c
index 9c07c14c5..df973cfdd 100644
--- a/ext/ofa/gstofa.c
+++ b/ext/ofa/gstofa.c
@@ -49,11 +49,7 @@ enum
};
-#define _do_init(bla) \
- GST_DEBUG_CATEGORY_INIT (gst_ofa_debug, "ofa", 0, "ofa element");
-
-GST_BOILERPLATE_FULL (GstOFA, gst_ofa, GstAudioFilter,
- GST_TYPE_AUDIO_FILTER, _do_init);
+GST_BOILERPLATE (GstOFA, gst_ofa, GstAudioFilter, GST_TYPE_AUDIO_FILTER);
static void gst_ofa_finalize (GObject * object);
static void gst_ofa_get_property (GObject * object, guint prop_id,
@@ -120,19 +116,22 @@ create_fingerprint (GstOFA * ofa)
GstBuffer *buf;
gint rate = GST_AUDIO_FILTER (ofa)->format.rate;
gint channels = GST_AUDIO_FILTER (ofa)->format.channels;
- gint width = GST_AUDIO_FILTER (ofa)->format.width / 8;
gint endianness =
(GST_AUDIO_FILTER (ofa)->format.
bigend) ? OFA_BIG_ENDIAN : OFA_LITTLE_ENDIAN;
GstTagList *tags;
+ GST_DEBUG ("Generating fingerprint");
+
buf =
gst_adapter_take_buffer (ofa->adapter,
gst_adapter_available (ofa->adapter));
ofa->fingerprint = g_strdup (ofa_create_print (GST_BUFFER_DATA (buf),
- endianness,
- GST_BUFFER_SIZE (buf) / width, rate, (channels == 2) ? 1 : 0));
+ endianness, GST_BUFFER_SIZE (buf) / 2, rate,
+ (channels == 2) ? 1 : 0));
+
+ GST_DEBUG ("Generated fingerprint");
gst_buffer_unref (buf);
@@ -152,6 +151,7 @@ gst_ofa_event (GstBaseTransform * trans, GstEvent * event)
switch (GST_EVENT_TYPE (event)) {
case GST_EVENT_FLUSH_STOP:
case GST_EVENT_NEWSEGMENT:
+ GST_DEBUG ("Got %s event, clearing buffer", GST_EVENT_TYPE_NAME (event));
gst_adapter_clear (ofa->adapter);
ofa->record = TRUE;
g_free (ofa->fingerprint);
@@ -190,19 +190,16 @@ gst_ofa_transform_ip (GstBaseTransform * trans, GstBuffer * buf)
GstClockTime duration;
gint rate = GST_AUDIO_FILTER (ofa)->format.rate;
gint channels = GST_AUDIO_FILTER (ofa)->format.channels;
- gint width = GST_AUDIO_FILTER (ofa)->format.width / 8;
- g_return_val_if_fail (rate > 0 && channels > 0
- && width > 0, GST_FLOW_NOT_NEGOTIATED);
+ g_return_val_if_fail (rate > 0 && channels > 0, GST_FLOW_NOT_NEGOTIATED);
+
+ if (!ofa->record)
+ return GST_FLOW_OK;
- if (ofa->record)
- gst_adapter_push (ofa->adapter, gst_buffer_copy (buf));
+ gst_adapter_push (ofa->adapter, gst_buffer_copy (buf));
- nframes =
- gst_util_uint64_scale (gst_adapter_available (ofa->adapter), 1,
- channels * width);
- duration =
- GST_FRAMES_TO_CLOCK_TIME (gst_adapter_available (ofa->adapter), rate);
+ nframes = gst_adapter_available (ofa->adapter) / (channels * 2);
+ duration = GST_FRAMES_TO_CLOCK_TIME (nframes, rate);
if (duration >= 135 * GST_SECOND && ofa->fingerprint == NULL)
create_fingerprint (ofa);
@@ -232,6 +229,14 @@ plugin_init (GstPlugin * plugin)
{
gboolean ret;
+ int major, minor, rev;
+
+ GST_DEBUG_CATEGORY_INIT (gst_ofa_debug, "ofa", 0, "ofa element");
+
+ ofa_get_version (&major, &minor, &rev);
+
+ GST_DEBUG ("libofa %d.%d.%d", major, minor, rev);
+
ret = gst_element_register (plugin, "ofa", GST_RANK_NONE, GST_TYPE_OFA);
if (ret) {