2008-09-02 12:04:32 +00:00
|
|
|
/*
|
|
|
|
* This library is licensed under 2 different licenses and you
|
|
|
|
* can choose to use it under the terms of either one of them. The
|
|
|
|
* two licenses are the MPL 1.1 and the LGPL.
|
|
|
|
*
|
|
|
|
* MPL:
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/.
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing rights and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* LGPL:
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is Fluendo MPEG Demuxer plugin.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Fluendo, S.L.
|
|
|
|
* Portions created by Fluendo, S.L. are Copyright (C) 2005
|
|
|
|
* Fluendo, S.L. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Wim Taymans <wim@fluendo.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_FLUPS_DEMUX_H__
|
|
|
|
#define __GST_FLUPS_DEMUX_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/base/gstadapter.h>
|
|
|
|
|
|
|
|
#include "gstpesfilter.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_FLUPS_DEMUX (gst_flups_demux_get_type())
|
|
|
|
#define GST_FLUPS_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FLUPS_DEMUX,GstFluPSDemux))
|
|
|
|
#define GST_FLUPS_DEMUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FLUPS_DEMUX,GstFluPSDemuxClass))
|
|
|
|
#define GST_FLUPS_DEMUX_GET_CLASS(klass) (G_TYPE_INSTANCE_GET_CLASS((klass),GST_TYPE_FLUPS_DEMUX,GstFluPSDemuxClass))
|
|
|
|
#define GST_IS_FLUPS_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FLUPS_DEMUX))
|
|
|
|
#define GST_IS_FLUPS_DEMUX_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FLUPS_DEMUX))
|
|
|
|
typedef struct _GstFluPSStream GstFluPSStream;
|
|
|
|
typedef struct _GstFluPSDemux GstFluPSDemux;
|
|
|
|
typedef struct _GstFluPSDemuxClass GstFluPSDemuxClass;
|
|
|
|
|
|
|
|
#define GST_FLUPS_DEMUX_MAX_STREAMS 256
|
|
|
|
#define GST_FLUPS_DEMUX_MAX_PSM 256
|
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-09-02 12:04:32 +00:00
|
|
|
GST_FLUPS_DEMUX_SYNC_AUTO = 0,
|
|
|
|
GST_FLUPS_DEMUX_SYNC_SCR = 1,
|
|
|
|
GST_FLUPS_DEMUX_SYNC_DTS = 2
|
|
|
|
} GstFluPSDemuxSync;
|
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-09-02 12:04:32 +00:00
|
|
|
STATE_FLUPS_DEMUX_NEED_SYNC,
|
|
|
|
STATE_FLUPS_DEMUX_SYNCED,
|
|
|
|
STATE_FLUPS_DEMUX_NEED_MORE_DATA,
|
|
|
|
} GstFluPSDemuxState;
|
|
|
|
|
|
|
|
/* Information associated with a single FluPS stream. */
|
2009-02-02 22:12:07 +00:00
|
|
|
struct _GstFluPSStream
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
2008-09-02 12:04:32 +00:00
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
gint id;
|
|
|
|
gint type;
|
|
|
|
gint size_bound;
|
2008-09-02 12:04:32 +00:00
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
gboolean discont;
|
|
|
|
gboolean notlinked;
|
|
|
|
gboolean need_segment;
|
2008-09-02 12:04:32 +00:00
|
|
|
};
|
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
struct _GstFluPSDemux
|
|
|
|
{
|
|
|
|
GstElement parent;
|
|
|
|
|
|
|
|
GstPad *sinkpad;
|
|
|
|
gboolean random_access; /* If we operate in pull mode */
|
|
|
|
|
|
|
|
GstAdapter *adapter;
|
|
|
|
GstAdapter *rev_adapter;
|
|
|
|
guint64 adapter_offset;
|
|
|
|
guint32 last_sync_code;
|
|
|
|
GstPESFilter filter;
|
|
|
|
|
|
|
|
gint64 mux_rate;
|
|
|
|
guint64 first_scr;
|
|
|
|
guint64 last_scr;
|
|
|
|
guint64 first_dts;
|
|
|
|
guint64 base_time;
|
|
|
|
guint64 current_scr;
|
|
|
|
guint64 next_scr;
|
|
|
|
guint64 bytes_since_scr;
|
|
|
|
gint64 scr_adjust;
|
|
|
|
guint64 scr_rate_n;
|
|
|
|
guint64 scr_rate_d;
|
|
|
|
guint64 first_scr_offset;
|
|
|
|
guint64 last_scr_offset;
|
2009-02-04 15:11:23 +00:00
|
|
|
guint64 cur_scr_offset;
|
2009-02-02 22:12:07 +00:00
|
|
|
|
|
|
|
guint64 first_pts;
|
|
|
|
guint64 last_pts;
|
|
|
|
|
|
|
|
gint16 psm[GST_FLUPS_DEMUX_MAX_PSM];
|
|
|
|
|
|
|
|
GstSegment sink_segment;
|
|
|
|
GstSegment src_segment;
|
2008-09-02 12:04:32 +00:00
|
|
|
|
|
|
|
/* stream output */
|
2009-02-02 22:12:07 +00:00
|
|
|
GstFluPSStream *current_stream;
|
|
|
|
guint64 next_pts;
|
|
|
|
guint64 next_dts;
|
|
|
|
GstFluPSStream **streams;
|
|
|
|
gboolean need_no_more_pads;
|
2008-09-02 12:04:32 +00:00
|
|
|
|
|
|
|
/* Indicates an MPEG-2 stream */
|
|
|
|
gboolean is_mpeg2_pack;
|
|
|
|
|
|
|
|
/* Language codes event is stored when a dvd-lang-codes
|
|
|
|
* custom event arrives from upstream */
|
2009-02-02 22:12:07 +00:00
|
|
|
GstEvent *lang_codes;
|
2008-09-02 12:04:32 +00:00
|
|
|
};
|
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
struct _GstFluPSDemuxClass
|
|
|
|
{
|
2008-09-02 12:04:32 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
|
|
|
|
GstPadTemplate *sink_template;
|
|
|
|
GstPadTemplate *video_template;
|
|
|
|
GstPadTemplate *audio_template;
|
|
|
|
GstPadTemplate *private_template;
|
|
|
|
};
|
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
GType gst_flups_demux_get_type (void);
|
2008-09-02 12:04:32 +00:00
|
|
|
|
2009-02-02 22:12:07 +00:00
|
|
|
gboolean gst_flups_demux_plugin_init (GstPlugin * plugin);
|
2008-09-02 12:04:32 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_FLUPS_DEMUX_H__ */
|