Ejemplo n.º 1
0
 /**
  * Sets frame length and number of parameters per frame.
  *
  * @param frameLength frame length in milliseconds
  * @param paramsPerFrame number of params per frame
  */
 public Extractor(int frameLength, int paramsPerFrame)
 {
     m_frameLength    = frameLength;
     m_paramsPerFrame = paramsPerFrame;
     type             = "";
     m_indicator      = null;
 }
Ejemplo n.º 2
0
		/**
		 * Sets frame length and number of parameters per frame.
		 *
		 * @param frameLength frame length in milliseconds
		 * @param paramsPerFrame number of params per frame
		 */
		public Extractor(int frameLength, int paramsPerFrame)
		{
			m_frameLength = frameLength;
			m_paramsPerFrame = paramsPerFrame;
			type = "";
			m_indicator = null;
		}
Ejemplo n.º 3
0
 /**
  * Sets an optional processing indicator.
  *
  * @param indicator pointer to an indicator object
  */
 public void SetProcessingIndicator(ProcessingIndicator indicator)
 {
     m_indicator = indicator;
 }
Ejemplo n.º 4
0
		/**
		 * Sets an optional processing indicator.
		 *
		 * @param indicator pointer to an indicator object
		 */
		public void SetProcessingIndicator(ProcessingIndicator indicator)
		{
			m_indicator = indicator;
		}