mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
0d04f83e98
Original commit message from CVS: * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert): Fix track calculations (#166208).
1230 lines
35 KiB
C
1230 lines
35 KiB
C
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2 -*- */
|
|
/* GStreamer
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.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., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* #define GST_DEBUG_ENABLED */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include "gst/gst-i18n-plugin.h"
|
|
#include <gst/gst.h>
|
|
|
|
/* taken from linux/cdrom.h */
|
|
#define CD_MSF_OFFSET 150 /* MSF numbering offset of first frame */
|
|
#define CD_SECS 60 /* seconds per minute */
|
|
#define CD_FRAMES 75 /* frames per second */
|
|
|
|
#include "gstcdparanoia.h"
|
|
|
|
|
|
static GstElementDetails cdparanoia_details = {
|
|
"CD Audio (cdda) Source, Paranoia IV",
|
|
"Source/File",
|
|
"Read audio from CD in paranoid mode",
|
|
"Erik Walthinsen <omega@cse.ogi.edu>",
|
|
};
|
|
|
|
static GstStaticPadTemplate cdparanoia_src_template =
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
GST_PAD_SRC,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
|
"endianness = (int) BYTE_ORDER, "
|
|
"signed = (boolean) true, "
|
|
"width = (int) 16, "
|
|
"depth = (int) 16, " "rate = (int) 44100, " "channels = (int) 2")
|
|
);
|
|
|
|
|
|
/********** Define useful types for non-programmatic interfaces **********/
|
|
#define GST_TYPE_PARANOIA_MODE (gst_paranoia_mode_get_type())
|
|
static GType
|
|
gst_paranoia_mode_get_type (void)
|
|
{
|
|
static GType paranoia_mode_type = 0;
|
|
static GEnumValue paranoia_modes[] = {
|
|
{PARANOIA_MODE_DISABLE, "0", "Disable paranoid checking"},
|
|
{PARANOIA_MODE_OVERLAP, "4", "cdda2wav-style overlap checking"},
|
|
{PARANOIA_MODE_FULL, "255", "Full paranoia"},
|
|
{0, NULL, NULL},
|
|
};
|
|
|
|
if (!paranoia_mode_type) {
|
|
paranoia_mode_type =
|
|
g_enum_register_static ("GstParanoiaMode", paranoia_modes);
|
|
}
|
|
return paranoia_mode_type;
|
|
}
|
|
|
|
#define GST_TYPE_PARANOIA_ENDIAN (gst_paranoia_endian_get_type())
|
|
static GType
|
|
gst_paranoia_endian_get_type (void)
|
|
{
|
|
static GType paranoia_endian_type = 0;
|
|
static GEnumValue paranoia_endians[] = {
|
|
{0, "0", "treat drive as little endian"},
|
|
{1, "1", "treat drive as big endian"},
|
|
{0, NULL, NULL},
|
|
};
|
|
|
|
if (!paranoia_endian_type) {
|
|
paranoia_endian_type =
|
|
g_enum_register_static ("GstParanoiaEndian", paranoia_endians);
|
|
}
|
|
return paranoia_endian_type;
|
|
}
|
|
|
|
/********** Standard stuff for signals and arguments **********/
|
|
/* CDParanoia signals and args */
|
|
enum
|
|
{
|
|
SMILIE_CHANGE,
|
|
TRANSPORT_ERROR,
|
|
UNCORRECTED_ERROR,
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
enum
|
|
{
|
|
ARG_0,
|
|
ARG_LOCATION,
|
|
ARG_DEVICE,
|
|
ARG_GENERIC_DEVICE,
|
|
ARG_DEFAULT_SECTORS,
|
|
ARG_SEARCH_OVERLAP,
|
|
ARG_ENDIAN,
|
|
ARG_READ_SPEED,
|
|
ARG_TOC_OFFSET,
|
|
ARG_TOC_BIAS,
|
|
ARG_NEVER_SKIP,
|
|
ARG_ABORT_ON_SKIP,
|
|
ARG_PARANOIA_MODE,
|
|
ARG_SMILIE,
|
|
ARG_DISCID
|
|
};
|
|
|
|
static void cdparanoia_base_init (gpointer g_class);
|
|
static void cdparanoia_class_init (CDParanoiaClass * klass);
|
|
static void cdparanoia_init (CDParanoia * cdparanoia);
|
|
static void cdparanoia_finalize (GObject * obj);
|
|
|
|
static void cdparanoia_set_property (GObject * object, guint prop_id,
|
|
const GValue * value, GParamSpec * pspec);
|
|
static void cdparanoia_get_property (GObject * object, guint prop_id,
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static GstData *cdparanoia_get (GstPad * pad);
|
|
static gboolean cdparanoia_event (GstPad * pad, GstEvent * event);
|
|
static const GstEventMask *cdparanoia_get_event_mask (GstPad * pad);
|
|
static const GstFormat *cdparanoia_get_formats (GstPad * pad);
|
|
static gboolean cdparanoia_convert (GstPad * pad,
|
|
GstFormat src_format,
|
|
gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
|
|
static gboolean cdparanoia_query (GstPad * pad, GstQueryType type,
|
|
GstFormat * format, gint64 * value);
|
|
static const GstQueryType *cdparanoia_get_query_types (GstPad * pad);
|
|
static void cdparanoia_set_index (GstElement * element, GstIndex * index);
|
|
static GstIndex *cdparanoia_get_index (GstElement * element);
|
|
|
|
|
|
static void cdparanoia_uri_handler_init (gpointer g_iface, gpointer iface_data);
|
|
|
|
static void
|
|
_do_init (GType cdparanoia_type)
|
|
{
|
|
static const GInterfaceInfo urihandler_info = {
|
|
cdparanoia_uri_handler_init,
|
|
NULL,
|
|
NULL,
|
|
};
|
|
|
|
g_type_add_interface_static (cdparanoia_type, GST_TYPE_URI_HANDLER,
|
|
&urihandler_info);
|
|
}
|
|
|
|
GST_BOILERPLATE_FULL (CDParanoia, cdparanoia, GstElement, GST_TYPE_ELEMENT,
|
|
_do_init);
|
|
|
|
static GstElementStateReturn cdparanoia_change_state (GstElement * element);
|
|
|
|
static guint cdparanoia_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
/* our two formats */
|
|
static GstFormat track_format;
|
|
static GstFormat sector_format;
|
|
|
|
static void
|
|
cdparanoia_base_init (gpointer g_class)
|
|
{
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
gst_static_pad_template_get (&cdparanoia_src_template));
|
|
gst_element_class_set_details (element_class, &cdparanoia_details);
|
|
|
|
/* Register the track and sector format */
|
|
track_format = gst_format_register ("track", "CD track");
|
|
sector_format = gst_format_register ("sector", "CD sector");
|
|
}
|
|
|
|
static void
|
|
cdparanoia_class_init (CDParanoiaClass * klass)
|
|
{
|
|
GObjectClass *gobject_class;
|
|
GstElementClass *gstelement_class;
|
|
char *success = strerror_tr[0];
|
|
|
|
success = NULL;
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
cdparanoia_signals[SMILIE_CHANGE] =
|
|
g_signal_new ("smilie-change", G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CDParanoiaClass, smilie_change), NULL,
|
|
NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING);
|
|
cdparanoia_signals[TRANSPORT_ERROR] =
|
|
g_signal_new ("transport-error", G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CDParanoiaClass, transport_error),
|
|
NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
|
|
cdparanoia_signals[UNCORRECTED_ERROR] =
|
|
g_signal_new ("uncorrected-error", G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CDParanoiaClass, uncorrected_error),
|
|
NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LOCATION,
|
|
g_param_spec_string ("location", "Location",
|
|
"CD device location (deprecated; use device)",
|
|
NULL, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DEVICE,
|
|
g_param_spec_string ("device", "Device",
|
|
"CD device location", NULL, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_GENERIC_DEVICE,
|
|
g_param_spec_string ("generic_device", "Generic device",
|
|
"Use specified generic scsi device", NULL, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DEFAULT_SECTORS,
|
|
g_param_spec_int ("default_sectors", "Default sectors",
|
|
"Force default number of sectors in read to n sectors", -1, 100, -1,
|
|
G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SEARCH_OVERLAP,
|
|
g_param_spec_int ("search_overlap", "Search overlap",
|
|
"Force minimum overlap search during verification to n sectors", -1,
|
|
75, -1, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ENDIAN,
|
|
g_param_spec_enum ("endian", "Endian", "Force endian on drive",
|
|
GST_TYPE_PARANOIA_ENDIAN, 0, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_READ_SPEED,
|
|
g_param_spec_int ("read_speed", "Read speed",
|
|
"Read from device at specified speed", G_MININT, G_MAXINT, 0,
|
|
G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TOC_OFFSET,
|
|
g_param_spec_int ("toc_offset", "TOC offset",
|
|
"Add <n> sectors to the values reported", G_MININT, G_MAXINT, 0,
|
|
G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TOC_BIAS,
|
|
g_param_spec_boolean ("toc_bias", "TOC bias",
|
|
"Assume that the beginning offset of track 1 as reported in the TOC "
|
|
"will be addressed as LBA 0. Necessary for some Toshiba drives to "
|
|
"get track boundaries", TRUE, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NEVER_SKIP,
|
|
g_param_spec_int ("never_skip", "Never skip",
|
|
"never accept any less than perfect data reconstruction (don't allow "
|
|
"'V's) but if [n] is given, skip after [n] retries without progress.",
|
|
0, G_MAXINT, 0, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ABORT_ON_SKIP,
|
|
g_param_spec_boolean ("abort_on_skip", "Abort on skip",
|
|
"Abort on imperfect reads/skips", TRUE, G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PARANOIA_MODE,
|
|
g_param_spec_enum ("paranoia_mode", "Paranoia mode",
|
|
"Type of checking to perform", GST_TYPE_PARANOIA_MODE, 0,
|
|
G_PARAM_READWRITE));
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DISCID,
|
|
g_param_spec_string ("discid", "discid", "The dics id", NULL,
|
|
G_PARAM_READABLE));
|
|
|
|
/* tags */
|
|
gst_tag_register ("discid", GST_TAG_FLAG_META, G_TYPE_STRING,
|
|
_("discid"), _("CDDA discid for metadata retrieval"),
|
|
gst_tag_merge_use_first);
|
|
|
|
gobject_class->set_property = cdparanoia_set_property;
|
|
gobject_class->get_property = cdparanoia_get_property;
|
|
gobject_class->finalize = cdparanoia_finalize;
|
|
|
|
gstelement_class->change_state = cdparanoia_change_state;
|
|
gstelement_class->set_index = cdparanoia_set_index;
|
|
gstelement_class->get_index = cdparanoia_get_index;
|
|
}
|
|
|
|
static void
|
|
cdparanoia_init (CDParanoia * cdparanoia)
|
|
{
|
|
cdparanoia->srcpad =
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
(&cdparanoia_src_template), "src");
|
|
gst_pad_set_get_function (cdparanoia->srcpad, cdparanoia_get);
|
|
gst_pad_set_event_function (cdparanoia->srcpad, cdparanoia_event);
|
|
gst_pad_set_event_mask_function (cdparanoia->srcpad,
|
|
cdparanoia_get_event_mask);
|
|
gst_pad_set_convert_function (cdparanoia->srcpad, cdparanoia_convert);
|
|
gst_pad_set_query_function (cdparanoia->srcpad, cdparanoia_query);
|
|
gst_pad_set_query_type_function (cdparanoia->srcpad,
|
|
cdparanoia_get_query_types);
|
|
gst_pad_set_formats_function (cdparanoia->srcpad, cdparanoia_get_formats);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (cdparanoia), cdparanoia->srcpad);
|
|
|
|
cdparanoia->device = g_strdup ("/dev/cdrom");
|
|
cdparanoia->generic_device = NULL;
|
|
cdparanoia->default_sectors = -1;
|
|
cdparanoia->search_overlap = -1;
|
|
cdparanoia->endian = 0;
|
|
cdparanoia->read_speed = -1;
|
|
cdparanoia->toc_offset = 0;
|
|
cdparanoia->toc_bias = FALSE;
|
|
cdparanoia->never_skip = FALSE;
|
|
cdparanoia->paranoia_mode = 2;
|
|
cdparanoia->abort_on_skip = FALSE;
|
|
|
|
cdparanoia->total_seconds = 0;
|
|
cdparanoia->discont_sent = FALSE;
|
|
cdparanoia->uri = NULL;
|
|
cdparanoia->uri_track = -1;
|
|
cdparanoia->seek_request = -1;
|
|
}
|
|
|
|
static void
|
|
cdparanoia_finalize (GObject * obj)
|
|
{
|
|
CDParanoia *cdparanoia = CDPARANOIA (obj);
|
|
|
|
g_free (cdparanoia->uri);
|
|
cdparanoia->uri = NULL;
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (obj);
|
|
}
|
|
|
|
static void
|
|
cdparanoia_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
GParamSpec * pspec)
|
|
{
|
|
CDParanoia *src;
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
g_return_if_fail (GST_IS_CDPARANOIA (object));
|
|
|
|
src = CDPARANOIA (object);
|
|
|
|
switch (prop_id) {
|
|
case ARG_DEVICE:
|
|
case ARG_LOCATION:
|
|
g_free (src->device);
|
|
/* clear the filename if we get a NULL (is that possible?) */
|
|
if (!g_ascii_strcasecmp (g_value_get_string (value), ""))
|
|
src->device = NULL;
|
|
/* otherwise set the new filename */
|
|
else
|
|
src->device = g_strdup (g_value_get_string (value));
|
|
break;
|
|
case ARG_GENERIC_DEVICE:
|
|
|
|
if (src->generic_device)
|
|
g_free (src->generic_device);
|
|
/* reset the device if we get a NULL (is that possible?) */
|
|
if (!g_ascii_strcasecmp (g_value_get_string (value), ""))
|
|
src->generic_device = NULL;
|
|
/* otherwise set the new filename */
|
|
else
|
|
src->generic_device = g_strdup (g_value_get_string (value));
|
|
break;
|
|
case ARG_DEFAULT_SECTORS:
|
|
src->default_sectors = g_value_get_int (value);
|
|
break;
|
|
case ARG_SEARCH_OVERLAP:
|
|
src->search_overlap = g_value_get_int (value);
|
|
break;
|
|
case ARG_ENDIAN:
|
|
src->endian = g_value_get_enum (value);
|
|
break;
|
|
case ARG_READ_SPEED:
|
|
src->read_speed = g_value_get_int (value);
|
|
break;
|
|
case ARG_TOC_OFFSET:
|
|
src->toc_offset = g_value_get_int (value);
|
|
break;
|
|
case ARG_TOC_BIAS:
|
|
src->toc_bias = g_value_get_boolean (value);
|
|
break;
|
|
case ARG_NEVER_SKIP:
|
|
src->never_skip = g_value_get_int (value);
|
|
break;
|
|
case ARG_ABORT_ON_SKIP:
|
|
src->abort_on_skip = g_value_get_boolean (value);
|
|
break;
|
|
case ARG_PARANOIA_MODE:
|
|
src->paranoia_mode = g_value_get_enum (value);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
static void
|
|
cdparanoia_get_property (GObject * object, guint prop_id, GValue * value,
|
|
GParamSpec * pspec)
|
|
{
|
|
CDParanoia *src;
|
|
|
|
g_return_if_fail (GST_IS_CDPARANOIA (object));
|
|
|
|
src = CDPARANOIA (object);
|
|
|
|
switch (prop_id) {
|
|
case ARG_DEVICE:
|
|
case ARG_LOCATION:
|
|
g_value_set_string (value, src->device);
|
|
break;
|
|
case ARG_GENERIC_DEVICE:
|
|
g_value_set_string (value, src->generic_device);
|
|
break;
|
|
case ARG_DEFAULT_SECTORS:
|
|
g_value_set_int (value, src->default_sectors);
|
|
break;
|
|
case ARG_SEARCH_OVERLAP:
|
|
g_value_set_int (value, src->search_overlap);
|
|
break;
|
|
case ARG_ENDIAN:
|
|
g_value_set_enum (value, src->endian);
|
|
break;
|
|
case ARG_READ_SPEED:
|
|
g_value_set_int (value, src->read_speed);
|
|
break;
|
|
case ARG_TOC_OFFSET:
|
|
g_value_set_int (value, src->toc_offset);
|
|
break;
|
|
case ARG_TOC_BIAS:
|
|
g_value_set_boolean (value, src->toc_bias);
|
|
break;
|
|
case ARG_NEVER_SKIP:
|
|
g_value_set_int (value, src->never_skip);
|
|
break;
|
|
case ARG_ABORT_ON_SKIP:
|
|
g_value_set_boolean (value, src->abort_on_skip);
|
|
break;
|
|
case ARG_PARANOIA_MODE:
|
|
g_value_set_enum (value, src->paranoia_mode);
|
|
break;
|
|
case ARG_DISCID:
|
|
/**
|
|
* Due to possible autocorrections of start sectors of audio tracks on
|
|
* multisession cds, we can maybe not compute the correct discid.
|
|
* So issue a warning.
|
|
* See cdparanoia/interface/common-interface.c:FixupTOC
|
|
*/
|
|
if (src->d && src->d->cd_extra)
|
|
g_warning
|
|
("DiscID on multisession discs might be broken. Use at own risk.");
|
|
g_value_set_string (value, src->discid);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
cdparanoia_callback (long inpos, int function)
|
|
{
|
|
}
|
|
|
|
static GstData *
|
|
cdparanoia_get (GstPad * pad)
|
|
{
|
|
CDParanoia *src;
|
|
GstBuffer *buf;
|
|
|
|
src = CDPARANOIA (gst_pad_get_parent (pad));
|
|
|
|
g_return_val_if_fail (GST_FLAG_IS_SET (src, CDPARANOIA_OPEN), NULL);
|
|
|
|
if (src->seek_request != -1) {
|
|
gst_pad_send_event (src->srcpad,
|
|
gst_event_new_segment_seek (track_format |
|
|
GST_SEEK_METHOD_SET |
|
|
GST_SEEK_FLAG_FLUSH, src->seek_request - 1, src->seek_request));
|
|
src->seek_request = -1;
|
|
}
|
|
|
|
/* stop things apropriatly */
|
|
if (src->cur_sector > src->segment_end_sector) {
|
|
GST_DEBUG ("setting EOS");
|
|
|
|
buf = GST_BUFFER (gst_event_new (GST_EVENT_EOS));
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
|
} else {
|
|
gint16 *cdda_buf;
|
|
gint64 timestamp;
|
|
GstFormat format;
|
|
|
|
/* convert the sequence sector number to a timestamp */
|
|
format = GST_FORMAT_TIME;
|
|
timestamp = 0LL;
|
|
gst_pad_convert (src->srcpad, sector_format, src->cur_sector, &format,
|
|
×tamp);
|
|
|
|
if (!src->discont_sent && src->prev_sec != src->cur_sector) {
|
|
GstEvent *discont_ev;
|
|
|
|
discont_ev =
|
|
gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, timestamp,
|
|
GST_FORMAT_UNDEFINED);
|
|
|
|
src->discont_sent = TRUE;
|
|
return GST_DATA (discont_ev);
|
|
}
|
|
|
|
src->discont_sent = FALSE;
|
|
|
|
/* read a sector */
|
|
cdda_buf = paranoia_read (src->p, cdparanoia_callback);
|
|
|
|
/* have to copy the buffer for now since we don't own it... */
|
|
/* FIXME must ask monty about allowing ownership transfer */
|
|
buf = gst_buffer_new_and_alloc (CD_FRAMESIZE_RAW);
|
|
memcpy (GST_BUFFER_DATA (buf), cdda_buf, CD_FRAMESIZE_RAW);
|
|
GST_BUFFER_TIMESTAMP (buf) = timestamp;
|
|
gst_pad_convert (pad, GST_FORMAT_BYTES, CD_FRAMESIZE_RAW,
|
|
&format, ×tamp);
|
|
GST_BUFFER_DURATION (buf) = timestamp;
|
|
|
|
/* update current sector */
|
|
src->cur_sector++;
|
|
src->prev_sec = src->cur_sector;
|
|
}
|
|
|
|
/* we're done, push the buffer off now */
|
|
return GST_DATA (buf);
|
|
}
|
|
|
|
/* need some stuff to get a discid (cdparanoia doesn't do cddb but lets
|
|
* not stop other ppl doing it ;-) */
|
|
typedef int byte;
|
|
|
|
typedef struct
|
|
{
|
|
byte m;
|
|
byte s;
|
|
byte f;
|
|
}
|
|
toc_msf;
|
|
|
|
/* cdparanoia provides the toc in lba format dang we need it in msf so
|
|
* we have to convert it */
|
|
static inline void
|
|
lba_to_msf (const gint lba, byte * m, byte * s, byte * f)
|
|
{
|
|
gint lba2 = lba;
|
|
|
|
lba2 += CD_MSF_OFFSET;
|
|
lba2 &= 0xffffff;
|
|
*m = lba2 / (CD_SECS * CD_FRAMES);
|
|
lba2 %= (CD_SECS * CD_FRAMES);
|
|
*s = lba2 / CD_FRAMES;
|
|
*f = lba2 % CD_FRAMES;
|
|
*f += (*m) * 60 * 75;
|
|
*f += (*s) * 75;
|
|
}
|
|
|
|
static void
|
|
lba_toc_to_msf_toc (TOC * lba_toc, toc_msf * msf_toc, gint tracks)
|
|
{
|
|
gint i;
|
|
|
|
for (i = 0; i <= tracks; i++)
|
|
lba_to_msf (lba_toc[i].dwStartSector, &msf_toc[i].m, &msf_toc[i].s,
|
|
&msf_toc[i].f);
|
|
}
|
|
|
|
/* the cddb hash function */
|
|
static guint
|
|
cddb_sum (gint n)
|
|
{
|
|
guint ret;
|
|
|
|
ret = 0;
|
|
while (n > 0) {
|
|
ret += (n % 10);
|
|
n /= 10;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
cddb_discid (gchar * discid, toc_msf * toc, gint tracks)
|
|
{
|
|
guint i = 0, t = 0, n = 0;
|
|
|
|
while (i < tracks) {
|
|
n = n + cddb_sum ((toc[i].m * 60) + toc[i].s);
|
|
i++;
|
|
}
|
|
t = ((toc[tracks].m * 60) + toc[tracks].s) - ((toc[0].m * 60)
|
|
+ toc[0].s);
|
|
sprintf (discid, "%08x", ((n % 0xff) << 24 | t << 8 | tracks));
|
|
}
|
|
|
|
/* get all the cddb info at once */
|
|
static void
|
|
get_cddb_info (TOC * toc, gint tracks, gchar * discid, gint64 * offsets,
|
|
gint64 * total_seconds)
|
|
{
|
|
toc_msf msf_toc[MAXTRK];
|
|
gint i;
|
|
gint64 *p = offsets;
|
|
|
|
lba_toc_to_msf_toc (toc, &msf_toc[0], tracks);
|
|
cddb_discid (discid, &msf_toc[0], tracks);
|
|
|
|
for (i = 0; i < tracks; i++) {
|
|
*p++ = msf_toc[i].f;
|
|
}
|
|
|
|
*total_seconds = msf_toc[tracks].f / 75;
|
|
|
|
}
|
|
|
|
static void
|
|
add_index_associations (CDParanoia * src)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < src->d->tracks; i++) {
|
|
gint64 sector;
|
|
|
|
sector = cdda_track_firstsector (src->d, i + 1);
|
|
gst_index_add_association (src->index, src->index_id,
|
|
GST_ASSOCIATION_FLAG_KEY_UNIT,
|
|
track_format, i,
|
|
sector_format, sector,
|
|
GST_FORMAT_TIME,
|
|
(gint64) (((CD_FRAMESIZE_RAW >> 2) * sector * GST_SECOND) / 44100),
|
|
GST_FORMAT_BYTES, (gint64) (sector << 2), GST_FORMAT_DEFAULT,
|
|
(gint64) ((CD_FRAMESIZE_RAW >> 2) * sector), NULL);
|
|
#if 0
|
|
g_print ("Added association for track %d\n", i + 1);
|
|
g_print ("Sector: %lld\n", sector);
|
|
g_print ("Time: %lld\n",
|
|
(gint64) (((CD_FRAMESIZE_RAW >> 2) * sector * GST_SECOND) / 44100));
|
|
g_print ("Bytes: %lld\n", (gint64) (sector << 2));
|
|
g_print ("Units: %lld\n", (gint64) ((CD_FRAMESIZE_RAW >> 2) * sector));
|
|
g_print ("-----------\n");
|
|
#endif
|
|
}
|
|
}
|
|
|
|
/* open the file, necessary to go to RUNNING state */
|
|
static gboolean
|
|
cdparanoia_open (CDParanoia * src)
|
|
{
|
|
GstTagList *taglist;
|
|
gint i;
|
|
gint paranoia_mode;
|
|
|
|
g_return_val_if_fail (!GST_FLAG_IS_SET (src, CDPARANOIA_OPEN), FALSE);
|
|
|
|
GST_DEBUG_OBJECT (src, "trying to open device...");
|
|
|
|
/* find the device */
|
|
if (src->generic_device != NULL) {
|
|
src->d = cdda_identify_scsi (src->generic_device, src->device, FALSE, NULL);
|
|
} else {
|
|
if (src->device != NULL) {
|
|
src->d = cdda_identify (src->device, FALSE, NULL);
|
|
} else {
|
|
src->d = cdda_identify ("/dev/cdrom", FALSE, NULL);
|
|
}
|
|
}
|
|
|
|
/* fail if the device couldn't be found */
|
|
if (src->d == NULL) {
|
|
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
|
|
(_("Could not open CD device for reading.")), ("cdda_identify failed"));
|
|
return FALSE;
|
|
}
|
|
|
|
/* set verbosity mode */
|
|
cdda_verbose_set (src->d, CDDA_MESSAGE_FORGETIT, CDDA_MESSAGE_FORGETIT);
|
|
|
|
/* set various other parameters */
|
|
if (src->default_sectors != -1) {
|
|
src->d->nsectors = src->default_sectors;
|
|
src->d->bigbuff = src->default_sectors * CD_FRAMESIZE_RAW;
|
|
}
|
|
|
|
/* open the disc */
|
|
if (cdda_open (src->d)) {
|
|
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
|
|
(_("Could not open CD device for reading.")), ("cdda_open failed"));
|
|
cdda_close (src->d);
|
|
src->d = NULL;
|
|
return FALSE;
|
|
}
|
|
|
|
/* I don't like this here i would prefer it under get_cddb_info but for somereason
|
|
* when leaving the function it clobbers the allocated mem and all is lost bugger
|
|
*/
|
|
|
|
get_cddb_info (&src->d->disc_toc[0], src->d->tracks, src->discid,
|
|
src->offsets, &src->total_seconds);
|
|
|
|
g_object_freeze_notify (G_OBJECT (src));
|
|
g_object_notify (G_OBJECT (src), "discid");
|
|
g_object_thaw_notify (G_OBJECT (src));
|
|
|
|
taglist = gst_tag_list_new ();
|
|
gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, "discid", src->discid, NULL);
|
|
gst_element_found_tags (GST_ELEMENT (src), taglist);
|
|
/* no need to forward, because discid is useless to other elements */
|
|
|
|
if (src->toc_bias) {
|
|
src->toc_offset -= cdda_track_firstsector (src->d, 1);
|
|
}
|
|
for (i = 0; i < src->d->tracks + 1; i++) {
|
|
src->d->disc_toc[i].dwStartSector += src->toc_offset;
|
|
}
|
|
|
|
if (src->read_speed != -1) {
|
|
cdda_speed_set (src->d, src->read_speed);
|
|
}
|
|
|
|
/* save thse ones - skip lead-in */
|
|
src->first_sector = cdda_track_firstsector (src->d, 1);
|
|
src->last_sector = cdda_disc_lastsector (src->d);
|
|
|
|
/* this is the default segment we will play */
|
|
src->segment_start_sector = src->first_sector;
|
|
src->segment_end_sector = src->last_sector;
|
|
|
|
/* create the paranoia struct and set it up */
|
|
src->p = paranoia_init (src->d);
|
|
if (src->p == NULL) {
|
|
GST_ELEMENT_ERROR (src, LIBRARY, INIT, (NULL), (NULL));
|
|
return FALSE;
|
|
}
|
|
|
|
paranoia_mode = src->paranoia_mode;
|
|
if (src->never_skip)
|
|
paranoia_mode |= PARANOIA_MODE_NEVERSKIP;
|
|
|
|
paranoia_modeset (src->p, paranoia_mode);
|
|
|
|
if (src->search_overlap != -1) {
|
|
paranoia_overlapset (src->p, src->search_overlap);
|
|
}
|
|
|
|
src->cur_sector = src->first_sector;
|
|
src->prev_sec = src->cur_sector;
|
|
paranoia_seek (src->p, src->cur_sector, SEEK_SET);
|
|
GST_DEBUG ("successfully seek'd to beginning of disk");
|
|
|
|
GST_FLAG_SET (src, CDPARANOIA_OPEN);
|
|
|
|
if (src->index && GST_INDEX_IS_WRITABLE (src->index)) {
|
|
add_index_associations (src);
|
|
}
|
|
|
|
GST_DEBUG_OBJECT (src, "device successfully openend");
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* close the file */
|
|
static void
|
|
cdparanoia_close (CDParanoia * src)
|
|
{
|
|
g_return_if_fail (GST_FLAG_IS_SET (src, CDPARANOIA_OPEN));
|
|
|
|
/* kill the paranoia state */
|
|
paranoia_free (src->p);
|
|
src->p = NULL;
|
|
|
|
src->total_seconds = 0LL;
|
|
/* close the disc */
|
|
cdda_close (src->d);
|
|
src->d = NULL;
|
|
|
|
GST_FLAG_UNSET (src, CDPARANOIA_OPEN);
|
|
}
|
|
|
|
static GstElementStateReturn
|
|
cdparanoia_change_state (GstElement * element)
|
|
{
|
|
CDParanoia *cdparanoia;
|
|
|
|
g_return_val_if_fail (GST_IS_CDPARANOIA (element), GST_STATE_FAILURE);
|
|
|
|
cdparanoia = CDPARANOIA (element);
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
case GST_STATE_NULL_TO_READY:
|
|
if (!cdparanoia_open (CDPARANOIA (element))) {
|
|
g_warning ("cdparanoia: failed opening cd");
|
|
return GST_STATE_FAILURE;
|
|
}
|
|
break;
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
if (cdparanoia->uri_track > 0) {
|
|
cdparanoia->seek_request = cdparanoia->uri_track;
|
|
}
|
|
break;
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
break;
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
break;
|
|
case GST_STATE_PAUSED_TO_READY:
|
|
/* FIXME: Need code here to reset element to start of cd */
|
|
break;
|
|
case GST_STATE_READY_TO_NULL:
|
|
cdparanoia_close (CDPARANOIA (element));
|
|
cdparanoia->seek_request = -1;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
/* if we haven't failed already, give the parent class a chance too ;-) */
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
return GST_STATE_SUCCESS;
|
|
}
|
|
|
|
static const GstEventMask *
|
|
cdparanoia_get_event_mask (GstPad * pad)
|
|
{
|
|
static const GstEventMask masks[] = {
|
|
{GST_EVENT_SEEK, GST_SEEK_METHOD_SET |
|
|
GST_SEEK_METHOD_CUR | GST_SEEK_METHOD_END | GST_SEEK_FLAG_FLUSH},
|
|
{GST_EVENT_SEEK_SEGMENT, GST_SEEK_METHOD_SET |
|
|
GST_SEEK_METHOD_CUR | GST_SEEK_METHOD_END | GST_SEEK_FLAG_FLUSH},
|
|
{0,}
|
|
};
|
|
|
|
return masks;
|
|
}
|
|
|
|
static gboolean
|
|
cdparanoia_event (GstPad * pad, GstEvent * event)
|
|
{
|
|
CDParanoia *src;
|
|
gboolean res = TRUE;
|
|
|
|
src = CDPARANOIA (gst_pad_get_parent (pad));
|
|
|
|
if (!GST_FLAG_IS_SET (src, CDPARANOIA_OPEN)) {
|
|
GST_DEBUG ("device not open, cannot handle event");
|
|
goto error;
|
|
}
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
case GST_EVENT_SEEK:
|
|
case GST_EVENT_SEEK_SEGMENT:
|
|
{
|
|
gint64 offset, endoffset;
|
|
gint format;
|
|
gint64 seg_start_sector = -1, seg_end_sector = -1;
|
|
|
|
format = GST_EVENT_SEEK_FORMAT (event);
|
|
offset = GST_EVENT_SEEK_OFFSET (event);
|
|
endoffset = GST_EVENT_SEEK_ENDOFFSET (event);
|
|
|
|
/* we can only seek on sectors, so we convert the requested
|
|
* offsets to sectors first */
|
|
if (offset != -1) {
|
|
res &= gst_pad_convert (src->srcpad, format, offset,
|
|
§or_format, &seg_start_sector);
|
|
}
|
|
if (endoffset != -1) {
|
|
res &= gst_pad_convert (src->srcpad, format, endoffset,
|
|
§or_format, &seg_end_sector);
|
|
}
|
|
|
|
if (!res) {
|
|
GST_DEBUG ("could not convert offsets to sectors");
|
|
goto error;
|
|
}
|
|
|
|
switch (GST_EVENT_SEEK_METHOD (event)) {
|
|
case GST_SEEK_METHOD_SET:
|
|
/* values are set for regular seek set */
|
|
break;
|
|
case GST_SEEK_METHOD_CUR:
|
|
if (seg_start_sector != -1) {
|
|
seg_start_sector += src->cur_sector;
|
|
}
|
|
if (seg_end_sector != -1) {
|
|
seg_end_sector += src->cur_sector;
|
|
}
|
|
break;
|
|
case GST_SEEK_METHOD_END:
|
|
if (seg_start_sector != -1) {
|
|
seg_start_sector = src->last_sector - seg_start_sector;
|
|
}
|
|
if (seg_end_sector != -1) {
|
|
seg_end_sector = src->last_sector - seg_end_sector;
|
|
}
|
|
break;
|
|
default:
|
|
goto error;
|
|
}
|
|
/* do we need to update the start sector? */
|
|
if (seg_start_sector != -1) {
|
|
seg_start_sector += src->first_sector;
|
|
seg_start_sector = CLAMP (seg_start_sector,
|
|
src->first_sector, src->last_sector);
|
|
|
|
if (paranoia_seek (src->p, seg_start_sector, SEEK_SET) > -1) {
|
|
GST_DEBUG ("seeked to %" G_GINT64_FORMAT, seg_start_sector);
|
|
|
|
src->segment_start_sector = seg_start_sector;
|
|
src->cur_sector = src->segment_start_sector;
|
|
} else {
|
|
goto error;
|
|
}
|
|
}
|
|
if (seg_end_sector != -1) {
|
|
seg_end_sector += src->first_sector;
|
|
seg_end_sector = CLAMP (seg_end_sector,
|
|
src->first_sector, src->last_sector);
|
|
src->segment_end_sector = seg_end_sector;
|
|
}
|
|
GST_DEBUG ("configured for %d -> %d sectors\n",
|
|
src->segment_start_sector, src->segment_end_sector);
|
|
break;
|
|
}
|
|
default:
|
|
goto error;
|
|
}
|
|
|
|
if (FALSE) {
|
|
error:
|
|
res = FALSE;
|
|
}
|
|
gst_event_unref (event);
|
|
|
|
return res;
|
|
}
|
|
|
|
static const GstFormat *
|
|
cdparanoia_get_formats (GstPad * pad)
|
|
{
|
|
static GstFormat formats[] = {
|
|
GST_FORMAT_TIME,
|
|
GST_FORMAT_BYTES,
|
|
GST_FORMAT_DEFAULT,
|
|
0, /* filled later */
|
|
0, /* filled later */
|
|
0
|
|
};
|
|
|
|
formats[3] = track_format;
|
|
formats[4] = sector_format;
|
|
|
|
return formats;
|
|
}
|
|
|
|
static gboolean
|
|
cdparanoia_convert (GstPad * pad,
|
|
GstFormat src_format, gint64 src_value,
|
|
GstFormat * dest_format, gint64 * dest_value)
|
|
{
|
|
CDParanoia *src;
|
|
|
|
src = CDPARANOIA (gst_pad_get_parent (pad));
|
|
|
|
if (!GST_FLAG_IS_SET (src, CDPARANOIA_OPEN)) {
|
|
return FALSE;
|
|
}
|
|
|
|
switch (src_format) {
|
|
case GST_FORMAT_TIME:
|
|
switch (*dest_format) {
|
|
case GST_FORMAT_BYTES:
|
|
src_value <<= 2; /* 4 bytes per sample */
|
|
case GST_FORMAT_DEFAULT:
|
|
*dest_value = src_value * 44100 / GST_SECOND;
|
|
break;
|
|
default:
|
|
if (*dest_format == track_format || *dest_format == sector_format) {
|
|
gint sector =
|
|
(src_value * 44100) / ((CD_FRAMESIZE_RAW >> 2) * GST_SECOND);
|
|
|
|
if (*dest_format == sector_format) {
|
|
*dest_value = sector;
|
|
} else {
|
|
*dest_value = cdda_sector_gettrack (src->d, sector) - 1;
|
|
}
|
|
} else
|
|
return FALSE;
|
|
break;
|
|
}
|
|
break;
|
|
case GST_FORMAT_BYTES:
|
|
src_value >>= 2;
|
|
case GST_FORMAT_DEFAULT:
|
|
switch (*dest_format) {
|
|
case GST_FORMAT_BYTES:
|
|
*dest_value = src_value * 4;
|
|
break;
|
|
case GST_FORMAT_TIME:
|
|
*dest_value = src_value * GST_SECOND / 44100;
|
|
break;
|
|
default:
|
|
if (*dest_format == track_format || *dest_format == sector_format) {
|
|
gint sector = src_value / (CD_FRAMESIZE_RAW >> 2);
|
|
|
|
if (*dest_format == track_format) {
|
|
*dest_value = cdda_sector_gettrack (src->d, sector) - 1;
|
|
} else {
|
|
*dest_value = sector;
|
|
}
|
|
} else
|
|
return FALSE;
|
|
break;
|
|
}
|
|
break;
|
|
default:
|
|
{
|
|
gint64 sector;
|
|
|
|
if (src_format == track_format) {
|
|
/* some sanity checks */
|
|
if (src_value < 0 || src_value > src->d->tracks)
|
|
return FALSE;
|
|
|
|
sector = cdda_track_firstsector (src->d, src_value + 1);
|
|
} else if (src_format == sector_format) {
|
|
sector = src_value;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
|
|
switch (*dest_format) {
|
|
case GST_FORMAT_TIME:
|
|
*dest_value = ((CD_FRAMESIZE_RAW >> 2) * sector * GST_SECOND) / 44100;
|
|
break;
|
|
case GST_FORMAT_BYTES:
|
|
sector <<= 2;
|
|
case GST_FORMAT_DEFAULT:
|
|
*dest_value = (CD_FRAMESIZE_RAW >> 2) * sector;
|
|
break;
|
|
default:
|
|
if (*dest_format == sector_format) {
|
|
*dest_value = sector;
|
|
} else if (*dest_format == track_format) {
|
|
/* if we go past the last sector, make sure to report the last track */
|
|
if (sector > src->last_sector - src->first_sector)
|
|
*dest_value = cdda_sector_gettrack (src->d, src->last_sector);
|
|
else
|
|
*dest_value = cdda_sector_gettrack (src->d,
|
|
sector + src->first_sector) - 1;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static const GstQueryType *
|
|
cdparanoia_get_query_types (GstPad * pad)
|
|
{
|
|
static const GstQueryType src_query_types[] = {
|
|
GST_QUERY_TOTAL,
|
|
GST_QUERY_POSITION,
|
|
GST_QUERY_START,
|
|
GST_QUERY_SEGMENT_END,
|
|
0
|
|
};
|
|
|
|
return src_query_types;
|
|
}
|
|
|
|
static gboolean
|
|
cdparanoia_query (GstPad * pad, GstQueryType type,
|
|
GstFormat * format, gint64 * value)
|
|
{
|
|
gboolean res = TRUE;
|
|
CDParanoia *src;
|
|
|
|
src = CDPARANOIA (gst_pad_get_parent (pad));
|
|
|
|
if (!GST_FLAG_IS_SET (src, CDPARANOIA_OPEN)) {
|
|
return FALSE;
|
|
}
|
|
|
|
switch (type) {
|
|
case GST_QUERY_TOTAL:
|
|
/* we take the last sector + 1 so that we also have the full
|
|
* size of that last sector */
|
|
res = gst_pad_convert (src->srcpad,
|
|
sector_format, src->last_sector + 1 - src->first_sector,
|
|
format, value);
|
|
break;
|
|
case GST_QUERY_POSITION:
|
|
/* bring our current sector to the requested format */
|
|
res = gst_pad_convert (src->srcpad,
|
|
sector_format, src->cur_sector - src->first_sector, format, value);
|
|
break;
|
|
case GST_QUERY_START:
|
|
res = gst_pad_convert (src->srcpad,
|
|
sector_format, src->segment_start_sector - src->first_sector,
|
|
format, value);
|
|
break;
|
|
case GST_QUERY_SEGMENT_END:
|
|
res = gst_pad_convert (src->srcpad,
|
|
sector_format, src->segment_end_sector - src->first_sector,
|
|
format, value);
|
|
break;
|
|
default:
|
|
res = FALSE;
|
|
break;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
static void
|
|
cdparanoia_set_index (GstElement * element, GstIndex * index)
|
|
{
|
|
CDParanoia *cdparanoia;
|
|
|
|
cdparanoia = CDPARANOIA (element);
|
|
|
|
cdparanoia->index = index;
|
|
|
|
gst_index_get_writer_id (index, GST_OBJECT (cdparanoia->srcpad),
|
|
&cdparanoia->index_id);
|
|
gst_index_add_format (index, cdparanoia->index_id, track_format);
|
|
gst_index_add_format (index, cdparanoia->index_id, sector_format);
|
|
}
|
|
|
|
static GstIndex *
|
|
cdparanoia_get_index (GstElement * element)
|
|
{
|
|
CDParanoia *cdparanoia;
|
|
|
|
cdparanoia = CDPARANOIA (element);
|
|
|
|
return cdparanoia->index;
|
|
}
|
|
|
|
static gboolean
|
|
plugin_init (GstPlugin * plugin)
|
|
{
|
|
if (!gst_element_register (plugin, "cdparanoia", GST_RANK_NONE,
|
|
GST_TYPE_CDPARANOIA))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*** GSTURIHANDLER INTERFACE *************************************************/
|
|
|
|
static guint
|
|
cdparanoia_uri_get_type (void)
|
|
{
|
|
return GST_URI_SRC;
|
|
}
|
|
static gchar **
|
|
cdparanoia_uri_get_protocols (void)
|
|
{
|
|
static gchar *protocols[] = { "cdda", NULL };
|
|
|
|
return protocols;
|
|
}
|
|
static const gchar *
|
|
cdparanoia_uri_get_uri (GstURIHandler * handler)
|
|
{
|
|
CDParanoia *cdparanoia = CDPARANOIA (handler);
|
|
|
|
return cdparanoia->uri;
|
|
}
|
|
|
|
static gboolean
|
|
cdparanoia_uri_set_uri (GstURIHandler * handler, const gchar * uri)
|
|
{
|
|
gchar *protocol, *location;
|
|
gboolean ret;
|
|
|
|
CDParanoia *cdparanoia = CDPARANOIA (handler);
|
|
|
|
ret = TRUE;
|
|
|
|
protocol = gst_uri_get_protocol (uri);
|
|
if (strcmp (protocol, "cdda") != 0) {
|
|
g_free (protocol);
|
|
return FALSE;
|
|
}
|
|
g_free (protocol);
|
|
location = gst_uri_get_location (uri);
|
|
cdparanoia->uri_track = strtol (location, NULL, 10);
|
|
if (cdparanoia->uri_track > 0) {
|
|
cdparanoia->seek_request = cdparanoia->uri_track;
|
|
}
|
|
g_free (location);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
cdparanoia_uri_handler_init (gpointer g_iface, gpointer iface_data)
|
|
{
|
|
GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
|
|
|
|
iface->get_type = cdparanoia_uri_get_type;
|
|
iface->get_protocols = cdparanoia_uri_get_protocols;
|
|
iface->get_uri = cdparanoia_uri_get_uri;
|
|
iface->set_uri = cdparanoia_uri_set_uri;
|
|
}
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
"cdparanoia",
|
|
"Read audio from CD in paranoid mode",
|
|
plugin_init, VERSION, "GPL", GST_PACKAGE, GST_ORIGIN)
|