summaryrefslogtreecommitdiff
path: root/libswresample/resample.c
diff options
context:
space:
mode:
authorMuhammad Faiz <mfcc64@gmail.com>2016-10-18 14:13:39 +0700
committerMuhammad Faiz <mfcc64@gmail.com>2016-10-18 22:36:01 +0700
commitacd74f92009df648a6bf4eb9513b38c20d422aeb (patch)
treebd1cbff868831bd72a0bfe5a746e7693a01c4acc /libswresample/resample.c
parent9545ff3ec39177f429c644128bf8cb0034e2a18b (diff)
swresample/resample: fix return value of build_filter
return AVERROR code on error Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
Diffstat (limited to 'libswresample/resample.c')
-rw-r--r--libswresample/resample.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c
index b834248167..8635bf1bed 100644
--- a/libswresample/resample.c
+++ b/libswresample/resample.c
@@ -149,6 +149,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
double *tab = av_malloc_array(tap_count+1, sizeof(*tab));
double *sin_lut = av_malloc_array(ph_nb, sizeof(*sin_lut));
const int center= (tap_count-1)/2;
+ int ret = AVERROR(ENOMEM);
if (!tab || !sin_lut)
goto fail;
@@ -292,10 +293,11 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
}
#endif
+ ret = 0;
fail:
av_free(tab);
av_free(sin_lut);
- return 0;
+ return ret;
}
static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_rate, int filter_size, int phase_shift, int linear,