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

make mjpeg not visible to the user anymore #620

Merged
merged 1 commit into from
Nov 24, 2023
Merged
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
5 changes: 4 additions & 1 deletion app/telemetry/settings/documentedparam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,10 @@ static std::vector<std::shared_ptr<XParam>> get_parameters_list(){
);
}
append_int(ret,"VIDEO_CODEC",
ImprovedIntSetting::createEnum( std::vector<std::string>{"h264","h265","mjpeg"}),
//NOTE: MJPEG has been removed intentionally, since we are going to eventually remove support for it in
//favour of h264
// ,"mjpeg"
ImprovedIntSetting::createEnum( std::vector<std::string>{"h264","h265"}),
"Video codec. If your camera/ground station does not support HW accelerated encoding/decoding of the selected codec,it'l default to SW encode/decode. "
"A reboot (air&ground) is recommended after changing this parameter."
);
Expand Down
Loading