mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avfilter/af_sofalizer: add printing of license back
This commit is contained in:
parent
3f08ed3920
commit
4b5977fc50
@ -113,6 +113,7 @@ static int preload_sofa(AVFilterContext *ctx, char *filename, int *samplingrate)
|
||||
{
|
||||
struct SOFAlizerContext *s = ctx->priv;
|
||||
struct MYSOFA_HRTF *mysofa;
|
||||
char *license;
|
||||
int ret;
|
||||
|
||||
mysofa = mysofa_load(filename, &ret);
|
||||
@ -125,6 +126,9 @@ static int preload_sofa(AVFilterContext *ctx, char *filename, int *samplingrate)
|
||||
return AVERROR(EINVAL);
|
||||
*samplingrate = mysofa->DataSamplingRate.values[0];
|
||||
s->sofa.n_samples = mysofa->N;
|
||||
license = mysofa_getAttribute(mysofa->attributes, (char *)"License");
|
||||
if (license)
|
||||
av_log(ctx, AV_LOG_INFO, "SOFA license: %s\n", license);
|
||||
mysofa_free(mysofa);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user