From 61dbbd46cc02f240bd7474c8e867ff67cfa8b4d4 Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Tue, 20 May 2008 09:04:48 +0000 Subject: ext/spc/: Add support for some essential features like seeking, reading song duration and extended tags. Fixes bug #4... Original commit message from CVS: Patch by: Brian Koropoff * ext/spc/Makefile.am: * ext/spc/gstspc.c: (gst_spc_dec_class_init), (gst_spc_dec_src_query_type), (gst_spc_dec_init), (gst_spc_dec_dispose), (gst_spc_dec_sink_event), (gst_spc_duration), (gst_spc_fadeout), (gst_spc_dec_src_event), (gst_spc_dec_src_query), (spc_play), (spc_setup): * ext/spc/gstspc.h: * ext/spc/tag.c: (spc_tag_is_extended), (spc_tag_is_text_format), (spc_tag_is_present), (spc_tag_unpack_date), (spc_tag_clear), (spc_tag_get_info), (spc_tag_free): * ext/spc/tag.h: Add support for some essential features like seeking, reading song duration and extended tags. Fixes bug #454151. --- ext/spc/gstspc.c | 313 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 279 insertions(+), 34 deletions(-) (limited to 'ext/spc/gstspc.c') diff --git a/ext/spc/gstspc.c b/ext/spc/gstspc.c index 8c24c650..3eee98f0 100644 --- a/ext/spc/gstspc.c +++ b/ext/spc/gstspc.c @@ -1,5 +1,6 @@ /* Copyright (C) 2004-2005 Michael Pyne * Copyright (C) 2004-2006 Chris Lee + * Copyright (C) 2007 Brian Koropoff * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -24,12 +25,14 @@ #include "gstspc.h" #include +#include +#include static const GstElementDetails gst_spc_dec_details = GST_ELEMENT_DETAILS ("OpenSPC SPC decoder", "Codec/Audio/Decoder", "Uses OpenSPC to emulate an SPC processor", - "Chris Lee "); + "Chris Lee , Brian Koropoff "); static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, @@ -52,6 +55,7 @@ static gboolean gst_spc_dec_src_query (GstPad * pad, GstQuery * query); static GstStateChangeReturn gst_spc_dec_change_state (GstElement * element, GstStateChange transition); static void spc_play (GstPad * pad); +static void gst_spc_dec_dispose (GObject * object); static gboolean spc_setup (GstSpcDec * spc); static gboolean @@ -117,15 +121,30 @@ static void gst_spc_dec_class_init (GstSpcDecClass * klass) { GstElementClass *element_class = (GstElementClass *) klass; + GObjectClass *gobject_class = (GObjectClass *) klass; element_class->change_state = GST_DEBUG_FUNCPTR (gst_spc_dec_change_state); + gobject_class->dispose = gst_spc_dec_dispose; } +static const GstQueryType * +gst_spc_dec_src_query_type (GstPad * pad) +{ + static const GstQueryType query_types[] = { + GST_QUERY_DURATION, + GST_QUERY_POSITION, + (GstQueryType) 0 + }; + + return query_types; +} + + static void gst_spc_dec_init (GstSpcDec * spc, GstSpcDecClass * klass) { spc->sinkpad = gst_pad_new_from_static_template (&sink_factory, "sink"); - gst_pad_set_query_function (spc->sinkpad, NULL); + /* gst_pad_set_query_function (spc->sinkpad, NULL); */ gst_pad_set_event_function (spc->sinkpad, gst_spc_dec_sink_event); gst_pad_set_chain_function (spc->sinkpad, gst_spc_dec_chain); gst_element_add_pad (GST_ELEMENT (spc), spc->sinkpad); @@ -133,11 +152,26 @@ gst_spc_dec_init (GstSpcDec * spc, GstSpcDecClass * klass) spc->srcpad = gst_pad_new_from_static_template (&src_factory, "src"); gst_pad_set_event_function (spc->srcpad, gst_spc_dec_src_event); gst_pad_set_query_function (spc->srcpad, gst_spc_dec_src_query); + gst_pad_set_query_type_function (spc->srcpad, gst_spc_dec_src_query_type); gst_pad_use_fixed_caps (spc->srcpad); gst_element_add_pad (GST_ELEMENT (spc), spc->srcpad); spc->buf = NULL; spc->initialized = FALSE; + spc_tag_clear (&spc->tag_info); +} + +static void +gst_spc_dec_dispose (GObject * object) +{ + GstSpcDec *spc = GST_SPC_DEC (object); + + if (spc->buf) { + gst_buffer_unref (spc->buf); + spc->buf = NULL; + } + + spc_tag_free (&spc->tag_info); } static GstFlowReturn @@ -160,7 +194,7 @@ static gboolean gst_spc_dec_sink_event (GstPad * pad, GstEvent * event) { GstSpcDec *spc = GST_SPC_DEC (gst_pad_get_parent (pad)); - gboolean result; + gboolean result = TRUE; switch (GST_EVENT_TYPE (event)) { case GST_EVENT_EOS: @@ -180,6 +214,38 @@ gst_spc_dec_sink_event (GstPad * pad, GstEvent * event) return result; } +static gint64 +gst_spc_duration (GstSpcDec * spc) +{ + gint64 total_ticks = + spc->tag_info.time_intro + + spc->tag_info.time_loop * spc->tag_info.loop_count + + spc->tag_info.time_end; + if (total_ticks) { + return (gint64) gst_util_uint64_scale (total_ticks, GST_SECOND, 64000); + } else if (spc->tag_info.time_seconds) { + gint64 time = (gint64) spc->tag_info.time_seconds * GST_SECOND; + + return time; + } else { + return (gint64) (3 * 60) * GST_SECOND; + } +} + +static gint64 +gst_spc_fadeout (GstSpcDec * spc) +{ + if (spc->tag_info.time_fade) { + return (gint64) gst_util_uint64_scale ((guint64) spc->tag_info.time_fade, + GST_SECOND, 64000); + } else if (spc->tag_info.time_fade_milliseconds) { + return (gint64) (spc->tag_info.time_fade_milliseconds * GST_MSECOND); + } else { + return 10 * GST_SECOND; + } +} + + static gboolean gst_spc_dec_src_event (GstPad * pad, GstEvent * event) { @@ -187,6 +253,79 @@ gst_spc_dec_src_event (GstPad * pad, GstEvent * event) gboolean result = FALSE; switch (GST_EVENT_TYPE (event)) { + case GST_EVENT_SEEK: + { + gdouble rate; + GstFormat format; + GstSeekFlags flags; + GstSeekType start_type, stop_type; + gint64 start, stop; + gboolean flush; + + gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start, + &stop_type, &stop); + + if (format != GST_FORMAT_TIME) { + GST_DEBUG_OBJECT (spc, "seeking is only supported in TIME format"); + break; + } + + if (start_type != GST_SEEK_TYPE_SET || stop_type != GST_SEEK_TYPE_NONE) { + GST_DEBUG_OBJECT (spc, "unsupported seek type"); + break; + } + + if (stop_type == GST_SEEK_TYPE_NONE) + stop = GST_CLOCK_TIME_NONE; + + if (start_type == GST_SEEK_TYPE_SET) { + guint64 cur = + gst_util_uint64_scale (spc->byte_pos, GST_SECOND, 32000 * 2 * 2); + guint64 dest = (guint64) start; + + dest = CLAMP (dest, 0, gst_spc_duration (spc) + gst_spc_fadeout (spc)); + + if (dest == cur) + break; + + flush = (flags & GST_SEEK_FLAG_FLUSH) == GST_SEEK_FLAG_FLUSH; + + if (flush) { + gst_pad_push_event (spc->srcpad, gst_event_new_flush_start ()); + } else { + gst_pad_stop_task (spc->srcpad); + } + + GST_PAD_STREAM_LOCK (spc->srcpad); + + if (flags & GST_SEEK_FLAG_SEGMENT) { + gst_element_post_message (GST_ELEMENT (spc), + gst_message_new_segment_start (GST_OBJECT (spc), format, cur)); + } + + if (flush) { + gst_pad_push_event (spc->srcpad, gst_event_new_flush_stop ()); + } + + if (stop == GST_CLOCK_TIME_NONE) + stop = (guint64) (gst_spc_duration (spc) + gst_spc_fadeout (spc)); + + gst_pad_push_event (spc->srcpad, gst_event_new_new_segment (FALSE, rate, + GST_FORMAT_TIME, dest, stop, dest)); + + /* spc->byte_pos += OSPC_Run(-1, NULL, (unsigned int) (gst_util_uint64_scale(dest - cur, 32000*2*2, GST_SECOND))); */ + spc->seekpoint = + gst_util_uint64_scale (dest, 32000 * 2 * 2, GST_SECOND); + spc->seeking = TRUE; + + gst_pad_start_task (spc->srcpad, (GstTaskFunction) spc_play, + spc->srcpad); + + GST_PAD_STREAM_UNLOCK (spc->srcpad); + result = TRUE; + } + break; + } default: break; } @@ -204,6 +343,33 @@ gst_spc_dec_src_query (GstPad * pad, GstQuery * query) gboolean result = TRUE; switch (GST_QUERY_TYPE (query)) { + case GST_QUERY_DURATION: + { + GstFormat format; + + gst_query_parse_duration (query, &format, NULL); + if (!spc->initialized || format != GST_FORMAT_TIME) { + result = FALSE; + break; + } + gst_query_set_duration (query, GST_FORMAT_TIME, + gst_spc_duration (spc) + gst_spc_fadeout (spc)); + break; + } + case GST_QUERY_POSITION: + { + GstFormat format; + + gst_query_parse_position (query, &format, NULL); + if (!spc->initialized || format != GST_FORMAT_TIME) { + result = FALSE; + break; + } + gst_query_set_position (query, GST_FORMAT_TIME, + (gint64) gst_util_uint64_scale (spc->byte_pos, GST_SECOND, + 32000 * 2 * 2)); + break; + } default: result = gst_pad_query_default (pad, query); break; @@ -220,11 +386,48 @@ spc_play (GstPad * pad) GstSpcDec *spc = GST_SPC_DEC (gst_pad_get_parent (pad)); GstFlowReturn flow_return; GstBuffer *out; + gboolean seeking = spc->seeking; + gint64 duration, fade, end, position; + + if (!seeking) { + out = gst_buffer_new_and_alloc (1600 * 4); + gst_buffer_set_caps (out, GST_PAD_CAPS (pad)); + GST_BUFFER_TIMESTAMP (out) = + (gint64) gst_util_uint64_scale ((guint64) spc->byte_pos, GST_SECOND, + 32000 * 2 * 2); + spc->byte_pos += OSPC_Run (-1, (short *) GST_BUFFER_DATA (out), 1600 * 4); + } else { + if (spc->seekpoint < spc->byte_pos) { + OSPC_Init (GST_BUFFER_DATA (spc->buf), GST_BUFFER_SIZE (spc->buf)); + spc->byte_pos = 0; + } + spc->byte_pos += OSPC_Run (-1, NULL, 1600 * 4); + if (spc->byte_pos >= spc->seekpoint) { + spc->seeking = FALSE; + } + out = gst_buffer_new (); + gst_buffer_set_caps (out, GST_PAD_CAPS (pad)); + } + + duration = gst_spc_duration (spc); + fade = gst_spc_fadeout (spc); + end = duration + fade; + position = + (gint64) gst_util_uint64_scale ((guint64) spc->byte_pos, GST_SECOND, + 32000 * 2 * 2); + + if (position >= duration) { + gint16 *data = (gint16 *) GST_BUFFER_DATA (out); + guint32 size = GST_BUFFER_SIZE (out) / sizeof (gint16); + unsigned int i; - out = gst_buffer_new_and_alloc (1600 * 4); - gst_buffer_set_caps (out, GST_PAD_CAPS (pad)); + gint64 num = (fade - (position - duration)); - OSPC_Run (-1, (short *) GST_BUFFER_DATA (out), 1600 * 4); + for (i = 0; i < size; i++) { + /* Apply a parabolic volume envelope */ + data[i] = (gint16) (data[i] * num / fade * num / fade); + } + } if ((flow_return = gst_pad_push (spc->srcpad, out)) != GST_FLOW_OK) { GST_DEBUG_OBJECT (spc, "pausing task, reason %s", @@ -237,6 +440,11 @@ spc_play (GstPad * pad) } } + if (position >= end) { + gst_pad_pause_task (pad); + gst_pad_push_event (pad, gst_event_new_eos ()); + } + gst_object_unref (spc); return; @@ -246,38 +454,69 @@ static gboolean spc_setup (GstSpcDec * spc) { guchar *data = GST_BUFFER_DATA (spc->buf); - gboolean text_format = FALSE; if (!spc_negotiate (spc)) { return FALSE; } - if (data[0x23] == 26) { - GstEvent *tagevent; - GstTagList *taglist = gst_tag_list_new (); - - if (data[0xA0] == '/') - text_format = TRUE; - - gchar spctitle[0x21]; - gchar spcartist[0x21]; - gchar spcgame[0x21]; - - strncpy (spctitle, (gchar *) & data[0x2E], 32); - strncpy (spcartist, (gchar *) & data[(text_format ? 0xB1 : 0xB0)], 32); - strncpy (spcgame, (gchar *) & data[0x4E], 32); - - spctitle[0x20] = '\0'; - spcartist[0x20] = '\0'; - spcgame[0x20] = '\0'; - - gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, - GST_TAG_TITLE, spctitle, - GST_TAG_ARTIST, spcartist, GST_TAG_ALBUM, spcgame, NULL); - - tagevent = gst_event_new_tag (taglist); - gst_element_found_tags_for_pad (GST_ELEMENT (spc), spc->srcpad, taglist); + spc_tag_info *info = &(spc->tag_info); + + spc_tag_get_info (data, GST_BUFFER_SIZE (spc->buf), info); + + GstTagList *taglist = gst_tag_list_new (); + + if (info->title) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_TITLE, + info->title, NULL); + if (info->artist) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ARTIST, + info->artist, NULL); + /* Prefer the name of the official soundtrack over the name of the game (since this is + * how track numbers are derived) + */ + if (info->album) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ALBUM, + info->album, NULL); + else if (info->game) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ALBUM, info->game, + NULL); + if (info->year) { + GDate *date = g_date_new_dmy (1, 1, info->year); + + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_DATE, date, NULL); + g_date_free (date); + } + if (info->track) { + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_TRACK_NUMBER, + info->track, NULL); } + if (info->comment) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_COMMENT, + info->comment, NULL); + if (info->disc) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, + GST_TAG_ALBUM_VOLUME_NUMBER, info->disc, NULL); + if (info->publisher) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ORGANIZATION, + info->publisher, NULL); + if (info->dumper) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_CONTACT, + info->dumper, NULL); + if (info->emulator) + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ENCODER, + info->emulator == EMU_ZSNES ? "ZSNES" : "Snes9x", NULL); + + guint64 total_duration = + (guint64) (gst_spc_duration (spc) + gst_spc_fadeout (spc)); + + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, + GST_TAG_DURATION, total_duration, + GST_TAG_GENRE, "Game", GST_TAG_CODEC, "SPC700", NULL); + + gst_element_found_tags_for_pad (GST_ELEMENT (spc), spc->srcpad, taglist); + + /* spc_tag_info_free(&info); */ + if (OSPC_Init (GST_BUFFER_DATA (spc->buf), GST_BUFFER_SIZE (spc->buf)) != 0) { return FALSE; @@ -288,9 +527,15 @@ spc_setup (GstSpcDec * spc) gst_pad_start_task (spc->srcpad, (GstTaskFunction) spc_play, spc->srcpad); - gst_buffer_unref (spc->buf); - spc->buf = NULL; + /* We can't unreference this buffer because we might need to re-initialize + * the emulator with the original data during a reverse seek + * gst_buffer_unref (spc->buf); + * spc->buf = NULL; + */ spc->initialized = TRUE; + spc->seeking = FALSE; + spc->seekpoint = 0; + spc->byte_pos = 0; return spc->initialized; } -- cgit v1.2.1