Mercurial > mplayer.hg
view gui/interface.h @ 33109:01b19cf2649c
Fix segfault in lavcac3enc audio filter.
The FFmpeg ac3 encoder would fail to open
if the correct sample format is not set.
As the opening is done in control()
the audio filter would not fail back,
but would instead continue and call
encoding functions that dereference
NULL pointer.
author | iive |
---|---|
date | Sun, 03 Apr 2011 14:39:27 +0000 |
parents | ba432e34dc7e |
children | 5f527a9a9521 |
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 "stream/stream.h" // These are in support of the non-GUI files that interact with // the GUI and that only need to include interface.h for this. // ------------------------------------------------------------ #include "cfg.h" #include "mplayer/play.h" extern int use_gui; // this is defined in mplayer.c // ------------------------------------------------------------ #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 #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 #define fsPersistant_MaxPos 5 #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); \ } 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; typedef struct plItem { struct plItem *prev, *next; int played; char *path; char *name; } plItem; typedef struct urlItem { struct urlItem *next; char *url; } URLItem; extern guiInterface_t guiIntfStruct; extern int guiWinID; extern char *skinName; extern char *skinDirInHome; extern char *skinMPlayerDir; extern plItem *plList; extern plItem *plCurrent; extern plItem *plLastPlayed; extern URLItem *URLList; extern char *fsHistory[fsPersistant_MaxPos]; extern float gtkEquChannels[6][10]; void gaddlist(char ***list, const char *entry); void gfree(void **p); void gmp_msg(int mod, int lev, const char *format, ...); char *gstrchr(char *str, int c); int gstrcmp(const char *a, const char *b); char *gstrdup(const char *str); void *gtkSet(int cmd, float fparam, void *vparam); void guiDone(void); void guiEventHandling(void); int guiGetEvent(int type, void *arg); void guiInit(void); void guiLoadFont(void); void guiLoadSubtitle(char *name); 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); #endif /* MPLAYER_GUI_INTERFACE_H */