(c)We Want to Hear from You



Learning Core Audio: A Hands-On Guide to Audio Programming for Mac and iOS

First Edition

Copyright © 2013 Pearson Education, Inc.

ISBN-10: 0321636848

ISBN-13: 9780321636843

Corrections for August 29, 2012

|Pg |Error |Correction |

|33 |Reads: |Should Read: |

| | | |

| |NSLog (@"wrote %d samples", sampleCount); |NSLog (@"wrote %ld samples", sampleCount); |

|155 |Listing 7.32, |Should read: |

| |Reads: | |

| |input.inputProcRefCon = &player; |input.inputProcRefCon = player; |

|235 |Listing 10.11, |Should read: |

| |Reads: | |

| | |(data)[frame] = (SInt16) (sin (2 * M_PI * (j / cycleLength)) * |

| |(data)[frame] = (SInt16) (sin (2 * M_PI * (j / cycleLength)) * |                                    SHRT_MAX); |

| |                                   0x8000); | |

|235 |In the paragraph beginning: "As in Chapter 7, you need…" |Should read: |

| |Reads: | |

| |by the maximum 16-bit signed integer value of 0x000 |by the maximum 16-bit signed integer value of SHRT_MAX |

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download