Exemplo n.º 1
0
 public void EndRecording()
 {
     if (m_encoder != null)
     {
         m_encoder.Release();
         m_encoder = null;
     }
     m_recording = false;
     Debug.Log("AudioMRecorder: EndRecording()");
 }
Exemplo n.º 2
0
        public override void EndRecording()
        {
            if (m_encoder != null)
            {
                m_encoder.Release();
                m_encoder = null;
            }

            if (m_recording)
            {
                Debug.Log("AudioMRecorder: EndRecording()");
            }
            base.EndRecording();
        }
Exemplo n.º 3
0
        public override void EndRecording()
        {
            if (m_encoder != null)
            {
                m_encoder.Release();
                m_encoder = null;
            }

            if (m_recording)
            {
                m_recording = false;
                m_aborted   = true;
                Debug.Log("AudioMRecorder: EndRecording()");
            }
        }