mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
ffmpeg/tools: Ensure we aren't comparing against a nullptr
This commit is contained in:
parent
dbb9db596e
commit
f3b3af2030
1 changed files with 5 additions and 3 deletions
|
@ -359,10 +359,12 @@ void tools::print_av_option_string2(AVCodecContext* ctx_codec, void* ctx_option,
|
|||
|
||||
// Find the unit for the option.
|
||||
auto* unitopt = av_opt_find(ctx_option, option.data(), nullptr, 0, AV_OPT_SEARCH_CHILDREN);
|
||||
if (unitopt) {
|
||||
if (unitopt && unitopt->unit) {
|
||||
std::string_view optname;
|
||||
for (auto* opt = unitopt;
|
||||
(opt = av_opt_next(ctx_option, opt)) != nullptr && (strcmp(unitopt->unit, opt->unit) == 0);) {
|
||||
for (auto* opt = unitopt; (opt = av_opt_next(ctx_option, opt)) != nullptr;) {
|
||||
if (opt->unit && (strcmp(unitopt->unit, opt->unit) != 0))
|
||||
continue;
|
||||
|
||||
if (opt->default_val.i64 == v)
|
||||
optname = opt->name;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue