avfilter/af_apulsator: assert that pathes leaving uninitialized variables do not occur

Fixes: CID1341581, CID1341582

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-02-04 01:49:15 +01:00
parent 4c573f8ce9
commit 1693336aed
1 changed files with 3 additions and 0 deletions

View File

@ -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;