mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
8517f3b3c1
Original commit message from CVS: first pass at making this work again needs quite a lot of cleanups
566 lines
16 KiB
C
566 lines
16 KiB
C
/* GStreamer media-info library
|
|
* Copyright (C) 2003,2004 Thomas Vander Stichele <thomas@apestaart.org>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
#include <string.h>
|
|
#include "media-info.h"
|
|
#include "media-info-priv.h"
|
|
|
|
static void gst_media_info_class_init (GstMediaInfoClass *klass);
|
|
static void gst_media_info_instance_init (GstMediaInfo *info);
|
|
|
|
static void gst_media_info_get_property (GObject *object, guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
|
|
/* FIXME: this is a lousy hack that needs to go */
|
|
#define MAX_METADATA_ITERS 5
|
|
|
|
/* GObject-y bits */
|
|
|
|
/* signal stuff */
|
|
enum
|
|
{
|
|
MEDIA_INFO_SIGNAL,
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
static guint gst_media_info_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
/*
|
|
* all GError stuff
|
|
*/
|
|
|
|
enum
|
|
{
|
|
MEDIA_INFO_ERROR_FILE
|
|
};
|
|
|
|
/* GError quark stuff */
|
|
static GQuark
|
|
gst_media_info_error_quark (void)
|
|
{
|
|
static GQuark quark = 0;
|
|
if (quark == 0)
|
|
quark = g_quark_from_static_string ("gst-media-info-error-quark");
|
|
return quark;
|
|
}
|
|
|
|
/* General GError creation */
|
|
static void
|
|
gst_media_info_error_create (GError **error, const gchar *message)
|
|
{
|
|
/* check if caller wanted an error reported */
|
|
if (error == NULL)
|
|
return;
|
|
|
|
*error = g_error_new (GST_MEDIA_INFO_ERROR, 0, message);
|
|
return;
|
|
}
|
|
|
|
/* GError creation when element is missing */
|
|
static void
|
|
gst_media_info_error_element (const gchar *element, GError **error)
|
|
{
|
|
gchar *message;
|
|
|
|
message = g_strdup_printf ("The %s element could not be found. "
|
|
"This element is essential for reading. "
|
|
"Please install the right plug-in and verify "
|
|
"that it works by running 'gst-inspect %s'",
|
|
element, element);
|
|
gst_media_info_error_create (error, message);
|
|
g_free (message);
|
|
return;
|
|
}
|
|
|
|
/* used from the instance_init function to report errors */
|
|
#define GST_MEDIA_INFO_MAKE_OR_ERROR(el, factory, name, error) \
|
|
G_STMT_START { \
|
|
el = gst_element_factory_make (factory, name); \
|
|
if (!GST_IS_ELEMENT (el)) \
|
|
{ \
|
|
gst_media_info_error_element (factory, error); \
|
|
return; \
|
|
} \
|
|
} G_STMT_END
|
|
|
|
#define GST_MEDIA_INFO_ERROR_RETURN(error, message) \
|
|
G_STMT_START { \
|
|
gst_media_info_error_create (error, message); \
|
|
return FALSE; \
|
|
} G_STMT_END
|
|
|
|
|
|
/*
|
|
* GObject type stuff
|
|
*/
|
|
|
|
enum
|
|
{
|
|
PROP_SOURCE
|
|
};
|
|
|
|
static GObjectClass *parent_class = NULL;
|
|
|
|
GST_DEBUG_CATEGORY (gst_media_info_debug);
|
|
|
|
/* initialize the media-info library */
|
|
void
|
|
gst_media_info_init (void)
|
|
{
|
|
/* register our debugging category */
|
|
GST_DEBUG_CATEGORY_INIT (gst_media_info_debug, "GST_MEDIA_INFO", 0,
|
|
"GStreamer media-info library");
|
|
GST_DEBUG ("Initialized media-info library");
|
|
}
|
|
|
|
GType
|
|
gst_media_info_get_type (void)
|
|
{
|
|
static GType gst_media_info_type = 0;
|
|
if (!gst_media_info_type)
|
|
{
|
|
static const GTypeInfo gst_media_info_info = {
|
|
sizeof (GstMediaInfoClass),
|
|
(GBaseInitFunc) NULL,
|
|
(GBaseFinalizeFunc) NULL,
|
|
(GClassInitFunc) gst_media_info_class_init,
|
|
NULL, NULL,
|
|
sizeof (GstMediaInfo),
|
|
0,
|
|
(GInstanceInitFunc) gst_media_info_instance_init,
|
|
NULL
|
|
};
|
|
gst_media_info_type = g_type_register_static (G_TYPE_OBJECT,
|
|
"GstMediaInfo",
|
|
&gst_media_info_info, 0);
|
|
}
|
|
return gst_media_info_type;
|
|
}
|
|
|
|
static void
|
|
gst_media_info_class_init (GstMediaInfoClass *klass)
|
|
{
|
|
GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
|
|
|
|
parent_class = g_type_class_ref (G_TYPE_OBJECT);
|
|
//parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
/*
|
|
object_class->finalize = gst_media_info_finalize;
|
|
object_class->dispose = gst_media_info_dispose;
|
|
*/
|
|
|
|
/*
|
|
g_object_class->set_property = gst_media_info_set_property;
|
|
*/
|
|
g_object_class->get_property = gst_media_info_get_property;
|
|
|
|
klass->media_info_signal = NULL;
|
|
|
|
gst_media_info_signals [MEDIA_INFO_SIGNAL] =
|
|
g_signal_new ("media-info",
|
|
G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_FIRST,
|
|
G_STRUCT_OFFSET (GstMediaInfoClass, media_info_signal),
|
|
NULL, NULL,
|
|
gst_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0);
|
|
}
|
|
|
|
static void
|
|
gst_media_info_instance_init (GstMediaInfo *info)
|
|
{
|
|
GError **error;
|
|
|
|
info->priv = g_new0 (GstMediaInfoPriv, 1);
|
|
error = &info->priv->error;
|
|
|
|
info->priv->pipeline = gst_pipeline_new ("media-info");
|
|
|
|
/* create the typefind element and make sure it stays around by reffing */
|
|
GST_MEDIA_INFO_MAKE_OR_ERROR (info->priv->typefind, "typefind", "typefind", error);
|
|
gst_object_ref (GST_OBJECT (info->priv->typefind));
|
|
|
|
/* create the fakesink element and make sure it stays around by reffing */
|
|
GST_MEDIA_INFO_MAKE_OR_ERROR (info->priv->fakesink, "fakesink", "fakesink", error);
|
|
gst_object_ref (GST_OBJECT (info->priv->fakesink));
|
|
|
|
/* source element for media info reading */
|
|
info->priv->source = NULL;
|
|
info->priv->source_name = NULL;
|
|
|
|
info->priv->location = NULL;
|
|
info->priv->type = NULL;
|
|
info->priv->format = NULL;
|
|
info->priv->metadata = NULL;
|
|
info->priv->pipeline_desc = NULL;
|
|
|
|
/* clear result pointers */
|
|
info->priv->stream = NULL;
|
|
|
|
info->priv->error = NULL;
|
|
}
|
|
|
|
/* get/set */
|
|
static void
|
|
gst_media_info_get_property (GObject *object, guint prop_id,
|
|
GValue *value, GParamSpec *pspec)
|
|
{
|
|
GstMediaInfo *info = GST_MEDIA_INFO (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_SOURCE:
|
|
g_value_set_string (value, info->priv->source_name);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
GstMediaInfo *
|
|
gst_media_info_new (GError **error)
|
|
{
|
|
GstMediaInfo *info = g_object_new (GST_MEDIA_INFO_TYPE, NULL);
|
|
|
|
if (info->priv->error)
|
|
{
|
|
if (error)
|
|
{
|
|
*error = info->priv->error;
|
|
info->priv->error = NULL;
|
|
}
|
|
else
|
|
{
|
|
g_warning ("Error creating GstMediaInfo object.\n%s",
|
|
info->priv->error->message);
|
|
g_error_free (info->priv->error);
|
|
}
|
|
}
|
|
return info;
|
|
}
|
|
|
|
/**
|
|
* public methods
|
|
*/
|
|
gboolean
|
|
gst_media_info_set_source (GstMediaInfo *info, const char *source)
|
|
{
|
|
GstElement *src;
|
|
src = gst_element_factory_make (source, "new-source");
|
|
if (!GST_IS_ELEMENT (src))
|
|
return FALSE;
|
|
|
|
if (info->priv->source)
|
|
{
|
|
/* this also unrefs the element */
|
|
gst_bin_remove (GST_BIN (info->priv->pipeline), info->priv->source);
|
|
if (info->priv->source_name)
|
|
{
|
|
g_free (info->priv->source_name);
|
|
info->priv->source_name = NULL;
|
|
}
|
|
}
|
|
g_object_set (G_OBJECT (src), "name", "source", NULL);
|
|
gst_bin_add (GST_BIN (info->priv->pipeline), src);
|
|
info->priv->source = src;
|
|
info->priv->source_name = g_strdup (source);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* idler-based implementation
|
|
* set up read on a given location
|
|
* FIXME: maybe we should check if the info is cleared when calling this
|
|
* function ? What happens if it gets called again on same info before
|
|
* previous one is done ?
|
|
*/
|
|
void
|
|
gst_media_info_read_with_idler (GstMediaInfo *info, const char *location,
|
|
guint16 flags)
|
|
{
|
|
GstMediaInfoPriv *priv = info->priv;
|
|
|
|
gmi_reset (info); /* reset all structs */
|
|
priv->location = g_strdup (location);
|
|
priv->flags = flags;
|
|
}
|
|
|
|
/* an idler which does the work of actually collecting all data
|
|
* this must be called repeatedly, until streamp is set to a non-NULL value
|
|
* returns: TRUE if it was able to idle, FALSE if there was an error
|
|
*/
|
|
gboolean
|
|
gst_media_info_read_idler (GstMediaInfo *info, GstMediaInfoStream **streamp)
|
|
{
|
|
GstMediaInfoPriv *priv;
|
|
/* if it's NULL then we're sure something went wrong higher up) */
|
|
if (info == NULL) return FALSE;
|
|
|
|
priv = info->priv;
|
|
|
|
g_assert (streamp != NULL);
|
|
g_assert (priv);
|
|
|
|
switch (priv->state)
|
|
{
|
|
case GST_MEDIA_INFO_STATE_NULL:
|
|
/* need to find type */
|
|
GST_DEBUG ("idler: NULL, need to find type, priv %p", priv);
|
|
return gmip_find_type_pre (priv);
|
|
|
|
case GST_MEDIA_INFO_STATE_TYPEFIND:
|
|
{
|
|
gchar *mime;
|
|
|
|
GST_LOG ("STATE_TYPEFIND");
|
|
if ((priv->type == NULL) && gst_bin_iterate (GST_BIN (priv->pipeline)))
|
|
{
|
|
GST_DEBUG ("iterating while in STATE_TYPEFIND");
|
|
GMI_DEBUG("?");
|
|
return TRUE;
|
|
}
|
|
if (priv->type == NULL)
|
|
{
|
|
g_warning ("Couldn't find type\n");
|
|
return FALSE;
|
|
}
|
|
/* do the state transition */
|
|
GST_DEBUG ("doing find_type_post");
|
|
gmip_find_type_post (priv);
|
|
GST_DEBUG ("finding out mime type");
|
|
mime = g_strdup (gst_structure_get_name (
|
|
gst_caps_get_structure(priv->type, 0)));
|
|
GST_DEBUG ("found out mime type: %s", mime);
|
|
if (!gmi_set_mime (info, mime))
|
|
{
|
|
/* FIXME: pop up error */
|
|
GST_DEBUG ("no decoder pipeline found for mime %s", mime);
|
|
return FALSE;
|
|
}
|
|
priv->stream = gmi_stream_new ();
|
|
GST_DEBUG ("new stream: %p", priv->stream);
|
|
priv->stream->mime = mime;
|
|
priv->stream->path = priv->location;
|
|
|
|
gmip_find_stream_pre (priv);
|
|
}
|
|
case GST_MEDIA_INFO_STATE_STREAM:
|
|
{
|
|
GST_LOG ("STATE_STREAM");
|
|
if ((priv->format == NULL) && gst_bin_iterate (GST_BIN (priv->pipeline)))
|
|
{
|
|
GMI_DEBUG("?");
|
|
return TRUE;
|
|
}
|
|
if (priv->format == NULL)
|
|
{
|
|
g_warning ("Couldn't find format\n");
|
|
return FALSE;
|
|
}
|
|
/* do state transition; stream -> first track metadata */
|
|
priv->current_track_num = 0;
|
|
gmip_find_stream_post (priv);
|
|
priv->current_track = gmi_track_new ();
|
|
gmip_find_track_metadata_pre (priv);
|
|
return TRUE;
|
|
}
|
|
/* these ones are repeated per track */
|
|
case GST_MEDIA_INFO_STATE_METADATA:
|
|
{
|
|
if ((priv->metadata == NULL) &&
|
|
gst_bin_iterate (GST_BIN (priv->pipeline)) &&
|
|
priv->metadata_iters < MAX_METADATA_ITERS)
|
|
{
|
|
GMI_DEBUG("?");
|
|
priv->metadata_iters++;
|
|
return TRUE;
|
|
}
|
|
if (priv->metadata_iters == MAX_METADATA_ITERS)
|
|
g_print ("iterated a few times, didn't find metadata\n");
|
|
if (priv->metadata == NULL)
|
|
{
|
|
/* this is not a permanent failure */
|
|
GST_DEBUG ("Couldn't find metadata");
|
|
}
|
|
GST_DEBUG ("found metadata of track %ld", priv->current_track_num);
|
|
if (!gmip_find_track_metadata_post (priv)) return FALSE;
|
|
GST_DEBUG ("METADATA: going to STREAMINFO\n");
|
|
priv->state = GST_MEDIA_INFO_STATE_STREAMINFO;
|
|
return gmip_find_track_streaminfo_pre (priv);
|
|
}
|
|
case GST_MEDIA_INFO_STATE_STREAMINFO:
|
|
{
|
|
if ((priv->streaminfo == NULL) &&
|
|
gst_bin_iterate (GST_BIN (priv->pipeline)))
|
|
{
|
|
GMI_DEBUG("?");
|
|
return TRUE;
|
|
}
|
|
if (priv->streaminfo == NULL)
|
|
{
|
|
/* this is not a permanent failure */
|
|
GST_DEBUG ("Couldn't find streaminfo");
|
|
}
|
|
else
|
|
GST_DEBUG ("found streaminfo of track %ld", priv->current_track_num);
|
|
if (!gmip_find_track_streaminfo_post (priv)) return FALSE;
|
|
priv->state = GST_MEDIA_INFO_STATE_FORMAT;
|
|
return gmip_find_track_format_pre (priv);
|
|
}
|
|
case GST_MEDIA_INFO_STATE_FORMAT:
|
|
{
|
|
if ((priv->format == NULL) &&
|
|
gst_bin_iterate (GST_BIN (priv->pipeline)))
|
|
{
|
|
GMI_DEBUG("?");
|
|
return TRUE;
|
|
}
|
|
if (priv->format == NULL)
|
|
{
|
|
g_warning ("Couldn't find format\n");
|
|
return FALSE;
|
|
}
|
|
GST_DEBUG ("found format of track %ld", priv->current_track_num);
|
|
if (!gmip_find_track_format_post (priv)) return FALSE;
|
|
/* save the track info */
|
|
priv->stream->tracks = g_list_append (priv->stream->tracks,
|
|
priv->current_track);
|
|
/* these alloc'd data types have been handed off */
|
|
priv->current_track = NULL;
|
|
priv->location = NULL;
|
|
/* now see if we need to seek to a next track or not */
|
|
priv->current_track_num++;
|
|
if (priv->current_track_num < priv->stream->length_tracks)
|
|
{
|
|
gmi_seek_to_track (info, priv->current_track_num);
|
|
priv->current_track = gmi_track_new ();
|
|
if (!gmip_find_track_metadata_pre (priv))
|
|
{
|
|
g_free (priv->current_track);
|
|
return FALSE;
|
|
}
|
|
priv->state = GST_MEDIA_INFO_STATE_METADATA;
|
|
return TRUE;
|
|
}
|
|
priv->state = GST_MEDIA_INFO_STATE_DONE;
|
|
*streamp = priv->stream;
|
|
priv->stream = NULL;
|
|
GST_DEBUG ("TOTALLY DONE, setting pointer *streamp to %p", *streamp);
|
|
return TRUE;
|
|
}
|
|
case GST_MEDIA_INFO_STATE_DONE:
|
|
return TRUE;
|
|
default:
|
|
g_warning ("don't know what to do\n");
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
/* main function
|
|
* read all possible info from the file pointed to by location
|
|
* use flags to limit the type of information searched for */
|
|
GstMediaInfoStream *
|
|
gst_media_info_read (GstMediaInfo *info, const char *location, guint16 flags)
|
|
{
|
|
GstMediaInfoPriv *priv = info->priv;
|
|
GstMediaInfoStream *stream = NULL;
|
|
GstElement *decoder = NULL;
|
|
gchar *mime;
|
|
int i;
|
|
|
|
GST_DEBUG ("DEBUG: gst_media_info_read: start");
|
|
gmi_reset (info); /* reset all structs */
|
|
priv->location = g_strdup (location);
|
|
priv->flags = flags;
|
|
|
|
if (!gmip_find_type (priv)) return NULL;
|
|
|
|
mime = g_strdup (gst_structure_get_name (
|
|
gst_caps_get_structure(priv->type, 0)));
|
|
GST_DEBUG ("mime type: %s", mime);
|
|
|
|
/* c) figure out decoding pipeline */
|
|
//FIXMEdecoder = gmi_get_pipeline_description (info, mime);
|
|
g_print ("DEBUG: using decoder %s\n", gst_element_get_name (decoder));
|
|
|
|
/* if it's NULL, then that's a sign we can't decode it */
|
|
if (decoder == NULL)
|
|
{
|
|
g_warning ("Can't find a decoder for type %s\n", mime);
|
|
return NULL;
|
|
}
|
|
|
|
/* b) create media info stream object */
|
|
priv->stream = gmi_stream_new ();
|
|
priv->stream->mime = mime;
|
|
priv->stream->path = priv->location;
|
|
|
|
/* install this decoder in the pipeline */
|
|
|
|
//FIXME: use new systemgmi_set_decoder (info, decoder);
|
|
|
|
/* collect total stream properties */
|
|
/* d) get all stream properties */
|
|
gmip_find_stream (priv);
|
|
|
|
/* e) if we have multiple tracks, loop over them; if not, just get
|
|
* metadata and return it */
|
|
GST_DEBUG ("num tracks %ld", priv->stream->length_tracks);
|
|
for (i = 0; i < priv->stream->length_tracks; ++i)
|
|
{
|
|
priv->current_track = gmi_track_new ();
|
|
if (i > 0)
|
|
{
|
|
GST_DEBUG ("seeking to track %d", i);
|
|
gmi_seek_to_track (info, i);
|
|
}
|
|
if (flags & GST_MEDIA_INFO_METADATA)
|
|
gmip_find_track_metadata (priv);
|
|
if (flags & GST_MEDIA_INFO_STREAMINFO)
|
|
gmip_find_track_streaminfo (priv);
|
|
if (flags & GST_MEDIA_INFO_FORMAT)
|
|
gmip_find_track_format (priv);
|
|
priv->stream->tracks = g_list_append (priv->stream->tracks,
|
|
priv->current_track);
|
|
priv->current_track = NULL;
|
|
}
|
|
|
|
/* please return it */
|
|
stream = priv->stream;
|
|
priv->stream = NULL;
|
|
return stream;
|
|
}
|
|
|
|
|
|
/*
|
|
* FIXME: reset ?
|
|
gboolean gst_media_info_write (GstMediaInfo *media_info,
|
|
const char *location,
|
|
GstCaps *media_info);
|
|
*/
|