mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
configure.ac: Update requirements from past CVS versions to released versions (0.10.14 in this case).
Original commit message from CVS: * configure.ac: Update requirements from past CVS versions to released versions (0.10.14 in this case). * ext/sidplay/gstsiddec.cc: Fix compilation with g++-4.2.
This commit is contained in:
parent
14598caba9
commit
10585630e6
3 changed files with 16 additions and 19 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-10-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* configure.ac:
|
||||
Update requirements from past CVS versions to released
|
||||
versions (0.10.14 in this case).
|
||||
|
||||
* ext/sidplay/gstsiddec.cc:
|
||||
Fix compilation with g++-4.2.
|
||||
|
||||
2007-10-08 Jan Schmidt <Jan.Schmidt@sun.com>
|
||||
|
||||
* gst/realmedia/asmrules.c: (gst_asm_scan_parse_expression),
|
||||
|
|
|
@ -46,8 +46,8 @@ dnl AS_LIBTOOL_TAGS([CXX])
|
|||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=0.10.13
|
||||
GSTPB_REQ=0.10.13.1
|
||||
GST_REQ=0.10.14
|
||||
GSTPB_REQ=0.10.14
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -54,19 +54,6 @@
|
|||
#include <string.h>
|
||||
#include "gstsiddec.h"
|
||||
|
||||
static const GstElementDetails gst_siddec_details =
|
||||
GST_ELEMENT_DETAILS ("Sid decoder",
|
||||
"Codec/Decoder/Audio",
|
||||
"Use libsidplay to decode SID audio tunes",
|
||||
"Wim Taymans <wim@fluendo.com> ");
|
||||
|
||||
/* Sidec signals and args */
|
||||
enum
|
||||
{
|
||||
/* FILL ME */
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
#define DEFAULT_TUNE 0
|
||||
#define DEFAULT_CLOCK SIDTUNE_CLOCK_PAL
|
||||
#define DEFAULT_MEMORY MPU_BANK_SWITCHING
|
||||
|
@ -163,8 +150,6 @@ static void gst_siddec_set_property (GObject * object, guint prop_id,
|
|||
|
||||
static GstElementClass *parent_class = NULL;
|
||||
|
||||
//static guint gst_siddec_signals[LAST_SIGNAL] = { 0 };
|
||||
|
||||
GType
|
||||
gst_siddec_get_type (void)
|
||||
{
|
||||
|
@ -197,7 +182,9 @@ gst_siddec_base_init (gpointer g_class)
|
|||
{
|
||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||
|
||||
gst_element_class_set_details (element_class, &gst_siddec_details);
|
||||
gst_element_class_set_details_simple (element_class, "Sid decoder",
|
||||
"Codec/Decoder/Audio", "Use libsidplay to decode SID audio tunes",
|
||||
"Wim Taymans <wim.taymans@gmail.com>");
|
||||
|
||||
gst_element_class_add_pad_template (element_class,
|
||||
gst_static_pad_template_get (&src_templ));
|
||||
|
@ -789,8 +776,9 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_TYPE_SIDDEC);
|
||||
}
|
||||
|
||||
/* FIXME: remove cast to gchar once we depend on core >= 0.10.14.1 */
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"siddec",
|
||||
"Uses libsidplay to decode .sid files",
|
||||
(gchar *) "Uses libsidplay to decode .sid files",
|
||||
plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
||||
|
|
Loading…
Reference in a new issue