Skip to content

Commit

Permalink
Merge pull request #620 from OpenHD/consti-dev
Browse files Browse the repository at this point in the history
make mjpeg not visible to the user anymore
  • Loading branch information
Consti10 authored Nov 24, 2023
2 parents 0db5bb8 + 19a4e2f commit 527d12a
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit 527d12a

Please sign in to comment.