home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2001 September / PC-WELT 9-2001.ISO / software / hw / brennen / flask_src.exe / RunState.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  1.9 KB  |  66 lines

  1. /* 
  2.  *  RunState.h 
  3.  *
  4.  *    Copyright (C) Alberto Vigata - January 2000 - ultraflask@yahoo.com
  5.  *
  6.  *  This file is part of FlasKMPEG, a free MPEG to MPEG/AVI converter
  7.  *    
  8.  *  FlasKMPEG is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  FlasKMPEG is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23.  
  24.  
  25. #ifndef RUN_STATE_H
  26. #define RUN_STATE_H
  27.  
  28. #include ".\flaskmpeg.h"
  29. #include ".\Input\InputStream.h"
  30. #include ".\Input\StreamDetector.h"
  31. #include ".\Input\IFOParser\IFOparser.h"
  32. #include ".\plugins.h"
  33. #include ".\PostProcessing.h"
  34. #include ".\video\videowrapper.h"
  35. #include ".\audio\audio.h"
  36. #include ".\Language.h"
  37. #include ".\Misc\Graph.h"
  38. #include ".\Input\DVDSelector.h"
  39.  
  40. enum { FILE_MODE, DVDMODE };
  41.  
  42. struct TRunState
  43. {
  44.     TStreamDetector   *SD;            //Stream Detector Structure TStreamDectectorType
  45.     TDVDSelector      DVDSelections;
  46.     TPPost            pp;
  47.     int                  audioType[8];
  48.     int                  nAudioTracks;
  49.     int               selected_out_plug;
  50.     int               working_mode;
  51.     i64               startFilePos;
  52.  
  53.     CinputStream      *video_inp;
  54.     CinputStream      *audio_inp;
  55.  
  56.     VideoWrapper      *video;
  57.     Audio              *audio;
  58.     Audio             *audio2;
  59.     CLanguage         *lng;
  60.     CIFOParser        *ifo;
  61.     TPlugins          plugs;
  62.     TGraph            gr;            // Progress graph stuff
  63. };
  64.  
  65.  
  66. #endif