• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)


  • Subject: Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)
  • From: Douglas Scott <email@hidden>
  • Date: Thu, 13 Oct 2016 17:19:26 -0700

You should actually be able to set errno to 0 *before* the first call, and it should never return failure unless there was actually a real problem with permissions, etc.

-DS

On Oct 13, 2016, at 3:46 PM, down to this <email@hidden> wrote:

Just wanted to follow up regarding this. As per the work-around the Douglas Scott suggested below, I've implemented this successfully in my app and it is working without issues. 

For those who are unaware (as I was), the 'errno' value can simply be set directly. By updating the "errno" value to 0 after a failed call, subsequent calls to 'MusicSequenceFileLoad' generate a successful response. Therefore, I've amended my code as follows:

OSStatus statusOfInitialAttempt = CheckError(MusicSequenceFileLoad(self.masterMidiMusicSequence, (__bridge CFURLRef)midiFileURL, 0, 0), "MusicSequenceFileLoad");
if (statusOfInitialAttempt == -1) {
    errno = 0;

    OSStatus statusOfSecondAttempt = CheckErrorAndReturnOnFailure(MusicSequenceFileLoad(self.masterMidiMusicSequence, (__bridge CFURLRef)midiFileURL, 0, 0), "MusicSequenceFileLoad");

    if (statusOfSecondAttempt == -1) {
        // Handle error case
    }
}
Thanks Douglas for your help with this!

Best,

Derek


Date: Sun, 09 Oct 2016 22:15:03 -0700
From: Douglas Scott <email@hidden>
To: Sven Thoennissen <email@hidden>
Cc: email@hidden
Subject: Re: MusicSequenceFileLoad Returns -1 on iOS10
        (AudioToolbox/MusicPlayer)
Message-ID: <email@hidden" class="">43BE2217-7A15-4F03-9338-email@hidden>
Content-Type: text/plain; charset="utf-8"

I cannot promise the specific release in which this will be fixed, but the problem is understood, and I can tell you that if you can force ‘errno’ to reset to 0, any following call to MusicSequenceFileLoadData() will succeed.

-DS
Do not post admin requests to the list. They will be ignored. Coreaudio-api mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
References: 
 >Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer) (From: down to this <email@hidden>)

  • Prev by Date: Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)
  • Next by Date: AudioUnitGetProperty with Swift 3
  • Previous by thread: Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)
  • Next by thread: Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)
  • Index(es):
    • Date
    • Thread