mirror of
https://github.com/ShaYmez/xlxd.git
synced 2024-11-04 23:21:16 -05:00
41465e236d
Added ThumDV / USB-3000 support
111 lines
3.8 KiB
C++
111 lines
3.8 KiB
C++
//
|
|
// main.h
|
|
// ambed
|
|
//
|
|
// Created by Jean-Luc Deltombe (LX3JL) on 13/04/2017.
|
|
// Copyright © 2015 Jean-Luc Deltombe (LX3JL). All rights reserved.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// This file is part of ambed.
|
|
//
|
|
// xlxd 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// xlxd 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#ifndef main_h
|
|
#define main_h
|
|
|
|
#include <vector>
|
|
#include <array>
|
|
#include <map>
|
|
#include <queue>
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <mutex>
|
|
#include <atomic>
|
|
#include <condition_variable>
|
|
#include <ctime>
|
|
#include <cctype>
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <fstream>
|
|
#include <algorithm>
|
|
#include <arpa/inet.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// defines
|
|
|
|
// version -----------------------------------------------------
|
|
|
|
#define VERSION_MAJOR 1
|
|
#define VERSION_MINOR 1
|
|
#define VERSION_REVISION 0
|
|
|
|
// global ------------------------------------------------------
|
|
|
|
//#define RUN_AS_DAEMON
|
|
#define NB_MAX_STREAMS 99
|
|
//#define DEBUG_DUMPFILE
|
|
|
|
// Transcoder server --------------------------------------------
|
|
#define TRANSCODER_PORT 10100 // UDP port
|
|
#define TRANSCODER_KEEPALIVE_PERIOD 5 // in seconds
|
|
#define TRANSCODER_KEEPALIVE_TIMEOUT 30 // in seconds
|
|
|
|
// Codecs -------------------------------------------------------
|
|
#define CODEC_NONE 0
|
|
#define CODEC_AMBEPLUS 1
|
|
#define CODEC_AMBE2PLUS 2
|
|
|
|
// Transcoding speech gains
|
|
#define CODECGAIN_AMBEPLUS -10 // in dB
|
|
#define CODECGAIN_AMBE2PLUS +10 // in dB
|
|
|
|
// Timeouts -----------------------------------------------------
|
|
#define STREAM_ACTIVITY_TIMEOUT 3 // in seconds
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// typedefs
|
|
|
|
typedef unsigned char uint8;
|
|
typedef unsigned short uint16;
|
|
typedef unsigned int uint32;
|
|
typedef unsigned int uint;
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// macros
|
|
|
|
#define MIN(a,b) ((a) < (b))?(a):(b)
|
|
#define MAX(a,b) ((a) > (b))?(a):(b)
|
|
#define MAKEWORD(low, high) ((uint16)(((uint8)(low)) | (((uint16)((uint8)(high))) << 8)))
|
|
#define MAKEDWORD(low, high) ((uint32)(((uint16)(low)) | (((uint32)((uint16)(high))) << 16)))
|
|
#define LOBYTE(w) ((uint8)(uint16)(w & 0x00FF))
|
|
#define HIBYTE(w) ((uint8)((((uint16)(w)) >> 8) & 0xFF))
|
|
#define LOWORD(dw) ((uint16)(uint32)(dw & 0x0000FFFF))
|
|
#define HIWORD(dw) ((uint16)((((uint32)(dw)) >> 16) & 0xFFFF))
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// global objects
|
|
|
|
class CAmbeServer;
|
|
extern CAmbeServer g_AmbeServer;
|
|
|
|
class CVocodecs;
|
|
extern CVocodecs g_Vocodecs;
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
#endif /* main_h */
|