mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
4a583683e5
Original commit message from CVS: Merged from INCSCHED on 200505251!!!
30 lines
602 B
C
30 lines
602 B
C
#ifndef __GSTPLAY_PRIVATE_H__
|
|
#define __GSTPLAY_PRIVATE_H__
|
|
|
|
#include <gst/gst.h>
|
|
|
|
typedef struct _GstPlayPrivate GstPlayPrivate;
|
|
|
|
struct _GstPlayPrivate {
|
|
GstElement *pipeline;
|
|
GstElement *video_element, *audio_element;
|
|
GstElement *video_show;
|
|
GtkWidget *video_widget;
|
|
GstElement *src;
|
|
GstElement *cache;
|
|
GstElement *typefind;
|
|
|
|
guchar *uri;
|
|
gboolean muted;
|
|
gboolean can_seek;
|
|
|
|
GstElement *offset_element;
|
|
GstElement *bit_rate_element;
|
|
GstElement *media_time_element;
|
|
GstElement *current_time_element;
|
|
|
|
guint source_width;
|
|
guint source_height;
|
|
};
|
|
|
|
#endif /* __GSTPLAY_PRIVATE_H__ */
|