Mercurial > mplayer.hg
view gui/interface.h @ 31597:1eb8dc8f96fa
Make subdelay handling work the same way for all subtitle types and also allow
changing subtitle delay to work better with vobsubs.
This probably breaks vobsub behaviour with timestamp wrapping though.
author | reimar |
---|---|
date | Sat, 10 Jul 2010 12:53:05 +0000 |
parents | 4d6bb9606833 |
children | 9e627a1793b1 |
line wrap: on
line source
/* * This file is part of MPlayer. * * MPlayer is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * MPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with MPlayer; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef MPLAYER_GUI_INTERFACE_H #define MPLAYER_GUI_INTERFACE_H #include "config.h" #include "m_config.h" #include "playtree.h" #include "mplayer/play.h" #include "libvo/font_load.h" #include "cfg.h" #include "stream/stream.h" typedef struct { int x; int y; int width; int height; } guiResizeStruct; typedef struct { int signal; char module[512]; } guiUnknownErrorStruct; typedef struct { int seek; int format; int width; int height; char codecdll[128]; } guiVideoStruct; #ifdef CONFIG_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; guiUnknownErrorStruct error; struct MPContext * mpcontext; void * sh_video; void * afilter; void * demuxer; void * event_struct; int DiskChanged; int NewPlay; #ifdef CONFIG_DVDREAD guiDVDStruct DVD; int Title; int Angle; int Chapter; #endif #ifdef CONFIG_VCD int VCDTracks; #endif int Playing; float Position; int MovieWidth; int MovieHeight; int NoWindow; float Volume; float Balance; int Track; int AudioType; int StreamType; int AudioOnly; int TimeSec; int LengthInSec; int FrameDrop; int FileFormat; float FPS; char * Filename; int FilenameChanged; char * Subtitlename; int SubtitleChanged; char * Othername; int OtherChanged; char * AudioFile; int AudioFileChanged; int SkinChange; } guiInterface_t; extern guiInterface_t guiIntfStruct; #define guiXEvent 0 #define guiCEvent 1 #define guiIEvent 2 #define guiSetDVD 3 #define guiSetFileName 4 #define guiSetState 5 #define guiSetAudioOnly 6 #define guiReDrawSubWindow 7 #define guiSetShVideo 8 #define guiSetStream 9 #define guiReDraw 10 #define guiSetVolume 11 #define guiSetDefaults 12 #define guiSetValues 13 #define guiSetFileFormat 14 #define guiSetDemuxer 15 #define guiSetParameters 16 #define guiSetAfilter 17 #define guiSetContext 18 #define guiSetStop 0 #define guiSetPlay 1 #define guiSetPause 2 #define guiDVD 1 #define guiVCD 2 #define guiFilenames 4 #define guiALL 0xffffffff extern int use_gui; extern int guiWinID; void guiInit( void ); void guiDone( void ); int guiGetEvent( int type,void * arg ); void guiEventHandling( void ); void guiLoadFont( void ); void guiLoadSubtitle( char * name ); void guiMessageBox(int level, char * str); typedef struct plItem { struct plItem * prev,* next; int played; char * path; char * name; } plItem; typedef struct urlItem { struct urlItem *next; char * url; } URLItem; extern char * skinName; extern plItem * plList; extern plItem * plCurrent; extern plItem * plLastPlayed; extern URLItem * URLList; #define fsPersistant_MaxPath 512 #define fsPersistant_MaxPos 5 extern char * fsHistory[fsPersistant_MaxPos]; #define gtkSetContrast 0 #define gtkSetBrightness 1 #define gtkSetHue 2 #define gtkSetSaturation 3 #define gtkSetEqualizer 4 #define gtkAddPlItem 5 #define gtkGetNextPlItem 6 #define gtkGetPrevPlItem 7 #define gtkGetCurrPlItem 8 #define gtkDelPl 9 #define gtkSetExtraStereo 10 #define gtkSetPanscan 11 #define gtkSetFontFactor 12 #define gtkSetAutoq 13 #define gtkClearStruct 14 #define gtkAddURLItem 15 #define gtkSetFontOutLine 16 #define gtkSetFontBlur 17 #define gtkSetFontTextScale 18 #define gtkSetFontOSDScale 19 #define gtkSetFontEncoding 20 #define gtkSetFontAutoScale 21 #define gtkSetSubEncoding 22 #define gtkDelCurrPlItem 23 #define gtkInsertPlItem 24 #define gtkSetCurrPlItem 25 extern float gtkEquChannels[6][10]; void * gtkSet( int cmd, float param, void * vparam ); char * gstrdup( const char * str ); int gstrcmp( const char * a, const char * b ); void gfree( void ** p ); void gaddlist( char *** list, const char * entry ); char * gstrchr( char * str, int c ); int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue); int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config); #define guiSetFilename( s,n ) { gfree( (void **)&s ); s=gstrdup( n ); } #define guiSetDF( s,d,n ) \ { \ gfree( (void **)&s ); \ s=malloc( strlen( d ) + strlen( n ) + 5 ); \ sprintf( s,"%s/%s",d,n ); \ } #endif /* MPLAYER_GUI_INTERFACE_H */