mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
d04099240b
Original commit message from CVS: 2001-12-14 Michael Meeks <michael@ximian.com> * gst/gst.c (gst_main, gst_main_quit): upd. * gst/gstutils.c (gst_util_has_arg): impl. (gst_util_get_int64_arg): impl. * plugins/mpeg2/video/gstmpeg2play.c (gst_mpeg2play_class_init): min frames per sec = 0. * plugins/mikmod/gstmikmod.c (gst_mikmod_class_init): s/16bit/use16bit/ properties can't begin with a non alpha. * tools/gstreamer-guilaunch.c: fresh from the ministy of nasty hacks. * tools/Makefile.am: enable gstreamer-guilaunch for Gnome 2.0 * tools/gstreamer-launch.c (main): upd. (idle_func): quit the mainloop.
96 lines
2.7 KiB
C
96 lines
2.7 KiB
C
#ifndef __GSTPLAY_H__
|
|
#define __GSTPLAY_H__
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef USE_GLIB2
|
|
#define gst_glade_xml_new(path,misc) (glade_xml_new (path "2", (misc), NULL))
|
|
#else
|
|
#define gst_glade_xml_new(path,misc) (glade_xml_new (path, (misc)))
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
#include <gtk/gtkhbox.h>
|
|
|
|
#define GST_TYPE_PLAY (gst_play_get_type ())
|
|
#define GST_PLAY(obj) (GTK_CHECK_CAST ((obj), GST_TYPE_PLAY, GstPlay))
|
|
#define GST_PLAY_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GST_TYPE_PLAY, GstPlayClass))
|
|
#define GST_IS_PLAY(obj) (GTK_CHECK_TYPE ((obj), GST_TYPE_PLAY))
|
|
#define GST_IS_PLAY_CLASS(obj) (GTK_CHECK_CLASS_TYPE ((klass), GST_TYPE_PLAY))
|
|
|
|
typedef struct _GstPlay GstPlay;
|
|
typedef struct _GstPlayClass GstPlayClass;
|
|
|
|
typedef enum {
|
|
GST_PLAY_STOPPED,
|
|
GST_PLAY_PLAYING,
|
|
GST_PLAY_PAUSED,
|
|
} GstPlayState;
|
|
|
|
typedef enum {
|
|
GST_PLAY_OK,
|
|
GST_PLAY_UNKNOWN_MEDIA,
|
|
GST_PLAY_CANNOT_PLAY,
|
|
GST_PLAY_ERROR,
|
|
} GstPlayReturn;
|
|
|
|
typedef enum {
|
|
GST_PLAY_TYPE_AUDIO = (1 << 0),
|
|
GST_PLAY_TYPE_VIDEO = (1 << 1),
|
|
} GstPlayMediaTypeFlags;
|
|
|
|
typedef struct _GstPlayPrivate GstPlayPrivate;
|
|
|
|
struct _GstPlay {
|
|
GtkHBox parent;
|
|
|
|
GstPlayState state;
|
|
GstPlayMediaTypeFlags flags;
|
|
GstPlayPrivate *priv;
|
|
};
|
|
|
|
#define GST_PLAY_STATE(play) ((play)->state)
|
|
#define GST_PLAY_MEDIA_TYPE(play) ((play)->flags)
|
|
#define GST_PLAY_IS_AUDIO_TYPE(play) ((play)->flags & GST_PLAY_TYPE_AUDIO)
|
|
#define GST_PLAY_IS_VIDEO_TYPE(play) ((play)->flags & GST_PLAY_TYPE_VIDEO)
|
|
|
|
struct _GstPlayClass {
|
|
GtkHBoxClass parent_class;
|
|
|
|
void (*state_changed) (GstPlay *play, GstPlayState state);
|
|
void (*frame_displayed) (GstPlay *play);
|
|
void (*audio_played) (GstPlay *play);
|
|
};
|
|
|
|
|
|
GtkType gst_play_get_type (void);
|
|
|
|
/* setup the player */
|
|
GstPlay* gst_play_new (void);
|
|
GstPlayReturn gst_play_set_uri (GstPlay *play, const guchar *uri);
|
|
|
|
/* control the player */
|
|
void gst_play_play (GstPlay *play);
|
|
void gst_play_pause (GstPlay *play);
|
|
void gst_play_stop (GstPlay *play);
|
|
|
|
void gst_play_mute (GstPlay *play, gboolean mute);
|
|
|
|
/* information about the media stream */
|
|
gulong gst_play_get_media_size (GstPlay *play);
|
|
gulong gst_play_get_media_offset (GstPlay *play);
|
|
gboolean gst_play_media_can_seek (GstPlay *play);
|
|
void gst_play_media_seek (GstPlay *play, gulong offset);
|
|
|
|
gulong gst_play_get_media_total_time (GstPlay *play);
|
|
gulong gst_play_get_media_current_time (GstPlay *play);
|
|
|
|
/* set display stuff */
|
|
GtkWidget * gst_play_get_video_widget (GstPlay *play);
|
|
gint gst_play_get_source_width (GstPlay *play);
|
|
gint gst_play_get_source_height (GstPlay *play);
|
|
|
|
/* the autoplugged pipeline */
|
|
GstElement* gst_play_get_pipeline (GstPlay *play);
|
|
|
|
#endif /* __GSTPLAY_H__ */
|