SPIN Framework
|
00001 // videoSize.h 00002 // Copyright (C) 2008-2009 Société des arts technologiques (SAT) 00003 // http://www.sat.qc.ca 00004 // All rights reserved. 00005 // 00006 // This file is part of [propulse]ART. 00007 // 00008 // [propulse]ART is free software: you can redistribute it and/or modify 00009 // it under the terms of the GNU General Public License as published by 00010 // the Free Software Foundation, either version 3 of the License, or 00011 // (at your option) any later version. 00012 // 00013 // [propulse]ART is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU General Public License 00019 // along with [propulse]ART. If not, see <http://www.gnu.org/licenses/>. 00020 // 00021 00022 #ifndef _VIDEO_SIZE_H_ 00023 #define _VIDEO_SIZE_H_ 00024 00025 namespace spin 00026 { 00027 00028 namespace videosize 00029 { 00030 const int WIDTH = 640; 00031 const int HEIGHT = 480; 00032 const int MAX_WIDTH = 1920; 00033 const int MAX_HEIGHT = 1080; 00034 const int FRAMERATE = 30; 00035 } 00036 00037 } // end of namespace spin 00038 00039 00040 #endif // _VIDEO_SIZE_H_