mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
26 lines
429 B
C
26 lines
429 B
C
|
/*
|
||
|
* Initial main.c file generated by Glade. Edit as required.
|
||
|
* Glade will not overwrite this file.
|
||
|
*/
|
||
|
|
||
|
#ifndef __GSTPLAY_H__
|
||
|
#define __GSTPLAY_H__
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
# include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <gnome.h>
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
typedef enum {
|
||
|
GSTPLAY_PLAYING,
|
||
|
GSTPLAY_STOPPED,
|
||
|
GSTPLAY_PAUSE,
|
||
|
} GstPlayState;
|
||
|
|
||
|
void change_state(GstPlayState new_state);
|
||
|
void show_next_picture();
|
||
|
|
||
|
#endif /* __GSTPLAY_H__ */
|