2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-23 06:03:21 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_MPEG2DEC_H__
|
|
|
|
#define __GST_MPEG2DEC_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2009-05-12 09:44:13 +00:00
|
|
|
#include <gst/video/video.h>
|
2002-12-15 21:48:34 +00:00
|
|
|
#include <mpeg2.h>
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-19 07:45:11 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:53 +00:00
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
#define GST_TYPE_MPEG2DEC \
|
|
|
|
(gst_mpeg2dec_get_type())
|
|
|
|
#define GST_MPEG2DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MPEG2DEC,GstMpeg2dec))
|
|
|
|
#define GST_MPEG2DEC_CLASS(klass) \
|
2006-06-01 21:11:41 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MPEG2DEC,GstMpeg2decClass))
|
2001-12-23 06:03:21 +00:00
|
|
|
#define GST_IS_MPEG2DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MPEG2DEC))
|
2006-06-01 21:11:41 +00:00
|
|
|
#define GST_IS_MPEG2DEC_CLASS(klass) \
|
2001-12-23 06:03:21 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MPEG2DEC))
|
2004-03-15 16:32:53 +00:00
|
|
|
|
2007-12-03 19:05:20 +00:00
|
|
|
#define MPEG_TIME_TO_GST_TIME(time) ((time) == -1 ? -1 : ((time) * (GST_MSECOND/10)) / G_GINT64_CONSTANT(9))
|
|
|
|
#define GST_TIME_TO_MPEG_TIME(time) ((time) == -1 ? -1 : ((time) * G_GINT64_CONSTANT(9)) / (GST_MSECOND/10))
|
2004-03-15 16:32:53 +00:00
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
typedef struct _GstMpeg2dec GstMpeg2dec;
|
|
|
|
typedef struct _GstMpeg2decClass GstMpeg2decClass;
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MPEG2DEC_FORMAT_NONE,
|
2004-03-31 06:31:47 +00:00
|
|
|
MPEG2DEC_FORMAT_I422,
|
2002-12-05 00:29:11 +00:00
|
|
|
MPEG2DEC_FORMAT_I420,
|
2008-11-25 03:44:06 +00:00
|
|
|
MPEG2DEC_FORMAT_YV12,
|
|
|
|
MPEG2DEC_FORMAT_Y444
|
2002-12-05 00:29:11 +00:00
|
|
|
} Mpeg2decFormat;
|
|
|
|
|
2004-03-15 16:32:53 +00:00
|
|
|
typedef enum
|
2002-12-26 22:46:26 +00:00
|
|
|
{
|
2005-12-06 19:48:07 +00:00
|
|
|
MPEG2DEC_DISC_NONE = 0,
|
2002-12-26 22:46:26 +00:00
|
|
|
MPEG2DEC_DISC_NEW_PICTURE,
|
2004-03-31 06:31:47 +00:00
|
|
|
MPEG2DEC_DISC_NEW_KEYFRAME
|
2002-12-26 22:46:26 +00:00
|
|
|
} DiscontState;
|
|
|
|
|
2004-03-15 16:32:53 +00:00
|
|
|
struct _GstMpeg2dec {
|
2005-12-06 19:48:07 +00:00
|
|
|
GstElement element;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
/* pads */
|
2005-12-06 19:48:07 +00:00
|
|
|
GstPad *sinkpad,
|
|
|
|
*srcpad,
|
|
|
|
*userdatapad;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2005-12-06 19:48:07 +00:00
|
|
|
mpeg2dec_t *decoder;
|
2005-10-26 16:45:04 +00:00
|
|
|
const mpeg2_info_t *info;
|
|
|
|
|
2005-12-06 19:48:07 +00:00
|
|
|
gboolean closed;
|
|
|
|
gboolean have_fbuf;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
ext/mpeg2dec/gstmpeg2dec.*: Fix padtemplate as we can now do fractional framerates.
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
(gst_mpeg2dec_negotiate_format), (init_dummybuf),
(handle_sequence), (handle_picture), (handle_slice),
(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
* ext/mpeg2dec/gstmpeg2dec.h:
Fix padtemplate as we can now do fractional framerates.
Small cleanups.
Use GstSegment.
Add simple frame dropping QoS.
Precalc buffer output sizes and UV offsets.
Always give libmpeg2 a valid fbuf when it wants one.
don't trust libmpeg to discard our buffers but manage it
ourselves.
Fixes #343627, #327350, #335288
2006-06-07 16:15:42 +00:00
|
|
|
/* buffer management */
|
|
|
|
guint ip_bufpos;
|
2006-06-07 17:05:48 +00:00
|
|
|
GstBuffer *ip_buffers[4];
|
|
|
|
GstBuffer *b_buffer;
|
2005-02-04 13:43:28 +00:00
|
|
|
|
2005-12-06 19:48:07 +00:00
|
|
|
DiscontState discont_state;
|
ext/a52dec/gsta52dec.c: Add some debug output. Check that a discont has a valid time associated.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_push),
(gst_a52dec_handle_event), (gst_a52dec_chain):
Add some debug output. Check that a discont has a valid
time associated.
* ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
(gst_alsa_sink_loop):
Ignore TAG events. A little extra debug for broken timestamps.
* ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
(dvdnavsrc_change_state):
Ensure we send a discont to engage the link before we send any
other events.
* ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
(dvdreadsrc_finalize), (_close), (_open), (_seek_title),
(_seek_chapter), (seek_sector), (dvdreadsrc_get),
(dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
dvd://title works in totem because typefinding sends a seek that ends
up going back to chapter 1 regardless.
* ext/mpeg2dec/gstmpeg2dec.c:
* ext/mpeg2dec/gstmpeg2dec.h:
Output correct timestamps and handle disconts.
* ext/ogg/gstoggdemux.c: (get_relative):
Small guard against a null dereference.
* ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
(gst_textoverlay_set_property):
Free memory when done. Don't call gst_event_filler_get_duration on
EOS events. Use GST_LOG and GST_WARNING instead of g_message and
g_warning.
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
(draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
(gst_sw_srclink), (gst_smoothwave_chain):
Draw solid lines, prettier colours.
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
Add a default palette that'll work for some movies.
* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
(gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
(gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
* gst/mpegstream/gstdvddemux.h:
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
(gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
(gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
* gst/mpegstream/gstmpegparse.h:
Use PTM/NAV events when for timestamp adjustment when connected to
dvdnavsrc. Don't use many discont events where one suffices.
* gst/playback/gstplaybasebin.c: (group_destroy),
(gen_preroll_element), (gst_play_base_bin_add_element):
* gst/playback/gstplaybasebin.h:
Make sure we remove subtitles from the same bin we put them in.
* gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
(gst_subparse_buffer_format_autodetect),
(gst_subparse_change_state):
Fix some memleaks and invalid accesses.
* gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
(oggskel_type_find), (cmml_type_find), (plugin_init):
Some typefind functions for Annodex v3.0 files
* gst/wavparse/gstwavparse.h:
GstRiffReadClass is the correct parent class.
2005-01-25 15:34:08 +00:00
|
|
|
|
|
|
|
/* the timestamp of the next frame */
|
|
|
|
GstClockTime next_time;
|
ext/mpeg2dec/gstmpeg2dec.*: Fix padtemplate as we can now do fractional framerates.
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
(gst_mpeg2dec_negotiate_format), (init_dummybuf),
(handle_sequence), (handle_picture), (handle_slice),
(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
* ext/mpeg2dec/gstmpeg2dec.h:
Fix padtemplate as we can now do fractional framerates.
Small cleanups.
Use GstSegment.
Add simple frame dropping QoS.
Precalc buffer output sizes and UV offsets.
Always give libmpeg2 a valid fbuf when it wants one.
don't trust libmpeg to discard our buffers but manage it
ourselves.
Fixes #343627, #327350, #335288
2006-06-07 16:15:42 +00:00
|
|
|
GstSegment segment;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
/* video state */
|
2002-12-05 00:29:11 +00:00
|
|
|
Mpeg2decFormat format;
|
2005-12-06 19:48:07 +00:00
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gint decoded_width;
|
|
|
|
gint decoded_height;
|
|
|
|
gint pixel_width;
|
|
|
|
gint pixel_height;
|
|
|
|
gint frame_rate_code;
|
|
|
|
gint64 total_frames;
|
|
|
|
gint64 frame_period;
|
2009-05-12 09:44:13 +00:00
|
|
|
gboolean interlaced;
|
ext/mpeg2dec/gstmpeg2dec.*: Fix padtemplate as we can now do fractional framerates.
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
(gst_mpeg2dec_negotiate_format), (init_dummybuf),
(handle_sequence), (handle_picture), (handle_slice),
(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
* ext/mpeg2dec/gstmpeg2dec.h:
Fix padtemplate as we can now do fractional framerates.
Small cleanups.
Use GstSegment.
Add simple frame dropping QoS.
Precalc buffer output sizes and UV offsets.
Always give libmpeg2 a valid fbuf when it wants one.
don't trust libmpeg to discard our buffers but manage it
ourselves.
Fixes #343627, #327350, #335288
2006-06-07 16:15:42 +00:00
|
|
|
|
|
|
|
gint size;
|
|
|
|
gint u_offs;
|
|
|
|
gint v_offs;
|
2006-11-03 09:52:12 +00:00
|
|
|
guint8 *dummybuf[4];
|
ext/mpeg2dec/gstmpeg2dec.*: Fix padtemplate as we can now do fractional framerates.
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
(gst_mpeg2dec_negotiate_format), (init_dummybuf),
(handle_sequence), (handle_picture), (handle_slice),
(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
* ext/mpeg2dec/gstmpeg2dec.h:
Fix padtemplate as we can now do fractional framerates.
Small cleanups.
Use GstSegment.
Add simple frame dropping QoS.
Precalc buffer output sizes and UV offsets.
Always give libmpeg2 a valid fbuf when it wants one.
don't trust libmpeg to discard our buffers but manage it
ourselves.
Fixes #343627, #327350, #335288
2006-06-07 16:15:42 +00:00
|
|
|
|
2005-02-04 13:43:28 +00:00
|
|
|
|
2006-02-27 14:49:05 +00:00
|
|
|
guint64 offset;
|
2005-12-06 19:48:07 +00:00
|
|
|
gint fps_n;
|
|
|
|
gint fps_d;
|
|
|
|
gboolean need_sequence;
|
2004-03-15 16:32:53 +00:00
|
|
|
|
2008-09-28 17:33:43 +00:00
|
|
|
#ifndef GST_DISABLE_INDEX
|
2005-12-06 19:48:07 +00:00
|
|
|
GstIndex *index;
|
|
|
|
gint index_id;
|
2008-09-28 17:33:43 +00:00
|
|
|
#endif
|
2006-02-27 14:49:05 +00:00
|
|
|
|
|
|
|
gint error_count;
|
2006-11-21 12:15:58 +00:00
|
|
|
gboolean can_allocate_aligned;
|
ext/mpeg2dec/gstmpeg2dec.*: Fix padtemplate as we can now do fractional framerates.
Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
(gst_mpeg2dec_negotiate_format), (init_dummybuf),
(handle_sequence), (handle_picture), (handle_slice),
(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
* ext/mpeg2dec/gstmpeg2dec.h:
Fix padtemplate as we can now do fractional framerates.
Small cleanups.
Use GstSegment.
Add simple frame dropping QoS.
Precalc buffer output sizes and UV offsets.
Always give libmpeg2 a valid fbuf when it wants one.
don't trust libmpeg to discard our buffers but manage it
ourselves.
Fixes #343627, #327350, #335288
2006-06-07 16:15:42 +00:00
|
|
|
|
|
|
|
/* QoS stuff */ /* with LOCK*/
|
|
|
|
gdouble proportion;
|
|
|
|
GstClockTime earliest_time;
|
2008-01-10 15:24:08 +00:00
|
|
|
|
|
|
|
/* gather/decode queues for reverse playback */
|
|
|
|
GList *gather;
|
|
|
|
GList *decode;
|
|
|
|
GList *queued;
|
2008-10-14 12:51:41 +00:00
|
|
|
|
|
|
|
/* whether we have a pixel aspect ratio from the sink caps */
|
|
|
|
gboolean have_par;
|
2001-12-23 06:03:21 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:53 +00:00
|
|
|
struct _GstMpeg2decClass {
|
2001-12-23 06:03:21 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2004-03-15 16:32:53 +00:00
|
|
|
GType gst_mpeg2dec_get_type(void);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-19 07:45:11 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 16:32:53 +00:00
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
#endif /* __GST_MPEG2DEC_H__ */
|