Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove legacy osd #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ set(SOURCE_FILES
src/osd.cpp
src/dvr.h
src/dvr.cpp
src/rtp.h
src/rtp.c
src/mavlink.h
src/mavlink.c
src/main.cpp
Expand Down
2 changes: 0 additions & 2 deletions src/dvr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ int Dvr::start() {
spdlog::error("unable to open DVR file {}", finalFilename);
return -1;
}
osd_vars.enable_recording = 1;
osd_publish_bool_fact("dvr.recording", NULL, 0, true);
dvr_enabled = 1;
mux = MP4E_open(0 /*sequential_mode*/, mp4_fragmentation_mode, dvr_file, write_callback);
Expand All @@ -266,7 +265,6 @@ void Dvr::stop() {
mp4_h26x_write_close(mp4wr);
fclose(dvr_file);
dvr_file = NULL;
osd_vars.enable_recording = 0;
osd_publish_bool_fact("dvr.recording", NULL, 0, false);
dvr_enabled = 0;
_ready_to_write = 0;
Expand Down
198 changes: 0 additions & 198 deletions src/icons/icons.h

This file was deleted.

Loading