File: audionoiseeffect.h

package info (click to toggle)
olive-editor 20181223-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,844 kB
  • sloc: cpp: 20,147; xml: 315; ansic: 16; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AUDIONOISEEFFECT_H
#define AUDIONOISEEFFECT_H

#include "project/effect.h"

class AudioNoiseEffect : public Effect {
public:
	AudioNoiseEffect(Clip* c, const EffectMeta* em);
	void process_audio(double timecode_start, double timecode_end, quint8* samples, int nb_bytes, int channel_count);

	EffectField* amount_val;
	EffectField* mix_val;
};

#endif // AUDIONOISEEFFECT_H