diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:50:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:50:19 +0100 |
commit | 4b335e73daca53554b190035b7e6247662992a06 (patch) | |
tree | e2fec026aa002da6dca650c9f416d31df76381ce /libavutil/lls.c | |
parent | 7da1b235e82eb41239cc0f830a42702d037de71f (diff) | |
parent | 0b311293891e44b8cb7c0a1f50f456ecd2e5d0d8 (diff) | |
download | ffmpeg-4b335e73daca53554b190035b7e6247662992a06.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
lls: Do not return from void functions
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/lls.c')
-rw-r--r-- | libavutil/lls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/lls.c b/libavutil/lls.c index 9384d12c93..a27c7ae8ba 100644 --- a/libavutil/lls.c +++ b/libavutil/lls.c @@ -120,15 +120,15 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order) #if FF_API_LLS_PRIVATE void av_init_lls(LLSModel *m, int indep_count) { - return avpriv_init_lls(m, indep_count); + avpriv_init_lls(m, indep_count); } void av_update_lls(LLSModel *m, double *param, double decay) { - return avpriv_update_lls(m, param, decay); + avpriv_update_lls(m, param, decay); } void av_solve_lls(LLSModel *m, double threshold, int min_order) { - return avpriv_solve_lls(m, threshold, min_order); + avpriv_solve_lls(m, threshold, min_order); } double av_evaluate_lls(LLSModel *m, double *param, int order) { |