samedi 9 mai 2015

swift error self. used before super.init() call

Can anyone tell me please what i am doing wrong, i also tried to use the super.init before initializing the objects and tried self. infront of my objects

Thanks in advance!

the code i currently have is :

    //
//  RecordController.swift
//  TuneUpV2
//
//  Created by Don Nijssen on 05-05-15.
//  Copyright (c) 2015 Don Nijssen. All rights reserved.
//

import UIKit
import AVFoundation

class RecordController: NSObject {

    var audioEngine: AVAudioEngine
    var audioInputNode : AVAudioInputNode
    var audioPlayerNode: AVAudioPlayerNode
    var audioMixerNode: AVAudioMixerNode
    var audioBuffer: AVAudioPCMBuffer

    override init(){

        audioEngine = AVAudioEngine()
        audioPlayerNode = AVAudioPlayerNode()
        audioInputNode = AVAudioInputNode()
        audioMixerNode = AVAudioMixerNode()
        audioBuffer = AVAudioPCMBuffer()


        audioMixerNode = audioEngine.mainMixerNode

        let frameLength = UInt32(256)
        audioBuffer = AVAudioPCMBuffer(PCMFormat: audioPlayerNode.outputFormatForBus(0), frameCapacity: frameLength)
        audioBuffer.frameLength = frameLength

        audioInputNode = audioEngine.inputNode

        audioInputNode.installTapOnBus(0, bufferSize:frameLength, format: audioInputNode.outputFormatForBus(0), block: {(buffer, time) in
            //let channels = UnsafeArray(start: buffer.floatChannelData, length: Int(buffer.format.channelCount))
            //let floats = UnsafeArray(start: channels[0], length: Int(buffer.frameLength))

            for var i = 0; i < Int(self.audioBuffer.frameLength); i+=Int(self.audioMixerNode.outputFormatForBus(0).channelCount)
            {
                // doing my real time stuff
                //self.audioBuffer.floatChannelData.memory[i] = floats[i];
                println(self.audioEngine.inputNode.rate);
            }
        })

        // setup audio engine
        audioEngine.attachNode(audioPlayerNode)
        audioEngine.connect(audioPlayerNode, to: audioMixerNode, format: audioPlayerNode.outputFormatForBus(0))

    }


    func start()
    {

        audioEngine.startAndReturnError(nil)

        // play player and buffer
        audioPlayerNode.play()
        audioPlayerNode.scheduleBuffer(audioBuffer, atTime: nil, options: .Loops, completionHandler: nil)
    }

    func stop()
    {
        audioEngine.stop();
        audioPlayerNode.stop();
    }

}

Aucun commentaire:

Enregistrer un commentaire