[FFmpeg-cvslog] avfilter/af_apulsator: assert that pathes leaving uninitialized variables do not occur
Michael Niedermayer
git at videolan.org
Fri Feb 5 01:25:33 CET 2016
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Feb 4 01:49:15 2016 +0100| [1693336aed3988e0c13ad1ff880257d80d6ae69d] | committer: Michael Niedermayer
avfilter/af_apulsator: assert that pathes leaving uninitialized variables do not occur
Fixes: CID1341581, CID1341582
Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1693336aed3988e0c13ad1ff880257d80d6ae69d
---
libavfilter/af_apulsator.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavfilter/af_apulsator.c b/libavfilter/af_apulsator.c
index 6c81530..802b8d0 100644
--- a/libavfilter/af_apulsator.c
+++ b/libavfilter/af_apulsator.c
@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "internal.h"
@@ -117,6 +118,7 @@ static double lfo_get_value(SimpleLFO *lfo)
case SAWDOWN:
val = 1 - phs * 2;
break;
+ default: av_assert0(0);
}
return val * lfo->amount;
@@ -207,6 +209,7 @@ static int config_input(AVFilterLink *inlink)
case UNIT_BPM: freq = s->bpm / 60; break;
case UNIT_MS: freq = 1 / (s->ms / 1000.); break;
case UNIT_HZ: freq = s->hz; break;
+ default: av_assert0(0);
}
s->lfoL.freq = freq;
More information about the ffmpeg-cvslog
mailing list