mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-27 15:45:55 -05:00
3b0dc5368e
There's a lot of work left to do on this: * important latency optimization: the recording threads block while fsync()ing sample files, which can take 250+ ms. This should be moved to a separate thread to happen asynchronously. * write cycle optimizations: several SQLite commits per camera per minute. * test coverage: this drops testing of the file rotation, and there are several error paths worth testing. * ffmpeg oddities to investigate: * the out-of-order first frame's pts * measurable delay before returning packets * it sometimes returns an initial packet it calls a "key" frame that actually has an SEI recovery point NAL but not an IDR-coded slice NAL, even though in the input these always seem to come together. This makes playback starting from this recording not work at all on Chrome. The symptom is that it loads a player-looking thing with the proper dimensions but playback never actually starts. I imagine these are all related but haven't taken the time to dig through ffmpeg code and understand them. The right thing anyway may be to ditch ffmpeg for RTSP streaming (perhaps in favor of the live555 library), as it seems to have other omissions like making it hard/impossible to take advantage of Sender Reports. In the meantime, I attempted to mitigate problems by decreasing ffmpeg's probesize. * handling overlapping recordings: right now if there's too much time drift or a time jump, you can end up with recordings that the UI won't play without manual database changes. It's not obvious what the right thing to do is. * easy camera setup: currently you have to manually insert rows in the SQLite database and restart. but I think it's best to get something in to iterate from. This deletes a lot of code, including: * the ffmpeg video sink code (instead now using a bit of extra code in Stream on top of the SampleFileWriter, SampleIndexEncoder, and MoonfireDatabase code that's been around for a while) * FileManager (in favor of new code using the database) * the old UI * RealFile and friends * the dependency on protocol buffers, which was used for the config file (though I'll likely have other reasons for using protocol buffers later) * even some utilities like IsWord that were just for validating the config
122 lines
4.5 KiB
CMake
122 lines
4.5 KiB
CMake
# This file is part of Moonfire NVR, a security camera digital video recorder.
|
|
# Copyright (C) 2016 Scott Lamb <slamb@slamb.org>
|
|
#
|
|
# This program 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.
|
|
#
|
|
# In addition, as a special exception, the copyright holders give
|
|
# permission to link the code of portions of this program with the
|
|
# OpenSSL library under certain conditions as described in each
|
|
# individual source file, and distribute linked combinations including
|
|
# the two.
|
|
#
|
|
# You must obey the GNU General Public License in all respects for all
|
|
# of the code used other than OpenSSL. If you modify file(s) with this
|
|
# exception, you may extend this exception to your version of the
|
|
# file(s), but you are not obligated to do so. If you do not wish to do
|
|
# so, delete this exception statement from your version. If you delete
|
|
# this exception statement from all source files in the program, then
|
|
# also delete it here.
|
|
#
|
|
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# CMakeLists.txt: top-level definitions for building Moonfire NVR.
|
|
|
|
cmake_minimum_required(VERSION 3.0.2)
|
|
project(moonfire-nvr)
|
|
|
|
if(CMAKE_VERSION VERSION_LESS "3.1")
|
|
set(CMAKE_CXX_FLAGS "--std=c++11 ${CMAKE_CXX_FLAGS}")
|
|
else()
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
endif()
|
|
|
|
set(CMAKE_CXX_FLAGS "-Wall -Werror -pedantic-errors ${CMAKE_CXX_FLAGS}")
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb")
|
|
|
|
#
|
|
# Dependencies.
|
|
#
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
# https://gflags.github.io/gflags/#cmake mentions a cmake module, but at
|
|
# least on Ubuntu 15.10, libgflags-dev does not include it. There's no
|
|
# pkgconfig either. Do this by hand.
|
|
find_library(GFLAGS_LIBRARIES gflags)
|
|
find_library(RE2_LIBRARIES re2)
|
|
find_library(PROFILER_LIBRARIES profiler)
|
|
|
|
# https://cmake.org/cmake/help/v3.0/module/FindPkgConfig.html
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(FFMPEG REQUIRED libavutil libavcodec libavformat)
|
|
pkg_check_modules(LIBEVENT REQUIRED libevent>=2.1)
|
|
pkg_check_modules(GLOG REQUIRED libglog)
|
|
pkg_check_modules(OPENSSL REQUIRED libcrypto)
|
|
pkg_check_modules(SQLITE REQUIRED sqlite3)
|
|
pkg_check_modules(UUID REQUIRED uuid)
|
|
|
|
# Check if ffmpeg support "stimeout".
|
|
set(CMAKE_REQUIRED_INCLUDES ${FFMPEG_INCLUDES})
|
|
set(CMAKE_REQUIRED_LIBRARIES ${FFMPEG_LIBRARIES})
|
|
include(CheckCSourceRuns)
|
|
check_c_source_runs([[
|
|
#include <stdlib.h>
|
|
#include <libavutil/opt.h>
|
|
#include <libavformat/avformat.h>
|
|
int main(int argc, char **argv) {
|
|
av_register_all();
|
|
AVInputFormat *input = av_find_input_format("rtsp");
|
|
const AVClass *klass = input->priv_class;
|
|
const AVOption *opt =
|
|
av_opt_find2(&klass, "stimeout", NULL, 0, AV_OPT_SEARCH_FAKE_OBJ, NULL);
|
|
return (opt != NULL) ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
}
|
|
]] HAVE_STIMEOUT)
|
|
if(NOT HAVE_STIMEOUT)
|
|
message(WARNING [[
|
|
Your libavformat library lacks support for the "stimeout" rtsp option.
|
|
Moonfire NVR will not be able to detect network partitions or retry.
|
|
Consider installing a recent ffmpeg, from source if necessary.
|
|
]])
|
|
else()
|
|
message(STATUS "libavformat library has support for \"stimeout\" - good.")
|
|
endif()
|
|
|
|
enable_testing()
|
|
|
|
# http://www.kaizou.org/2014/11/gtest-cmake/
|
|
include(ExternalProject)
|
|
ExternalProject_Add(
|
|
GMockProject
|
|
URL "https://googlemock.googlecode.com/files/gmock-1.7.0.zip"
|
|
URL_HASH "SHA1=f9d9dd882a25f4069ed9ee48e70aff1b53e3c5a5"
|
|
INSTALL_COMMAND "")
|
|
ExternalProject_Get_Property(GMockProject source_dir binary_dir)
|
|
set(GTest_INCLUDE_DIR ${source_dir}/gtest/include)
|
|
add_library(GTest STATIC IMPORTED)
|
|
add_dependencies(GTest GMockProject)
|
|
set_target_properties(GTest PROPERTIES
|
|
IMPORTED_LOCATION "${binary_dir}/gtest/${CMAKE_STATIC_LIBRARY_PREFIX}gtest${CMAKE_STATIC_LIBRARY_SUFFIX}"
|
|
IMPORTED_LINK_INTERFACE_LIBRARIES "${CMAKE_THREAD_LIBS_INIT}")
|
|
set(GMock_INCLUDE_DIR ${source_dir}/include)
|
|
add_library(GMock STATIC IMPORTED)
|
|
add_dependencies(GMock GMockProject)
|
|
set_target_properties(GMock PROPERTIES
|
|
IMPORTED_LOCATION "${binary_dir}/${CMAKE_STATIC_LIBRARY_PREFIX}gmock${CMAKE_STATIC_LIBRARY_SUFFIX}"
|
|
IMPORTED_LINK_INTERFACE_LIBRARIES "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
#
|
|
# Subdirectories.
|
|
#
|
|
|
|
add_subdirectory(src)
|