mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
415ced1c0b
Original commit message from CVS: Added seeking to the avi decoder by implementing pull_region. Fixes to the asyncdisksrc. Added thread specific data to the cothreads.
30 lines
608 B
C
30 lines
608 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 *pipeline;
|
|
GstElement *audio_play;
|
|
GstElement *video_show;
|
|
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__ */
|