mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
lavfi/ladspa: cast return value of av_x_if_null to char*, fix warnings
This commit is contained in:
parent
bd75651378
commit
988e2e7c1c
@ -450,9 +450,11 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
|
||||
count_ports(desc, &inputs, &outputs);
|
||||
av_log(ctx, AV_LOG_INFO, "%lu:%lu %-25s %s\n", inputs, outputs, desc->Label,
|
||||
av_x_if_null(desc->Name, "?"));
|
||||
av_log(ctx, AV_LOG_VERBOSE, "Maker: %s\n", av_x_if_null(desc->Maker, "?"));
|
||||
av_log(ctx, AV_LOG_VERBOSE, "Copyright: %s\n", av_x_if_null(desc->Copyright, "?"));
|
||||
(char *)av_x_if_null(desc->Name, "?"));
|
||||
av_log(ctx, AV_LOG_VERBOSE, "Maker: %s\n",
|
||||
(char *)av_x_if_null(desc->Maker, "?"));
|
||||
av_log(ctx, AV_LOG_VERBOSE, "Copyright: %s\n",
|
||||
(char *)av_x_if_null(desc->Copyright, "?"));
|
||||
}
|
||||
return AVERROR_EXIT;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user