Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Keukhan committed Nov 29, 2024
1 parent 509f773 commit 0bbbf19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/transcoder/transcoder_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
std::shared_ptr<std::vector<std::shared_ptr<CodecCandidate>>> TranscodeDecoder::GetCandidates(bool hwaccels_enable, ov::String hwaccles_modules, std::shared_ptr<MediaTrack> track)
{
logtd("Codec(%s), HWAccels.Enable(%s), HWAccels.Modules(%s)",
GetCodecIdToString(track->GetCodecId()).CStr(), hwaccels_enable ? "true" : "falase", hwaccles_modules.CStr());
GetCodecIdToString(track->GetCodecId()).CStr(), hwaccels_enable ? "true" : "false", hwaccles_modules.CStr());

ov::String configuration = "";
std::shared_ptr<std::vector<std::shared_ptr<CodecCandidate>>> candidate_modules = std::make_shared<std::vector<std::shared_ptr<CodecCandidate>>>();
Expand Down

0 comments on commit 0bbbf19

Please sign in to comment.