Skip to content

Commit

Permalink
Removed npp scaler and changed to cuda scaler.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keukhan committed Dec 9, 2024
1 parent b440ad3 commit 4a2f42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/transcoder/filter/filter_rescaler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ bool FilterRescaler::InitializeFilterDescription()
desc = ov::String::FormatString("hwupload_cuda=device=%d,", output_device_id);
}
}
desc += ov::String::FormatString("scale_npp=%d:%d", _output_track->GetWidth(), _output_track->GetHeight());
desc += ov::String::FormatString("scale_cuda=%d:%d", _output_track->GetWidth(), _output_track->GetHeight());
}
else if (output_module_id == cmn::MediaCodecModuleId::XMA)
{
Expand Down

0 comments on commit 4a2f42c

Please sign in to comment.