mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
335080574f
Original commit message from CVS: Lots of updates to the plugins for caps negotiation. Added YUY2 output to the win32 dlls. Added a colorspace converter in gstplay
31 lines
650 B
C
31 lines
650 B
C
/*
|
|
* Initial main.c file generated by Glade. Edit as required.
|
|
* Glade will not overwrite this file.
|
|
*/
|
|
|
|
#ifndef __GSTPLAY_PRIVATE_H__
|
|
#define __GSTPLAY_PRIVATE_H__
|
|
|
|
#include <gst/gst.h>
|
|
|
|
typedef struct _GstPlayPrivate GstPlayPrivate;
|
|
|
|
struct _GstPlayPrivate {
|
|
GstElement *thread;
|
|
GstElement *bin;
|
|
GstElement *video_element, *audio_element;
|
|
GstElement *video_show;
|
|
GtkWidget *video_widget;
|
|
GstElement *src;
|
|
|
|
guchar *uri;
|
|
gboolean muted;
|
|
gboolean can_seek;
|
|
|
|
GstElement *offset_element;
|
|
GstElement *bit_rate_element;
|
|
GstElement *media_time_element;
|
|
GstElement *current_time_element;
|
|
};
|
|
|
|
#endif /* __GSTPLAY_PRIVATE_H__ */
|