Files

56 lines
2.4 KiB
C
Raw Permalink Normal View History

2026-03-28 16:54:11 +11:00
/***************************************************************************************
*
* IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
*
* By downloading, copying, installing or using the software you agree to this license.
* If you do not agree to this license, do not download, install,
* copy or use the software.
*
* Copyright (C) 2014-2024, Happytimesoft Corporation, all rights reserved.
*
* Redistribution and use in binary forms, with or without modification, are permitted.
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#include "sys_inc.h"
#define VERSION_STRING "V3.2"
#define LANG_SYS 0 // system language
#define LANG_ENG 1 // english
#define LANG_ZH 2 // chinese
typedef struct
{
std::string snapshotPath; // snapshot path
std::string recordPath; // video recording path
std::string audioDevice; // audio capture device
BOOL enableLog; // enable log
BOOL rtpMulticast; // whether enable rtp multicast via rtsp
BOOL rtpOverUdp; // prefer to use RTP OVER UDP
BOOL rtspOverHttp; // rtsp over http
BOOL rtspOverWs; // rtsp over websocket
int videoRenderMode; // 0 - Keep the original aspect ratio, 1 - Filling the whole window
int logLevel; // log level, reference sys_log.h
int rtspOverHttpPort; // rtsp over http port
int rtspOverWsPort; // rtsp over websocket port
int sysLang; // system language
int recordSize; // max video recording size, kb
int recordTime; // max video recording time, second
int hwDecoding; // hardware-acceleration decoding
} SysConfig;
#endif