Original commit message from CVS: Misc fixes and cleanups A reworked gstplay. Now it is called gstmediaplay. gstplay is a custom widget that can display media and is to become a bonobo component soon. put the tables of the mpeg audio encoder in a header file. maybe faster quantisation for the mpeg encoder.
25 lines
454 B
C
25 lines
454 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;
|
|
};
|
|
|
|
#endif /* __GSTPLAY_PRIVATE_H__ */
|