2003-05-29 14:35:24 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2003 Martin Soto <martinsoto@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* dxr3videosink.c: Video sink for em8300 based cards.
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-05-29 14:35:24 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:13 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-05-29 14:35:24 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <linux/em8300.h>
|
|
|
|
|
2004-01-20 13:34:41 +00:00
|
|
|
#include <gst/gst-i18n-plugin.h>
|
2003-05-29 14:35:24 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "dxr3videosink.h"
|
|
|
|
#include "dxr3marshal.h"
|
|
|
|
|
|
|
|
#include "dxr3common.h"
|
|
|
|
|
|
|
|
/* Dxr3VideoSink signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-05-29 14:35:24 +00:00
|
|
|
SIGNAL_FLUSHED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-05-29 14:35:24 +00:00
|
|
|
ARG_0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Possible states for the MPEG start code scanner. */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-03-15 19:32:27 +00:00
|
|
|
SCAN_STATE_WAITING, /* Waiting for a code. */
|
|
|
|
SCAN_STATE_0, /* 0 seen. */
|
|
|
|
SCAN_STATE_00, /* 00 seen. */
|
|
|
|
SCAN_STATE_001 /* 001 seen. */
|
2003-05-29 14:35:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Possible states for the MPEG sequence parser. */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-03-15 19:32:27 +00:00
|
|
|
PARSE_STATE_WAITING, /* Waiting for the start of a sequence. */
|
|
|
|
PARSE_STATE_START, /* Start of sequence seen. */
|
2004-05-21 23:53:08 +00:00
|
|
|
PARSE_STATE_PICTURE /* Picture start seen. */
|
2003-05-29 14:35:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Relevant mpeg start codes. */
|
|
|
|
#define START_CODE_PICTURE 0x00
|
|
|
|
#define START_CODE_SEQUENCE_HEADER 0xB3
|
|
|
|
#define START_CODE_SEQUENCE_END 0xB7
|
|
|
|
|
Fix caps breakage after Dave's caps branch merge.
Original commit message from CVS:
2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
* ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
(gst_divxdec_init), (gst_divxdec_negotiate):
* ext/divx/gstdivxdec.h:
* ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
(gst_divxenc_init):
* ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
(gst_faac_sinkconnect), (gst_faac_srcconnect):
* ext/mpeg2enc/gstmpeg2enc.cc:
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
(dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
* sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
(dxr3spusink_init):
* sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
(dxr3videosink_init):
Fix caps breakage after Dave's caps branch merge.
2003-12-23 22:50:06 +00:00
|
|
|
static GstStaticPadTemplate dxr3videosink_sink_factory =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/mpeg, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"mpegversion = (int) { 1, 2 }, " "systemstream = (boolean) FALSE"
|
|
|
|
/* width/height/framerate omitted, we don't
|
|
|
|
* need a parsed stream */
|
2004-03-14 22:34:33 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
static void dxr3videosink_class_init (Dxr3VideoSinkClass * klass);
|
|
|
|
static void dxr3videosink_base_init (Dxr3VideoSinkClass * klass);
|
|
|
|
static void dxr3videosink_init (Dxr3VideoSink * dxr3videosink);
|
|
|
|
|
|
|
|
static void dxr3videosink_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void dxr3videosink_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static gboolean dxr3videosink_open (Dxr3VideoSink * sink);
|
|
|
|
static void dxr3videosink_close (Dxr3VideoSink * sink);
|
2011-11-10 11:11:21 +00:00
|
|
|
static gboolean dxr3videosink_set_clock (GstElement * element,
|
|
|
|
GstClock * clock);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
static void dxr3videosink_reset_parser (Dxr3VideoSink * sink);
|
|
|
|
static int dxr3videosink_next_start_code (Dxr3VideoSink * sink);
|
|
|
|
static void dxr3videosink_discard_data (Dxr3VideoSink * sink, guint cut);
|
|
|
|
static void dxr3videosink_write_data (Dxr3VideoSink * sink, guint cut);
|
|
|
|
static void dxr3videosink_parse_data (Dxr3VideoSink * sink);
|
|
|
|
|
|
|
|
static gboolean dxr3videosink_handle_event (GstPad * pad, GstEvent * event);
|
|
|
|
static void dxr3videosink_chain (GstPad * pad, GstData * _data);
|
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
static GstStateChangeReturn dxr3videosink_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2005-12-06 19:55:58 +00:00
|
|
|
/* static void dxr3videosink_wait (Dxr3VideoSink *sink, */
|
2003-05-29 14:35:24 +00:00
|
|
|
/* GstClockTime time); */
|
2004-03-14 22:34:33 +00:00
|
|
|
static int dxr3videosink_mvcommand (Dxr3VideoSink * sink, int command);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void dxr3videosink_flushed (Dxr3VideoSink * sink);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
static guint dxr3videosink_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
|
|
|
|
extern GType
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_get_type (void)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
static GType dxr3videosink_type = 0;
|
|
|
|
|
|
|
|
if (!dxr3videosink_type) {
|
|
|
|
static const GTypeInfo dxr3videosink_info = {
|
|
|
|
sizeof (Dxr3VideoSinkClass),
|
2003-11-02 17:13:40 +00:00
|
|
|
(GBaseInitFunc) dxr3videosink_base_init,
|
2003-05-29 14:35:24 +00:00
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) dxr3videosink_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (Dxr3VideoSink),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) dxr3videosink_init,
|
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
dxr3videosink_type = g_type_register_static (GST_TYPE_ELEMENT,
|
2004-03-15 19:32:27 +00:00
|
|
|
"Dxr3VideoSink", &dxr3videosink_info, 0);
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return dxr3videosink_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-02 17:13:40 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_base_init (Dxr3VideoSinkClass * klass)
|
2003-11-02 17:13:40 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
2016-03-04 06:50:26 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&dxr3videosink_sink_factory);
|
2012-10-17 16:34:26 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
2010-03-18 16:30:26 +00:00
|
|
|
"dxr3/Hollywood+ mpeg decoder board video element", "Sink/Video",
|
|
|
|
"Feeds MPEG2 video to Sigma Designs em8300 based boards",
|
|
|
|
"Martin Soto <martinsoto@users.sourceforge.net>");
|
2003-11-02 17:13:40 +00:00
|
|
|
}
|
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_class_init (Dxr3VideoSinkClass * klass)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2006-04-08 21:48:01 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
dxr3videosink_signals[SIGNAL_FLUSHED] =
|
2004-03-14 22:34:33 +00:00
|
|
|
g_signal_new ("flushed", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (Dxr3VideoSinkClass, flushed),
|
|
|
|
NULL, NULL, dxr3_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
klass->flushed = dxr3videosink_flushed;
|
|
|
|
|
|
|
|
gobject_class->set_property = dxr3videosink_set_property;
|
|
|
|
gobject_class->get_property = dxr3videosink_get_property;
|
|
|
|
|
|
|
|
gstelement_class->change_state = dxr3videosink_change_state;
|
|
|
|
gstelement_class->set_clock = dxr3videosink_set_clock;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
|
|
|
dxr3videosink_init (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
|
2007-06-22 10:46:33 +00:00
|
|
|
pad = gst_pad_new_from_static_template (&dxr3videosink_sink_factory, "sink");
|
2003-05-29 14:35:24 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (sink), pad);
|
|
|
|
gst_pad_set_chain_function (pad, dxr3videosink_chain);
|
|
|
|
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
GST_OBJECT_FLAG_SET (GST_ELEMENT (sink), GST_ELEMENT_EVENT_AWARE);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
sink->card_number = 0;
|
|
|
|
|
|
|
|
sink->video_filename = NULL;
|
|
|
|
sink->video_fd = -1;
|
|
|
|
sink->control_filename = NULL;
|
|
|
|
sink->control_fd = -1;
|
|
|
|
|
|
|
|
sink->clock = NULL;
|
|
|
|
|
|
|
|
sink->last_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
|
|
|
sink->cur_buf = NULL;
|
|
|
|
dxr3videosink_reset_parser (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
Dxr3VideoSink *sink;
|
|
|
|
|
|
|
|
sink = DXR3VIDEOSINK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
|
|
|
dxr3videosink_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
Dxr3VideoSink *sink;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
g_return_if_fail (GST_IS_DXR3VIDEOSINK (object));
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
sink = DXR3VIDEOSINK (object);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_open (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
g_return_val_if_fail (!GST_OBJECT_FLAG_IS_SET (sink, DXR3VIDEOSINK_OPEN),
|
|
|
|
FALSE);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
/* Compute the name of the video device file. */
|
|
|
|
sink->video_filename = g_strdup_printf ("/dev/em8300_mv-%d",
|
2004-03-14 22:34:33 +00:00
|
|
|
sink->card_number);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
sink->video_fd = open (sink->video_filename, O_WRONLY);
|
|
|
|
if (sink->video_fd < 0) {
|
2004-01-29 23:20:45 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE,
|
2004-03-15 19:32:27 +00:00
|
|
|
(_("Could not open video device \"%s\" for writing."),
|
|
|
|
sink->video_filename), GST_ERROR_SYSTEM);
|
2003-05-29 14:35:24 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the control device. */
|
|
|
|
sink->control_filename = g_strdup_printf ("/dev/em8300-%d",
|
2004-03-14 22:34:33 +00:00
|
|
|
sink->card_number);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
sink->control_fd = open (sink->control_filename, O_WRONLY);
|
|
|
|
if (sink->control_fd < 0) {
|
2004-01-29 23:20:45 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE,
|
2004-03-15 19:32:27 +00:00
|
|
|
(_("Could not open control device \"%s\" for writing."),
|
|
|
|
sink->control_filename), GST_ERROR_SYSTEM);
|
2003-05-29 14:35:24 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
GST_OBJECT_FLAG_SET (sink, DXR3VIDEOSINK_OPEN);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_close (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
g_return_if_fail (GST_OBJECT_FLAG_IS_SET (sink, DXR3VIDEOSINK_OPEN));
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (close (sink->video_fd) != 0) {
|
2004-01-29 23:20:45 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, CLOSE,
|
2004-03-15 19:32:27 +00:00
|
|
|
(_("Could not close video device \"%s\"."), sink->video_filename),
|
|
|
|
GST_ERROR_SYSTEM);
|
2003-05-29 14:35:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (close (sink->control_fd) != 0) {
|
2004-01-29 23:20:45 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, CLOSE,
|
2004-03-15 19:32:27 +00:00
|
|
|
(_("Could not close control device \"%s\"."), sink->control_filename),
|
|
|
|
GST_ERROR_SYSTEM);
|
2003-05-29 14:35:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
GST_OBJECT_FLAG_UNSET (sink, DXR3VIDEOSINK_OPEN);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
free (sink->video_filename);
|
|
|
|
sink->video_filename = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-10 11:11:21 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_set_clock (GstElement * element, GstClock * clock)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
Dxr3VideoSink *src = DXR3VIDEOSINK (element);
|
|
|
|
|
|
|
|
src->clock = clock;
|
2011-11-10 11:11:21 +00:00
|
|
|
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->set_clock (element, clock);
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_reset_parser (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
if (sink->cur_buf != NULL) {
|
|
|
|
gst_buffer_unref (sink->cur_buf);
|
|
|
|
sink->cur_buf = NULL;
|
|
|
|
}
|
|
|
|
sink->cur_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
|
|
|
sink->scan_state = SCAN_STATE_WAITING;
|
|
|
|
sink->scan_pos = 0;
|
|
|
|
|
|
|
|
sink->parse_state = PARSE_STATE_WAITING;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_next_start_code (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
guchar c;
|
|
|
|
|
|
|
|
g_return_val_if_fail (sink->cur_buf != NULL, -1);
|
|
|
|
|
|
|
|
while (sink->scan_pos < GST_BUFFER_SIZE (sink->cur_buf)) {
|
|
|
|
c = (GST_BUFFER_DATA (sink->cur_buf))[sink->scan_pos];
|
|
|
|
|
|
|
|
switch (sink->scan_state) {
|
2004-03-14 22:34:33 +00:00
|
|
|
case SCAN_STATE_WAITING:
|
2004-03-15 19:32:27 +00:00
|
|
|
if (c == 0x00) {
|
|
|
|
sink->scan_state = SCAN_STATE_0;
|
|
|
|
}
|
|
|
|
break;
|
2004-03-14 22:34:33 +00:00
|
|
|
case SCAN_STATE_0:
|
2004-03-15 19:32:27 +00:00
|
|
|
if (c == 0x00) {
|
|
|
|
sink->scan_state = SCAN_STATE_00;
|
|
|
|
} else {
|
|
|
|
sink->scan_state = SCAN_STATE_WAITING;
|
|
|
|
}
|
|
|
|
break;
|
2004-03-14 22:34:33 +00:00
|
|
|
case SCAN_STATE_00:
|
2004-03-15 19:32:27 +00:00
|
|
|
if (c == 0x01) {
|
|
|
|
sink->scan_state = SCAN_STATE_001;
|
|
|
|
} else if (c != 0x00) {
|
|
|
|
sink->scan_state = SCAN_STATE_WAITING;
|
|
|
|
}
|
|
|
|
break;
|
2004-03-14 22:34:33 +00:00
|
|
|
case SCAN_STATE_001:
|
2004-03-15 19:32:27 +00:00
|
|
|
sink->scan_pos++;
|
|
|
|
sink->scan_state = SCAN_STATE_WAITING;
|
|
|
|
return c;
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sink->scan_pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_discard_data (Dxr3VideoSink * sink, guint cut)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
GstBuffer *sub;
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
g_return_if_fail (sink->cur_buf != NULL);
|
|
|
|
g_assert (cut <= sink->scan_pos);
|
|
|
|
|
|
|
|
size = sink->scan_pos - cut;
|
|
|
|
|
|
|
|
g_return_if_fail (size <= GST_BUFFER_SIZE (sink->cur_buf));
|
|
|
|
|
|
|
|
if (GST_BUFFER_SIZE (sink->cur_buf) == size) {
|
|
|
|
gst_buffer_unref (sink->cur_buf);
|
|
|
|
sink->cur_buf = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
2003-05-29 14:35:24 +00:00
|
|
|
sub = gst_buffer_create_sub (sink->cur_buf, size,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_BUFFER_SIZE (sink->cur_buf)
|
|
|
|
- size);
|
2003-05-29 14:35:24 +00:00
|
|
|
gst_buffer_unref (sink->cur_buf);
|
|
|
|
sink->cur_buf = sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink->scan_state = SCAN_STATE_WAITING;
|
|
|
|
sink->scan_pos = cut;
|
|
|
|
|
|
|
|
sink->cur_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_write_data (Dxr3VideoSink * sink, guint cut)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
guint size, written;
|
|
|
|
guint8 *data;
|
|
|
|
|
|
|
|
g_return_if_fail (sink->cur_buf != NULL);
|
|
|
|
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
if (GST_OBJECT_FLAG_IS_SET (sink, DXR3VIDEOSINK_OPEN)) {
|
2003-05-29 14:35:24 +00:00
|
|
|
if (sink->cur_ts != GST_CLOCK_TIME_NONE) {
|
|
|
|
guint pts;
|
|
|
|
|
|
|
|
/* fprintf (stderr, "------ Video Time %.04f\n", */
|
|
|
|
/* (double) sink->cur_ts / GST_SECOND); */
|
|
|
|
|
|
|
|
pts = (guint) GSTTIME_TO_MPEGTIME (sink->cur_ts);
|
|
|
|
ioctl (sink->video_fd, EM8300_IOCTL_VIDEO_SETPTS, &pts);
|
|
|
|
sink->cur_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = GST_BUFFER_DATA (sink->cur_buf);
|
|
|
|
size = sink->scan_pos - cut;
|
|
|
|
|
|
|
|
g_assert (size <= GST_BUFFER_SIZE (sink->cur_buf));
|
|
|
|
|
|
|
|
/* We should always write data that corresponds to whole MPEG
|
|
|
|
video sintactical elements. They should always start with an
|
|
|
|
MPEG start code. */
|
|
|
|
g_assert (size >= 4 && data[0] == 0 && data[1] == 0 && data[2] == 1);
|
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
written = write (sink->video_fd, data, size);
|
|
|
|
if (written < 0) {
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, WRITE,
|
|
|
|
(_("Could not write to device \"%s\"."), sink->video_filename),
|
|
|
|
GST_ERROR_SYSTEM);
|
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
size = size - written;
|
|
|
|
data = data + written;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
dxr3videosink_discard_data (sink, cut);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_parse_data (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
int code;
|
|
|
|
|
|
|
|
/* Timestamp handling assumes that timestamps are associated to
|
|
|
|
sequence starts. This seems to be the case, at least for
|
|
|
|
DVDs. */
|
|
|
|
|
|
|
|
code = dxr3videosink_next_start_code (sink);
|
|
|
|
while (code >= 0) {
|
|
|
|
switch (sink->parse_state) {
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
case PARSE_STATE_WAITING:
|
2004-03-15 19:32:27 +00:00
|
|
|
if (code == START_CODE_SEQUENCE_HEADER) {
|
|
|
|
dxr3videosink_discard_data (sink, 4);
|
|
|
|
sink->parse_state = PARSE_STATE_START;
|
|
|
|
sink->cur_ts = sink->last_ts;
|
|
|
|
}
|
|
|
|
break;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
case PARSE_STATE_START:
|
2004-03-15 19:32:27 +00:00
|
|
|
switch (code) {
|
|
|
|
case START_CODE_SEQUENCE_HEADER:
|
|
|
|
dxr3videosink_discard_data (sink, 4);
|
|
|
|
sink->cur_ts = sink->last_ts;
|
|
|
|
break;
|
|
|
|
case START_CODE_SEQUENCE_END:
|
|
|
|
dxr3videosink_discard_data (sink, 0);
|
|
|
|
sink->parse_state = PARSE_STATE_WAITING;
|
|
|
|
break;
|
|
|
|
case START_CODE_PICTURE:
|
|
|
|
sink->parse_state = PARSE_STATE_PICTURE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
case PARSE_STATE_PICTURE:
|
2004-03-15 19:32:27 +00:00
|
|
|
switch (code) {
|
|
|
|
case START_CODE_SEQUENCE_HEADER:
|
|
|
|
dxr3videosink_write_data (sink, 4);
|
|
|
|
sink->parse_state = PARSE_STATE_START;
|
|
|
|
sink->cur_ts = sink->last_ts;
|
|
|
|
break;
|
|
|
|
case START_CODE_SEQUENCE_END:
|
|
|
|
dxr3videosink_write_data (sink, 0);
|
|
|
|
sink->parse_state = PARSE_STATE_WAITING;
|
|
|
|
break;
|
|
|
|
case START_CODE_PICTURE:
|
|
|
|
dxr3videosink_write_data (sink, 4);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
code = dxr3videosink_next_start_code (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sink->parse_state == PARSE_STATE_WAITING) {
|
|
|
|
dxr3videosink_discard_data (sink, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_handle_event (GstPad * pad, GstEvent * event)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
GstEventType type;
|
|
|
|
Dxr3VideoSink *sink;
|
|
|
|
|
|
|
|
sink = DXR3VIDEOSINK (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
type = event ? GST_EVENT_TYPE (event) : GST_EVENT_UNKNOWN;
|
|
|
|
|
|
|
|
switch (type) {
|
2004-03-14 22:34:33 +00:00
|
|
|
case GST_EVENT_EMPTY:
|
|
|
|
//fprintf (stderr, "++++++ Video empty event\n");
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Handle this with a discontinuity or something. */
|
|
|
|
/* Write an MPEG2 sequence end code, to ensure that the card
|
|
|
|
actually displays the last picture. Apparently some DVDs are
|
|
|
|
encoded without proper sequence end codes. */
|
2015-01-21 09:17:04 +00:00
|
|
|
static const guint8 sec[4] = { 0x00, 0x00, 0x01, 0xb7 };
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
if (sink->cur_buf != NULL) {
|
2004-03-15 19:32:27 +00:00
|
|
|
dxr3videosink_write_data (sink, 0);
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
write (sink->video_fd, &sec, 4);
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
//fprintf (stderr, "++++++ Video discont event\n");
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
gint64 time;
|
|
|
|
gboolean has_time;
|
|
|
|
unsigned cur_scr, mpeg_scr, diff;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
has_time = gst_event_discont_get_value (event, GST_FORMAT_TIME, &time);
|
2003-05-29 14:35:24 +00:00
|
|
|
if (has_time) {
|
|
|
|
/* fprintf (stderr, "^^^^^^ Discontinuous event has time %.4f\n", */
|
|
|
|
/* (double) time / GST_SECOND); */
|
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
/* If the SCR in the card is way off, fix it. */
|
|
|
|
ioctl (sink->control_fd, EM8300_IOCTL_SCR_GET, &cur_scr);
|
|
|
|
mpeg_scr = MPEGTIME_TO_DXRTIME (GSTTIME_TO_MPEGTIME (time));
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
diff = cur_scr > mpeg_scr ? cur_scr - mpeg_scr : mpeg_scr - cur_scr;
|
|
|
|
if (diff > 1800) {
|
|
|
|
unsigned zero = 0;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
|
|
|
/* fprintf (stderr, "====== Adjusting SCR from video\n"); */
|
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
ioctl (sink->control_fd, EM8300_IOCTL_SCR_SET, &zero);
|
|
|
|
ioctl (sink->control_fd, EM8300_IOCTL_SCR_SET, &mpeg_scr);
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
2003-05-29 14:35:24 +00:00
|
|
|
/* fprintf (stderr, "^^^^^^ Discontinuous event has no time\n"); */
|
|
|
|
}
|
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
case GST_EVENT_FLUSH:
|
|
|
|
dxr3videosink_reset_parser (sink);
|
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
default:
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
break;
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
|
|
|
dxr3videosink_chain (GstPad * pad, GstData * _data)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
2003-10-08 16:08:19 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2003-05-29 14:35:24 +00:00
|
|
|
Dxr3VideoSink *sink;
|
|
|
|
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
|
|
|
sink = DXR3VIDEOSINK (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
dxr3videosink_handle_event (pad, GST_EVENT (buf));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fprintf (stderr, "^^^^^^ Video block\n"); */
|
|
|
|
|
|
|
|
if (sink->cur_buf == NULL) {
|
|
|
|
sink->cur_buf = buf;
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
2012-03-28 10:49:54 +00:00
|
|
|
sink->cur_buf = gst_buffer_append (sink->cur_buf, buf);
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sink->last_ts = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
|
|
|
dxr3videosink_parse_data (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
dxr3videosink_change_state (GstElement * element, GstStateChange transition)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
2005-09-05 17:20:29 +00:00
|
|
|
g_return_val_if_fail (GST_IS_DXR3VIDEOSINK (element),
|
|
|
|
GST_STATE_CHANGE_FAILURE);
|
2003-05-29 14:35:24 +00:00
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
if (!GST_OBJECT_FLAG_IS_SET (element, DXR3VIDEOSINK_OPEN)) {
|
2004-03-15 19:32:27 +00:00
|
|
|
if (!dxr3videosink_open (DXR3VIDEOSINK (element))) {
|
2005-09-05 17:20:29 +00:00
|
|
|
return GST_STATE_CHANGE_FAILURE;
|
2004-03-15 19:32:27 +00:00
|
|
|
}
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-09-05 17:20:29 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
2003-05-29 14:35:24 +00:00
|
|
|
dxr3videosink_mvcommand (DXR3VIDEOSINK (element), MVCOMMAND_PAUSE);
|
|
|
|
break;
|
2005-09-05 17:20:29 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
2003-05-29 14:35:24 +00:00
|
|
|
dxr3videosink_mvcommand (DXR3VIDEOSINK (element), MVCOMMAND_START);
|
|
|
|
break;
|
2005-09-05 17:20:29 +00:00
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
2003-05-29 14:35:24 +00:00
|
|
|
dxr3videosink_mvcommand (DXR3VIDEOSINK (element), MVCOMMAND_PAUSE);
|
|
|
|
break;
|
2005-09-05 17:20:29 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2003-05-29 14:35:24 +00:00
|
|
|
dxr3videosink_mvcommand (DXR3VIDEOSINK (element), MVCOMMAND_STOP);
|
|
|
|
break;
|
2005-09-05 17:20:29 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
renamed GST_FLAGS macros to GST_OBJECT_FLAGS moved bitshift from macro to enum definition
Original commit message from CVS:
* examples/indexing/indexmpeg.c: (main):
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
(gst_artsdsink_close_audio), (gst_artsdsink_change_state):
* ext/artsd/gstartsdsink.h:
* ext/audiofile/gstafparse.c: (gst_afparse_open_file),
(gst_afparse_close_file):
* ext/audiofile/gstafparse.h:
* ext/audiofile/gstafsink.c: (gst_afsink_open_file),
(gst_afsink_close_file), (gst_afsink_chain),
(gst_afsink_change_state):
* ext/audiofile/gstafsink.h:
* ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
(gst_afsrc_close_file), (gst_afsrc_change_state):
* ext/audiofile/gstafsrc.h:
* ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
* ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_init):
* ext/jack/gstjack.h:
* ext/jack/gstjackbin.c: (gst_jack_bin_init),
(gst_jack_bin_change_state):
* ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
* ext/nas/nassink.c: (gst_nassink_open_audio),
(gst_nassink_close_audio), (gst_nassink_change_state):
* ext/nas/nassink.h:
* ext/polyp/polypsink.c: (gst_polypsink_init):
* ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
* ext/sdl/sdlvideosink.h:
* ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
* ext/sndfile/gstsf.c: (gst_sf_set_property),
(gst_sf_change_state), (gst_sf_release_request_pad),
(gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
* ext/sndfile/gstsf.h:
* ext/swfdec/gstswfdec.c: (gst_swfdec_init):
* ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
* gst/apetag/apedemux.c: (gst_ape_demux_init):
* gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
* gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
* gst/festival/gstfestival.c: (gst_festival_change_state):
* gst/festival/gstfestival.h:
* gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
* gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
(gst_multifilesink_set_location), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state):
* gst/multifilesink/gstmultifilesink.h:
* gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
* sys/cdrom/gstcdplayer.c: (cdplayer_init):
* sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
(dxr3audiosink_open), (dxr3audiosink_close),
(dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
(dxr3audiosink_change_state):
* sys/dxr3/dxr3audiosink.h:
* sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
(dxr3spusink_close), (dxr3spusink_chain),
(dxr3spusink_change_state):
* sys/dxr3/dxr3spusink.h:
* sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
(dxr3videosink_open), (dxr3videosink_close),
(dxr3videosink_write_data), (dxr3videosink_change_state):
* sys/dxr3/dxr3videosink.h:
* sys/glsink/glimagesink.c: (gst_glimagesink_init):
* sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
(gst_qcamsrc_open), (gst_qcamsrc_close):
* sys/qcam/gstqcamsrc.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
* sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
(gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
(gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
* sys/vcd/vcdsrc.h:
renamed GST_FLAGS macros to GST_OBJECT_FLAGS
moved bitshift from macro to enum definition
2005-10-12 14:29:55 +00:00
|
|
|
if (GST_OBJECT_FLAG_IS_SET (element, DXR3VIDEOSINK_OPEN)) {
|
2004-03-15 19:32:27 +00:00
|
|
|
dxr3videosink_close (DXR3VIDEOSINK (element));
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state) {
|
2005-09-05 17:20:29 +00:00
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
return GST_STATE_CHANGE_SUCCESS;
|
2003-05-29 14:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/**
|
|
|
|
* dxr3videosink_wait:
|
2005-11-09 01:04:05 +00:00
|
|
|
*
|
2003-05-29 14:35:24 +00:00
|
|
|
* Make the sink wait the specified amount of time.
|
|
|
|
*/
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_wait (Dxr3VideoSink * sink, GstClockTime time)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
GstClockID id;
|
|
|
|
GstClockTimeDiff jitter;
|
|
|
|
GstClockReturn ret;
|
|
|
|
GstClockTime current_time = gst_clock_get_time (sink->clock);
|
|
|
|
|
|
|
|
id = gst_clock_new_single_shot_id (sink->clock, current_time + time);
|
|
|
|
ret = gst_clock_id_wait (id, &jitter);
|
|
|
|
gst_clock_id_free (id);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dxr3videosink_mvcommand
|
|
|
|
*
|
|
|
|
* Send an MVCOMMAND to the card.
|
|
|
|
*/
|
|
|
|
static int
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_mvcommand (Dxr3VideoSink * sink, int command)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
em8300_register_t regs;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
regs.microcode_register = 1;
|
|
|
|
regs.reg = 0;
|
|
|
|
regs.val = command;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-05-29 14:35:24 +00:00
|
|
|
return ioctl (sink->control_fd, EM8300_IOCTL_WRITEREG, ®s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dxr3videosink_flushed:
|
|
|
|
*
|
|
|
|
* Default do nothing implementation for the "flushed" signal. The
|
|
|
|
* "flushed" signal will be fired right after flushing the hardware
|
|
|
|
* queues due to a received flush event
|
|
|
|
*/
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dxr3videosink_flushed (Dxr3VideoSink * sink)
|
2003-05-29 14:35:24 +00:00
|
|
|
{
|
|
|
|
/* Do nothing. */
|
|
|
|
}
|