Browse Source

avfilter/af_sofalizer: check if filename was set.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.1
Paul B Mahol 10 years ago
parent
commit
781195fa62
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavfilter/af_sofalizer.c

+ 5
- 0
libavfilter/af_sofalizer.c View File

@@ -937,6 +937,11 @@ static av_cold int init(AVFilterContext *ctx)
SOFAlizerContext *s = ctx->priv;
int ret;

if (!s->filename) {
av_log(ctx, AV_LOG_ERROR, "Valid SOFA filename must be set.\n");
return AVERROR(EINVAL);
}

/* load SOFA file, */
/* initialize file IDs to 0 before attempting to load SOFA files,
* this assures that in case of error, only the memory of already


Loading…
Cancel
Save