Skip to content

Commit

Permalink
deleted FileRecorder from master
Browse files Browse the repository at this point in the history
  • Loading branch information
shortstheory committed May 22, 2020
1 parent e620a06 commit f177490
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 133 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ gst_rtsp_dep = dependency('gstreamer-rtsp-1.0')
gst_rtsp_server_dep = dependency('gstreamer-rtsp-server-1.0')
thread_dep = dependency('threads')

common_deps = ['src/Common/PipelineManager.cpp', 'src/Common/QoSEstimator.cpp', 'src/Common/FileRecorder.cpp']
common_deps = ['src/Common/PipelineManager.cpp', 'src/Common/QoSEstimator.cpp']
rtsp_src = ['src/RTSPStreamServer/stream_server.cpp', 'src/RTSPStreamServer/IPCMessageHandler.cpp', 'src/RTSPStreamServer/RTSPAdaptiveStreaming.cpp', 'src/RTSPStreamServer/RTSPStreamServer.cpp']
executable('stream_server', sources: [rtsp_src, common_deps], dependencies: [gst_dep, gst_rtp_dep, gst_rtsp_dep, gst_rtsp_server_dep, thread_dep], cpp_args : '-Werror', install : true)
1 change: 0 additions & 1 deletion src/Common/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
#include "QoSEstimator.h"
#include "PipelineManager.h"
#include "Constants.h"
#include "FileRecorder.h"

#endif
88 changes: 0 additions & 88 deletions src/Common/FileRecorder.cpp

This file was deleted.

40 changes: 0 additions & 40 deletions src/Common/FileRecorder.h

This file was deleted.

2 changes: 1 addition & 1 deletion src/Common/PipelineManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <linux/v4l2-controls.h>
#include <sys/ioctl.h>
#include <unistd.h>

#include <iostream>
#include "PipelineManager.h"

PipelineManager::PipelineManager(string _device, int quality, CameraType type) : network_state(NetworkState::STEADY), successive_transmissions(0),
Expand Down
1 change: 0 additions & 1 deletion src/Common/PipelineManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include "QoSEstimator.h"
#include "DeviceDatatypes.h"
#include "Constants.h"
#include "FileRecorder.h"

using namespace std;

Expand Down
1 change: 0 additions & 1 deletion src/RTSPStreamServer/RTSPStreamServer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include <sys/ioctl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <linux/videodev2.h>
Expand Down

0 comments on commit f177490

Please sign in to comment.