mirror of https://github.com/mpv-player/mpv
123 lines
2.2 KiB
C
123 lines
2.2 KiB
C
|
|
#ifndef _INTERFACE_H
|
|
#define _INTERFACE_H
|
|
|
|
#include "../config.h"
|
|
#include "mplayer/play.h"
|
|
#include "../mplayer.h"
|
|
|
|
#ifdef USE_DVDREAD
|
|
#include "../libmpdemux/stream.h"
|
|
#endif
|
|
|
|
|
|
typedef struct
|
|
{
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
} guiResizeStruct;
|
|
|
|
typedef struct
|
|
{
|
|
int signal;
|
|
char module[512];
|
|
} guiUnknowErrorStruct;
|
|
|
|
typedef struct
|
|
{
|
|
int seek;
|
|
int format;
|
|
int width;
|
|
int height;
|
|
char codecdll[128];
|
|
} guiVideoStruct;
|
|
|
|
#ifdef USE_DVDREAD
|
|
typedef struct
|
|
{
|
|
int titles;
|
|
int chapters;
|
|
int angles;
|
|
int current_chapter;
|
|
int current_title;
|
|
int current_angle;
|
|
int nr_of_audio_channels;
|
|
stream_language_t audio_streams[32];
|
|
int nr_of_subtitles;
|
|
stream_language_t subtitles[32];
|
|
} guiDVDStruct;
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
int message;
|
|
guiResizeStruct resize;
|
|
guiVideoStruct videodata;
|
|
guiUnknowErrorStruct error;
|
|
#ifdef USE_DVDREAD
|
|
guiDVDStruct DVD;
|
|
int DVDChanged;
|
|
#endif
|
|
|
|
int Playing;
|
|
float Position;
|
|
|
|
int MovieWidth;
|
|
int MovieHeight;
|
|
|
|
float Volume;
|
|
int VolumeChanged;
|
|
float Balance;
|
|
int Mute;
|
|
|
|
int Track;
|
|
int AudioType;
|
|
int StreamType;
|
|
int TimeSec;
|
|
int LengthInSec;
|
|
int FrameDrop;
|
|
|
|
char * Filename;
|
|
int FilenameChanged;
|
|
|
|
char * Subtitlename;
|
|
int SubtitleChanged;
|
|
|
|
char * Othername;
|
|
int OtherChanged;
|
|
|
|
int SkinChange;
|
|
} guiInterface_t;
|
|
|
|
extern guiInterface_t guiIntfStruct;
|
|
|
|
#define guiXEvent 0
|
|
#define guiCEvent 1
|
|
#define guiIEvent 2
|
|
|
|
#define guiSetStop 0
|
|
#define guiSetPlay 1
|
|
#define guiSetPause 2
|
|
|
|
extern char *get_path(char *filename);
|
|
|
|
extern void guiInit( int argc,char* argv[], char *envp[] );
|
|
extern void guiDone( void );
|
|
extern void guiGetEvent( int type,char * arg );
|
|
extern void guiEventHandling( void );
|
|
|
|
#define gstrdup( s,ss ) { s=malloc( strlen( ss ) + 3 ); strcpy( s,ss ); }
|
|
|
|
#define guiSetFilename( s,n ) { if ( s ) free( s ); s=strdup( n ); }
|
|
|
|
#define guiSetDF( s,d,n ) \
|
|
{ \
|
|
if ( s ) free( s ); s=NULL; \
|
|
s=malloc( strlen( d ) + strlen( n ) + 5 ); \
|
|
sprintf( s,"%s/%s",d,n ); \
|
|
}
|
|
|
|
#endif
|