587ae25b84177c5af73d1794bba555c6643b39bd
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

6) #ifndef BLINKER_RESIZER_H
7) #define BLINKER_RESIZER_H
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenFrame.h>
12) 
13) #include "CallMgr.h"
14) #include "Directory.h"
15) #include "File.h"
16) #include "Format.h"
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

17) #include "FormatFile.h"
18) #include "InStreamFile.h"
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

19) #include "Module.h"
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

20) #include "OutStreamFile.h"
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

21) #include "StreamMgr.h"
22) #include "StreamRecv.h"
23) 
24) namespace Blinker {
25) 
26) /// a stream resizer
27) class Resizer: public Module, public StreamRecv
28) {
29) public:
30)   /**
31)    * @brief constructor
32)    * @param[in] callMgr callback manager
33)    * @param[in] streamMgr stream manager
34)    * @param[in] dirBase base directory
35)    */
36)   Resizer(CallMgr &callMgr, StreamMgr &streamMgr, const Directory &dirBase);
37) 
38)   /// virtual destructor
39)   virtual ~Resizer();
40) 
41) private:
42)   /// copy constructor disabled
43)   Resizer(const Resizer &that);
44) 
45)   /// assignment operator disabled
46)   const Resizer & operator=(const Resizer &that);
47) 
48) public:
49)   /// check for update of configuration
50)   virtual void updateConfig();
51) 
52)   /**
53)    * @brief set current frame
54)    * @param[in] stream stream name
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

55)    * @param[in] pFrame current frame (NULL for none)
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

56)    */
57)   virtual void setFrame(const std::string &stream, stBlinkenFrame *pFrame);
58) 
59) protected:
60)   /// (re-)get format to resize to
61)   void getFormat();
62) 
63)   /// send current frame to output stream
64)   void sendFrame();
65) 
66)   /**
67)    * @brief process frame
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

68)    * @param[in] pFrame frame to process (NULL for none)
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

69)    */
70)   void procFrame(stBlinkenFrame *pFrame);
71) 
72) protected:
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

73)   InStreamFile  m_fileInStream;  ///< input stream name file
74)   FormatFile    m_fileFormat;    ///< format file
75)   OutStreamFile m_fileOutStream; ///< output stream name file
Stefan Schuermans implemented resizer module

Stefan Schuermans authored 12 years ago

76) }; // class Resizer
77) 
78) } // namespace Blinker
79) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

80) #endif // #ifndef BLINKER_RESIZER_H