Remove ancient and dead cdrom control plugin
authorTim-Philipp Müller <tim@centricular.com>
Wed, 3 Feb 2016 21:22:28 +0000 (21:22 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 3 Feb 2016 21:22:28 +0000 (21:22 +0000)
This was never even ported to 0.10, and I don't think
it's particularly useful, since it's just a control
interface really. Let's remove it.

sys/Makefile.am
sys/cdrom/Makefile.am [deleted file]
sys/cdrom/gstcdplayer.c [deleted file]
sys/cdrom/gstcdplayer.h [deleted file]
sys/cdrom/gstcdplayer_ioctl.c [deleted file]
sys/cdrom/gstcdplayer_ioctl.h [deleted file]
sys/cdrom/gstcdplayer_ioctl_bsd.h [deleted file]
sys/cdrom/gstcdplayer_ioctl_irix.h [deleted file]
sys/cdrom/gstcdplayer_ioctl_solaris.h [deleted file]

index c27a8f9..32f79fb 100644 (file)
@@ -28,12 +28,6 @@ else
 BLUEZ_DIR=
 endif
 
-# if USE_CDROM
-#  CDROM_DIR=cdrom
-# else
-# CDROM_DIR=
-# endif
-
 if USE_WASAPI
 WASAPI_DIR=wasapi
 else
diff --git a/sys/cdrom/Makefile.am b/sys/cdrom/Makefile.am
deleted file mode 100644 (file)
index 9f4a6b1..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-plugin_LTLIBRARIES = libgstcdplayer.la
-
-libgstcdplayer_la_SOURCES = gstcdplayer.c gstcdplayer_ioctl.c
-libgstcdplayer_la_CFLAGS = $(GST_CFLAGS)
-libgstcdplayer_la_LIBADD =
-libgstcdplayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-libgstcdplayer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
-
-noinst_HEADERS = gstcdplayer.h gstcdplayer_ioctl.h gstcdplayer_ioctl_solaris.h gstcdplayer_ioctl_bsd.h
diff --git a/sys/cdrom/gstcdplayer.c b/sys/cdrom/gstcdplayer.c
deleted file mode 100644 (file)
index 0725b3d..0000000
+++ /dev/null
@@ -1,362 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-#include "gstcdplayer.h"
-
-/* props */
-enum
-{
-  ARG_0,
-  ARG_DEVICE,
-  ARG_NUM_TRACKS,
-  ARG_START_TRACK,
-  ARG_END_TRACK,
-  ARG_CURRENT_TRACK,
-  ARG_CDDB_DISCID
-};
-
-/* signals */
-enum
-{
-  TRACK_CHANGE,
-  LAST_SIGNAL
-};
-
-static void cdplayer_base_init (gpointer g_class);
-static void cdplayer_class_init (CDPlayerClass * klass);
-static void cdplayer_init (CDPlayer * cdp);
-static void cdplayer_finalize (GObject * object);
-
-static void cdplayer_set_property (GObject * object, guint prop_id,
-    const GValue * value, GParamSpec * spec);
-static void cdplayer_get_property (GObject * object, guint prop_id,
-    GValue * value, GParamSpec * spec);
-static gboolean cdplayer_iterate (GstBin * bin);
-
-static GstStateChangeReturn cdplayer_change_state (GstElement * element,
-    GstStateChange transition);
-
-static GstElementClass *parent_class;
-static guint cdplayer_signals[LAST_SIGNAL] = { 0 };
-
-GType
-cdplayer_get_type (void)
-{
-  static GType cdplayer_type = 0;
-
-  if (!cdplayer_type) {
-    static const GTypeInfo cdplayer_info = {
-      sizeof (CDPlayerClass),
-      cdplayer_base_init,
-      NULL,
-      (GClassInitFunc) cdplayer_class_init,
-      NULL,
-      NULL,
-      sizeof (CDPlayer),
-      0,
-      (GInstanceInitFunc) cdplayer_init,
-      NULL
-    };
-
-    cdplayer_type =
-        g_type_register_static (GST_TYPE_BIN, "CDPlayer", &cdplayer_info, 0);
-  }
-
-  return cdplayer_type;
-}
-
-static void
-cdplayer_base_init (gpointer g_class)
-{
-  GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
-
-  gst_element_class_set_static_metadata (element_class, "CD Player",
-      "Generic/Bin",
-      "Play CD audio through the CD Drive",
-      "Charles Schmidt <cbschmid@uiuc.edu>, "
-      "Wim Taymans <wim.taymans@chello.be>");
-}
-
-static void
-cdplayer_class_init (CDPlayerClass * klass)
-{
-  GObjectClass *gobject_klass;
-  GstElementClass *gstelement_klass;
-  GstBinClass *gstbin_klass;
-
-  gobject_klass = (GObjectClass *) klass;
-  gstelement_klass = (GstElementClass *) klass;
-  gstbin_klass = (GstBinClass *) klass;
-
-  parent_class = g_type_class_peek_parent (klass);
-
-  gobject_klass->finalize = GST_DEBUG_FUNCPTR (cdplayer_finalize);
-
-  gstelement_klass->change_state = GST_DEBUG_FUNCPTR (cdplayer_change_state);
-  gstbin_klass->iterate = GST_DEBUG_FUNCPTR (cdplayer_iterate);
-
-  gobject_klass->set_property = cdplayer_set_property;
-  gobject_klass->get_property = cdplayer_get_property;
-
-  g_object_class_install_property (gobject_klass, ARG_DEVICE,
-      g_param_spec_string ("device", "device", "CDROM device", NULL,
-          G_PARAM_READWRITE));
-  g_object_class_install_property (gobject_klass, ARG_NUM_TRACKS,
-      g_param_spec_int ("num_tracks", "num_tracks", "Number of Tracks",
-          G_MININT, G_MAXINT, 0, G_PARAM_READABLE));
-  g_object_class_install_property (gobject_klass, ARG_START_TRACK,
-      g_param_spec_int ("start_track", "start_track",
-          "Track to start playback on", 1,
-          CDPLAYER_MAX_TRACKS - 1, 1, G_PARAM_READWRITE));
-  g_object_class_install_property (gobject_klass, ARG_END_TRACK,
-      g_param_spec_int ("end_track", "end_track",
-          "Track to end playback on", 0,
-          CDPLAYER_MAX_TRACKS - 1, 0, G_PARAM_READWRITE));
-  g_object_class_install_property (gobject_klass, ARG_CURRENT_TRACK,
-      g_param_spec_int ("current_track", "current_track",
-          "Current track playing", 1,
-          CDPLAYER_MAX_TRACKS - 1, 1, G_PARAM_READABLE));
-  g_object_class_install_property (gobject_klass, ARG_CDDB_DISCID,
-      g_param_spec_uint ("cddb_discid", "cddb_discid", "CDDB Disc ID",
-          0, G_MAXUINT, 1, G_PARAM_READABLE));
-
-  cdplayer_signals[TRACK_CHANGE] =
-      g_signal_new ("track-change", G_TYPE_FROM_CLASS (klass),
-      G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CDPlayerClass, track_change), NULL,
-      NULL, gst_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
-
-  return;
-}
-
-static void
-cdplayer_init (CDPlayer * cdp)
-{
-  cdp->device = g_strdup ("/dev/cdrom");
-  cdp->num_tracks = -1;
-  cdp->start_track = 1;
-  cdp->end_track = 0;
-  cdp->current_track = 1;
-
-  cdp->paused = FALSE;
-
-  GST_OBJECT_FLAG_SET (cdp, GST_BIN_FLAG_MANAGER);
-
-  return;
-}
-
-static void
-cdplayer_set_property (GObject * object, guint prop_id, const GValue * value,
-    GParamSpec * spec)
-{
-  CDPlayer *cdp;
-
-  g_return_if_fail (GST_IS_CDPLAYER (object));
-
-  cdp = CDPLAYER (object);
-
-  switch (prop_id) {
-    case ARG_DEVICE:
-// FIXME prolly should uhh.. stop it or something
-      if (cdp->device) {
-        g_free (cdp->device);
-      }
-
-      cdp->device = g_strdup (g_value_get_string (value));
-      break;
-    case ARG_START_TRACK:
-// FIXME prolly should uhh.. restart play, i guess... or something whatever
-// FIXME we should only set current_track if its not playing...
-      cdp->current_track = cdp->start_track = g_value_get_int (value);
-      break;
-    case ARG_END_TRACK:
-// FIXME prolly should restart play, maybe, or try to set it without interrupt..
-      cdp->end_track = g_value_get_int (value);
-      break;
-    default:
-      break;
-  }
-
-  return;
-}
-
-
-static void
-cdplayer_get_property (GObject * object, guint prop_id, GValue * value,
-    GParamSpec * spec)
-{
-  CDPlayer *cdp;
-
-  g_return_if_fail (GST_IS_CDPLAYER (object));
-
-  cdp = CDPLAYER (object);
-
-  switch (prop_id) {
-    case ARG_DEVICE:
-      g_value_set_string (value, cdp->device);
-      break;
-    case ARG_NUM_TRACKS:
-      g_value_set_int (value, cdp->num_tracks);
-      break;
-    case ARG_START_TRACK:
-      g_value_set_int (value, cdp->start_track);
-      break;
-    case ARG_END_TRACK:
-      g_value_set_int (value, cdp->end_track);
-    case ARG_CURRENT_TRACK:
-      g_value_set_int (value, cdp->current_track);
-      break;
-    case ARG_CDDB_DISCID:
-      g_value_set_uint (value, cdp->cddb_discid);
-    default:
-      break;
-  }
-
-  return;
-}
-
-static void
-cdplayer_finalize (GObject * object)
-{
-  CDPlayer *cdp;
-
-  g_return_if_fail (GST_IS_CDPLAYER (object));
-
-  cdp = CDPLAYER (object);
-  g_free (cdp->device);
-
-  if (G_OBJECT_CLASS (parent_class)->finalize) {
-    G_OBJECT_CLASS (parent_class)->finalize (object);
-  }
-}
-
-static gboolean
-cdplayer_iterate (GstBin * bin)
-{
-  CDPlayer *cdp = CDPLAYER (bin);
-  gint current_track;
-
-  switch (cd_status (CDPLAYER_CD (cdp))) {
-    case CD_PLAYING:
-      current_track = cd_current_track (CDPLAYER_CD (cdp));
-      if (current_track > cdp->end_track && cdp->end_track != 0) {
-        return FALSE;
-      }
-
-      if (current_track != -1 && current_track != cdp->current_track) {
-        cdp->current_track = current_track;
-        g_signal_emit (G_OBJECT (cdp), cdplayer_signals[TRACK_CHANGE], 0,
-            cdp->current_track);
-      }
-
-      return TRUE;
-      break;
-    case CD_ERROR:
-      gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
-      return FALSE;
-      break;
-    case CD_COMPLETED:
-      gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
-      gst_element_set_eos (GST_ELEMENT (bin));
-      return FALSE;
-      break;
-  }
-
-  return FALSE;
-}
-
-
-static GstStateChangeReturn
-cdplayer_change_state (GstElement * element, GstStateChange transition)
-{
-  CDPlayer *cdp;
-  GstState state = GST_STATE (element);
-  GstState pending = GST_STATE_PENDING (element);
-
-  g_return_val_if_fail (GST_IS_CDPLAYER (element), GST_STATE_CHANGE_FAILURE);
-
-  cdp = CDPLAYER (element);
-
-  switch (pending) {
-    case GST_STATE_READY:
-      if (state != GST_STATE_PAUSED) {
-        if (cd_init (CDPLAYER_CD (cdp), cdp->device) == FALSE) {
-          return GST_STATE_CHANGE_FAILURE;
-        }
-        cdp->num_tracks = cdp->cd.num_tracks;
-        cdp->cddb_discid = cd_cddb_discid (CDPLAYER_CD (cdp));
-      }
-      break;
-    case GST_STATE_PAUSED:
-      /* ready->paused is not useful */
-      if (state != GST_STATE_READY) {
-        if (cd_pause (CDPLAYER_CD (cdp)) == FALSE) {
-          return GST_STATE_CHANGE_FAILURE;
-        }
-
-        cdp->paused = TRUE;
-      }
-
-      break;
-    case GST_STATE_PLAYING:
-      if (cdp->paused == TRUE) {
-        if (cd_resume (CDPLAYER_CD (cdp)) == FALSE) {
-          return GST_STATE_CHANGE_FAILURE;
-        }
-
-        cdp->paused = FALSE;
-      } else {
-        if (cd_start (CDPLAYER_CD (cdp), cdp->start_track,
-                cdp->end_track) == FALSE) {
-          return GST_STATE_CHANGE_FAILURE;
-        }
-      }
-
-      break;
-    case GST_STATE_NULL:
-      /* stop & close fd */
-      if (cd_stop (CDPLAYER_CD (cdp)) == FALSE
-          || cd_close (CDPLAYER_CD (cdp)) == FALSE) {
-        return GST_STATE_CHANGE_FAILURE;
-      }
-
-      break;
-    default:
-      break;
-  }
-
-  if (GST_ELEMENT_CLASS (parent_class)->change_state) {
-    GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
-  }
-
-  return GST_STATE_CHANGE_SUCCESS;
-}
-
-
-static gboolean
-plugin_init (GstPlugin * plugin)
-{
-  return gst_element_register (plugin, "cdplayer", GST_RANK_NONE,
-      GST_TYPE_CDPLAYER);
-}
-
-GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, cdplayer, "CD Player", plugin_init, VERSION, GST_LICENSE,      /* ? */
-    GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
diff --git a/sys/cdrom/gstcdplayer.h b/sys/cdrom/gstcdplayer.h
deleted file mode 100644 (file)
index a0ccd1e..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef __CDPLAYER_H__
-#define __CDPLAYER_H__
-
-#include <glib.h>
-#include <gst/gst.h>
-
-#include "gstcdplayer_ioctl.h"
-
-#define GST_TYPE_CDPLAYER               (cdplayer_get_type())
-#define CDPLAYER(obj)                   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_CDPLAYER,CDPlayer))
-#define CDPLAYER_CLASS(klass)           (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_CDPLAYER,CDPlayerClass))
-#define GST_IS_CDPLAYER(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_CDPLAYER))
-#define GST_IS_CDPLAYER_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CDPLAYER))
-
-
-typedef struct _CDPlayer CDPlayer;
-typedef struct _CDPlayerClass CDPlayerClass;
-
-struct _CDPlayer {
-        GstBin element;
-        
-        /* properties */
-        gchar *device;
-        gint num_tracks;
-        gint start_track;
-        gint end_track;
-        gint current_track;
-        guint32 cddb_discid;
-
-        /* private */
-        struct cd cd;
-        gboolean paused;
-};
-
-struct _CDPlayerClass {
-        GstBinClass parent_class;
-
-        /* signal callbacks */
-        void (*track_change) (GstElement *element,guint track);
-};
-
-GType cdplayer_get_type(void);
-
-#endif  
-
diff --git a/sys/cdrom/gstcdplayer_ioctl.c b/sys/cdrom/gstcdplayer_ioctl.c
deleted file mode 100644 (file)
index 3948c40..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
-
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "gstcdplayer_ioctl.h"
-
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <sys/ioctl.h>
-#include <errno.h>
-
-
-/* private functions */
-static void cd_fix_track_range (struct cd *cd, gint * start_track,
-    gint * end_track);
-static gint cddb_sum (gint n);
-
-#if defined(HAVE_LINUX_CDROM_H)
-#include <linux/cdrom.h>
-#elif defined(HAVE_SYS_CDIO_H)
-#include <sys/cdio.h>
-/*
-irix cdaudio works quite a bit differently than ioctl(), so its not ready
-#elif defined(HAVE_DMEDIA_CDAUDIO_H)
-#include <dmedia/cdaudio.h>
-*/
-#endif
-
-/* these headers define low level functions:
-        gboolean cd_init(struct cd *cd,const gchar *device);
-        gboolean cd_start(struct cd *cd,gint start_track,gint end_track);
-        gboolean cd_pause(struct cd *cd);
-        gboolean cd_resume(struct cd *cd);
-        gboolean cd_stop(struct cd *cd);
-        CDStatus cd_status(struct cd *cd);
-        gint cd_current_track(struct cd *cd);
-        gboolean cd_close(struct cd *cd);
-*/
-#if defined(HAVE_CDROM_SOLARIS)
-#include "gstcdplayer_ioctl_solaris.h"
-#elif defined(HAVE_CDROM_BSD)
-#include "gstcdplayer_ioctl_bsd.h"
-/*
-#elif defined(HAVE_CDROM_IRIX)
-#include "gstcdplayer_ioctl_irix.h"
-*/
-#endif
-
-static void
-cd_fix_track_range (struct cd *cd, gint * start_track, gint * end_track)
-{
-  if (*start_track <= 0) {
-    *start_track = 1;
-  }
-
-  if (*start_track > cd->num_tracks) {
-    *start_track = cd->num_tracks;
-  }
-
-  if (*end_track < *start_track && *end_track != LEADOUT) {
-    *end_track = *start_track;
-  }
-
-  if (*end_track > cd->num_tracks || *end_track + 1 > cd->num_tracks) {
-    *end_track = LEADOUT;
-  }
-
-  return;
-}
-
-/* this cddb info is from 
-   http://www.freedb.org/modules.php?name=Sections&sop=viewarticle&artid=6
-
-   this will probably be of interest to anyone wishing to actually use the discid
-   http://www.freedb.org/modules.php?name=Sections&sop=viewarticle&artid=28
-*/
-static gint
-cddb_sum (gint n)
-{
-  gint ret = 0;
-
-  while (n > 0) {
-    ret += n % 10;
-    n /= 10;
-  }
-
-  return ret;
-}
-
-guint32
-cd_cddb_discid (struct cd * cd)
-{
-  guint i;
-  guint n = 0;
-  guint t;
-
-  for (i = 1; i <= cd->num_tracks; i++) {
-    n += cddb_sum (cd->tracks[i].minute * 60 + cd->tracks[i].second);
-  }
-
-  t = (cd->tracks[LEADOUT].minute * 60 + cd->tracks[LEADOUT].second) -
-      (cd->tracks[1].minute * 60 + cd->tracks[1].second);
-
-  return ((n % 0xff) << 24 | t << 8 | (cd->num_tracks));
-}
diff --git a/sys/cdrom/gstcdplayer_ioctl.h b/sys/cdrom/gstcdplayer_ioctl.h
deleted file mode 100644 (file)
index a93cbda..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef __CDPLAYER_LL_H__
-#define __CDPLAYER_LL_H__
-
-#include <glib.h>
-
-#define LEADOUT 0
-
-#define CDPLAYER_CD(cdp)  (&(cdp->cd))
-
-#define CDPLAYER_MAX_TRACKS 128
-
-typedef enum {
-        CD_PLAYING,
-        CD_COMPLETED,
-        CD_ERROR
-} CDStatus;
-
-struct cd_msf {
-        guint8 minute;
-        guint8 second;
-        guint8 frame;
-
-        gboolean data_track;
-};
-
-struct cd {
-        gint fd;
-        gint num_tracks;
-        struct cd_msf tracks[CDPLAYER_MAX_TRACKS];
-};
-
-
-/* these are defined by the different cdrom type header files */
-gboolean cd_init(struct cd *cd,const gchar *device);
-gboolean cd_start(struct cd *cd,gint start_track,gint end_track);
-gboolean cd_pause(struct cd *cd);
-gboolean cd_resume(struct cd *cd);
-gboolean cd_stop(struct cd *cd);
-CDStatus cd_status(struct cd *cd);
-gint cd_current_track(struct cd *cd);
-gboolean cd_close(struct cd *cd);
-
-guint32 cd_cddb_discid(struct cd *cd);
-
-#endif
diff --git a/sys/cdrom/gstcdplayer_ioctl_bsd.h b/sys/cdrom/gstcdplayer_ioctl_bsd.h
deleted file mode 100644 (file)
index 8a56312..0000000
+++ /dev/null
@@ -1,345 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
-
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifdef HAVE_CDROM_BSD_NETBSD /* net & open */
-#ifndef CDIOREADTOCHDR
-#define CDIOREADTOCHDR CDIOREADTOCHEADER
-#endif
-gboolean cd_init(struct cd *cd,const gchar *device)
-{
-        struct ioc_toc_header toc_header;
-        struct ioc_read_toc_entry toc_entry;
-        struct cd_toc_entry toc_entry_data;
-        guint i;
-
-        cd->fd = open(device,O_RDONLY | O_NONBLOCK);
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        /* get the toc header information */
-        if (ioctl(cd->fd,CDIOREADTOCHDR,&toc_header) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        /* read each entry in the toc header */
-        for (i = 1; i <= toc_header.ending_track; i++) {
-                toc_entry.address_format = CD_MSF_FORMAT;
-                toc_entry.starting_track = i;
-                toc_entry.data = &toc_entry_data;
-                toc_entry.data_len = sizeof(toc_entry_data);
-
-                if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                        close(cd->fd);
-                        cd->fd = -1;
-                        return FALSE;
-                }
-
-                cd->tracks[i].minute = toc_entry.data->addr.msf.minute;
-                cd->tracks[i].second = toc_entry.data->addr.msf.second;
-                cd->tracks[i].frame = toc_entry.data->addr.msf.frame;
-                cd->tracks[i].data_track = (toc_entry.data->control & 4) == 4;
-        }
-
-        /* read the leadout */
-        toc_entry.address_format = CD_MSF_FORMAT;
-        toc_entry.starting_track = 0xAA; /* leadout */
-        toc_entry.data = &toc_entry_data;
-        toc_entry.data_len = sizeof(toc_entry_data);
-
-        if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        cd->tracks[LEADOUT].minute = toc_entry.data->addr.msf.minute;
-        cd->tracks[LEADOUT].second = toc_entry.data->addr.msf.second;
-        cd->tracks[LEADOUT].frame = toc_entry.data->addr.msf.frame;
-
-        cd->num_tracks = toc_header.ending_track;
-
-        return TRUE;
-}
-#elif defined HAVE_CDROM_BSD_DARWIN
-gboolean cd_init(struct cd *cd,const gchar *device)
-{
-        struct ioc_toc_header toc_header;
-        struct ioc_read_toc_entry toc_entry;
-        guint i;
-
-        cd->fd = open(device,O_RDONLY | O_NONBLOCK);
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        /* get the toc header information */
-        if (ioctl(cd->fd,CDIOREADTOCHDR,&toc_header) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        /* read each entry in the toc header */
-        for (i = 1; i <= toc_header.ending_track; i++) {
-                toc_entry.address_format = CD_MSF_FORMAT;
-                toc_entry.starting_track = i;
-
-                if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                        close(cd->fd);
-                        cd->fd = -1;
-                        return FALSE;
-                }
-
-                cd->tracks[i].minute = toc_entry.data->addr[1];
-                cd->tracks[i].second = toc_entry.data->addr[2];
-                cd->tracks[i].frame = toc_entry.data->addr[3];
-                cd->tracks[i].data_track = (toc_entry.data->control & 4) == 4;
-        }
-
-        /* read the leadout */
-        toc_entry.address_format = CD_MSF_FORMAT;
-        toc_entry.starting_track = 0xAA; /* leadout */
-        toc_entry.data = &toc_entry_data;
-        toc_entry.data_len = sizeof(toc_entry_data);
-
-        if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        cd->tracks[LEADOUT].minute = toc_entry.data->addr[1];
-        cd->tracks[LEADOUT].second = toc_entry.data->addr[2];
-        cd->tracks[LEADOUT].frame = toc_entry.data->addr[3];
-
-        cd->num_tracks = toc_header.ending_track;
-
-        return TRUE;
-}
-#else /* free */
-gboolean cd_init(struct cd *cd,const gchar *device)
-{
-        struct ioc_toc_header toc_header;
-        struct ioc_read_toc_entry toc_entry;
-        guint i;
-
-        cd->fd = open(device,O_RDONLY | O_NONBLOCK);
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        /* get the toc header information */
-        if (ioctl(cd->fd,CDIOREADTOCHDR,&toc_header) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        /* read each entry in the toc header */
-        for (i = 1; i <= toc_header.ending_track; i++) {
-                toc_entry.address_format = CD_MSF_FORMAT;
-                toc_entry.starting_track = i;
-
-                if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                        close(cd->fd);
-                        cd->fd = -1;
-                        return FALSE;
-                }
-
-                cd->tracks[i].minute = toc_entry.entry.addr.msf.minute;
-                cd->tracks[i].second = toc_entry.entry.addr.msf.second;
-                cd->tracks[i].frame = toc_entry.entry.addr.msf.frame;
-                cd->tracks[i].data_track = (toc_entry.data->control & 4) == 4;
-        }
-
-        /* read the leadout */
-        toc_entry.address_format = CD_MSF_FORMAT;
-        toc_entry.starting_track = 0xAA; /* leadout */
-        toc_entry.data = &toc_entry_data;
-        toc_entry.data_len = sizeof(toc_entry_data);
-
-        if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        cd->tracks[LEADOUT].minute = toc_entry.entry.addr.msf.minute;
-        cd->tracks[LEADOUT].second = toc_entry.entry.addr.msf.second;
-        cd->tracks[LEADOUT].frame = toc_entry.entry.addr.msf.frame;
-
-        cd->num_tracks = toc_header.ending_track;
-
-        return TRUE;
-}
-#endif
-
-gboolean cd_start(struct cd *cd,gint start_track,gint end_track)
-{
-        struct ioc_play_msf msf;
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        cd_fix_track_range(cd,&start_track,&end_track);
-
-        msf.start_m = cd->tracks[start_track].minute;
-        msf.start_s = cd->tracks[start_track].second;
-        msf.start_f = cd->tracks[start_track].frame;
-
-        if (end_track == LEADOUT) {
-                msf.end_m = cd->tracks[end_track].minute;
-                msf.end_s = cd->tracks[end_track].second;
-                msf.end_f = cd->tracks[end_track].frame;
-        } else {
-                msf.end_m = cd->tracks[end_track+1].minute;
-                msf.end_s = cd->tracks[end_track+1].second;
-                msf.end_f = cd->tracks[end_track+1].frame;
-        }
-
-        if (ioctl(cd->fd,CDIOCPLAYMSF,&msf) != 0) {
-                return FALSE;
-        }
-
-}
-
-gboolean cd_pause(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDIOCPAUSE,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-gboolean cd_resume(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDIOCRESUME,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-gboolean cd_stop(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDIOCSTOP,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-/* -1 for error, 0 for not playing, 1 for playing */
-CDStatus cd_status(struct cd *cd)
-{
-        struct ioc_read_subchannel sub_channel;
-        struct cd_sub_channel_info sub_channel_info;
-
-        if (cd->fd == -1) {
-                return -1;
-        }
-
-        sub_channel.address_format = CD_MSF_FORMAT;
-        sub_channel.data_format = CD_CURRENT_POSITION;
-        sub_channel.track = 0;
-        sub_channel.data = &sub_channel_info;
-        sub_channel.data_len = sizeof(sub_channel_info);
-
-        if (ioctl(cd->fd,CDIOCREADSUBCHANNEL,&sub_channel) != 0) {
-                return FALSE;
-        }
-
-        switch (sub_channel.data->header.audio_status) {
-                case CD_AS_PLAY_IN_PROGRESS:
-                case CD_AS_PLAY_PAUSED:
-                        return CD_PLAYING;
-                        break;
-                case CD_AS_PLAY_COMPLETED:
-                        return CD_COMPLETED;
-                        break;
-                case CD_AS_AUDIO_INVALID:
-                case CD_AS_PLAY_ERROR:
-                default:
-                        return CD_ERROR;
-                        break;
-
-        }
-}
-
-gint cd_current_track(struct cd *cd)
-{
-        struct ioc_read_subchannel sub_channel;
-        struct cd_sub_channel_info sub_channel_info;
-
-        if (cd->fd == -1) {
-                return -1;
-        }
-
-        sub_channel.address_format = CD_MSF_FORMAT;
-        sub_channel.data_format = CD_TRACK_INFO;
-        sub_channel.track = 0;
-        sub_channel.data = &sub_channel_info;
-        sub_channel.data_len = sizeof(sub_channel_info);
-
-        if (ioctl(cd->fd,CDIOCREADSUBCHANNEL,&sub_channel) != 0) {
-                return -1;
-        }
-
-#ifdef __NetBSD__
-        return sub_channel.data->what.track_info.track_number;
-#else
-        return sub_channel.data->track_number;
-#endif
-}
-
-gboolean cd_close(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return TRUE;
-        }
-
-        if (close(cd->fd) != 0) {
-                return FALSE;
-        }
-
-        cd->fd = -1;
-
-        return TRUE;
-}
-
diff --git a/sys/cdrom/gstcdplayer_ioctl_irix.h b/sys/cdrom/gstcdplayer_ioctl_irix.h
deleted file mode 100644 (file)
index 0a680c9..0000000
+++ /dev/null
@@ -1,109 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
-
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-/* THIS DOES NOT WORK YET */
-
-#define CDPLAYER(x) ((CDPlayer *)x)
-#define FD(x) ((int)x)
-
-gboolean cd_init(struct cd *cd,const gchar *device)
-{
-        CDPLAYER *cdplayer;
-        CDSTATUS status;
-        CDTRACKINFO info;
-        guint i;
-
-        cdplayer = CDOpen(device,"r");
-
-        if (cdplayer == NULL) {
-                return FALSE;
-        }
-
-        cd->fd = FD(cdplayer);
-
-        if (CDgetstatus(cdplayer,&status) == 0) {
-                CDclose(cdplayer);
-                cd->fd = 0;
-                return FALSE;
-        }
-
-        for (i = 1; i < status.last; i++) {
-                if (CDgettrackinfo(cdplayer,i,&info) == 0) {
-                        CDclose(cdplayer);
-                        cd->fd = 0;
-                        return FALSE;
-                }
-
-                cd->tracks[i].minute = info.start_min;
-                cd->tracks[i].second = info.start_sec;
-                cd->tracks[i].frame = info.start_frame;
-
-        }
-
-        /* there is no leadout information */
-        
-
-        cd->num_tracks = status.last;
-
-        return TRUE;
-}
-
-gboolean cd_start(struct cd *cd,gint start_track,gint end_track)
-{
-        if (cd->fd == 0) {
-                return FALSE;
-        }
-
-        cd_fix_track_range(cd,&start_track,&end_track);
-
-        
-
-}
-
-gboolean cd_pause(struct cd *cd)
-{
-
-}
-
-gboolean cd_resume(struct cd *cd)
-{
-
-}
-
-gboolean cd_stop(struct cd *cd)
-{
-
-}
-
-/* -1 for error, 0 for not playing, 1 for playing */
-CDStatus cd_status(struct cd *cd)
-{
-
-}
-
-gint cd_current_track(struct cd *cd)
-{
-
-}
-
-gboolean cd_close(struct cd *cd)
-{
-
-}
-
diff --git a/sys/cdrom/gstcdplayer_ioctl_solaris.h b/sys/cdrom/gstcdplayer_ioctl_solaris.h
deleted file mode 100644 (file)
index ad95998..0000000
+++ /dev/null
@@ -1,204 +0,0 @@
-/* gstcdplay
- * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 
-
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-gboolean cd_init(struct cd *cd,const gchar *device)
-{
-        struct cdrom_tochdr toc_header;
-        struct cdrom_tocentry toc_entry;
-        guint i;
-
-        cd->fd = open(device,O_RDONLY | O_NONBLOCK);
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        /* get the toc header information */
-        if (ioctl(cd->fd,CDROMREADTOCHDR,&toc_header) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-
-        /* read each entry in the toc header */
-        for (i = 1; i <= toc_header.cdth_trk1; i++) {
-                toc_entry.cdte_format = CDROM_MSF;
-                toc_entry.cdte_track = i;
-
-                if (ioctl(cd->fd,CDROMREADTOCENTRY,&toc_entry) != 0) {
-                        close(cd->fd);
-                        cd->fd = -1;
-                        return FALSE;
-                }
-
-                cd->tracks[i].minute = toc_entry.cdte_addr.msf.minute;
-                cd->tracks[i].second = toc_entry.cdte_addr.msf.second;
-                cd->tracks[i].frame = toc_entry.cdte_addr.msf.frame;
-                cd->tracks[i].data_track = (toc_entry.cdte_ctrl == CDROM_DATA_TRACK);
-        }
-
-        /* read the leadout */
-        toc_entry.cdte_track = CDROM_LEADOUT;
-        toc_entry.cdte_format = CDROM_MSF;
-        if (ioctl(cd->fd,CDROMREADTOCENTRY,&toc_entry) != 0) {
-                close(cd->fd);
-                cd->fd = -1;
-                return FALSE;
-        }
-        cd->tracks[LEADOUT].minute = toc_entry.cdte_addr.msf.minute;
-        cd->tracks[LEADOUT].second = toc_entry.cdte_addr.msf.second;
-        cd->tracks[LEADOUT].frame = toc_entry.cdte_addr.msf.frame;
-
-        cd->num_tracks = toc_header.cdth_trk1;
-
-        return TRUE;
-}
-
-gboolean cd_start(struct cd *cd,gint start_track,gint end_track)
-{
-        struct cdrom_msf msf;
-
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        cd_fix_track_range(cd,&start_track,&end_track);
-
-        msf.cdmsf_min0 = cd->tracks[start_track].minute;
-        msf.cdmsf_sec0 = cd->tracks[start_track].second;
-        msf.cdmsf_frame0 = cd->tracks[start_track].frame;
-
-        if (end_track == LEADOUT) {
-                msf.cdmsf_min1 = cd->tracks[end_track].minute;
-                msf.cdmsf_sec1 = cd->tracks[end_track].second;
-                msf.cdmsf_frame1 = cd->tracks[end_track].frame;
-        } else {
-                msf.cdmsf_min1 = cd->tracks[end_track+1].minute;
-                msf.cdmsf_sec1 = cd->tracks[end_track+1].second;
-                msf.cdmsf_frame1 = cd->tracks[end_track+1].frame;
-        }
-
-        if (ioctl(cd->fd,CDROMPLAYMSF,&msf) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-gboolean cd_pause(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDROMPAUSE,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-gboolean cd_resume(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDROMRESUME,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-gboolean cd_stop(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return FALSE;
-        }
-
-        if (ioctl(cd->fd,CDROMSTOP,NULL) != 0) {
-                return FALSE;
-        }
-
-        return TRUE;
-}
-
-/* -1 for error, 0 for not playing, 1 for playing */
-CDStatus cd_status(struct cd *cd)
-{
-        struct cdrom_subchnl sub_channel;
-
-        if (cd->fd == -1) {
-                return -1;
-        }
-
-        sub_channel.cdsc_format = CDROM_MSF;
-
-        if (ioctl(cd->fd,CDROMSUBCHNL,&sub_channel) != 0) {
-                return -1;
-        }
-
-        switch (sub_channel.cdsc_audiostatus) {
-                case CDROM_AUDIO_COMPLETED:
-                        return CD_COMPLETED;
-                        break;
-                case CDROM_AUDIO_PLAY:
-                case CDROM_AUDIO_PAUSED:
-                        return CD_PLAYING;
-                        break;
-                case CDROM_AUDIO_ERROR:
-                default:
-                        return CD_ERROR;
-        }
-}
-
-gint cd_current_track(struct cd *cd)
-{
-        struct cdrom_subchnl sub_channel;
-
-        if (cd->fd == -1) {
-                return -1;
-        }
-
-        sub_channel.cdsc_format = CDROM_MSF;
-
-        if (ioctl(cd->fd,CDROMSUBCHNL,&sub_channel) != 0) {
-                return -1;
-        }
-
-
-        return sub_channel.cdsc_trk;
-}
-
-gboolean cd_close(struct cd *cd)
-{
-        if (cd->fd == -1) {
-                return TRUE;
-        }
-
-        if (close(cd->fd) != 0) {
-                return FALSE;
-        }
-
-        cd->fd = -1;
-
-        return TRUE;
-}
-