You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	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:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user