project.pbxproj 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3706B0791E9728190057BFB5 /* aacdecoder_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF1E1E9728180057BFB5 /* aacdecoder_lib.h */; };
  10. 3706B07A1E9728190057BFB5 /* aacdecoder_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF1E1E9728180057BFB5 /* aacdecoder_lib.h */; };
  11. 3706B07B1E9728190057BFB5 /* aac_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF201E9728180057BFB5 /* aac_ram.cpp */; };
  12. 3706B07C1E9728190057BFB5 /* aac_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF201E9728180057BFB5 /* aac_ram.cpp */; };
  13. 3706B07D1E9728190057BFB5 /* aac_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF211E9728180057BFB5 /* aac_ram.h */; };
  14. 3706B07E1E9728190057BFB5 /* aac_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF211E9728180057BFB5 /* aac_ram.h */; };
  15. 3706B07F1E9728190057BFB5 /* aac_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF221E9728180057BFB5 /* aac_rom.cpp */; };
  16. 3706B0801E9728190057BFB5 /* aac_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF221E9728180057BFB5 /* aac_rom.cpp */; };
  17. 3706B0811E9728190057BFB5 /* aac_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF231E9728180057BFB5 /* aac_rom.h */; };
  18. 3706B0821E9728190057BFB5 /* aac_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF231E9728180057BFB5 /* aac_rom.h */; };
  19. 3706B0831E9728190057BFB5 /* aacdec_drc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF241E9728180057BFB5 /* aacdec_drc.cpp */; };
  20. 3706B0841E9728190057BFB5 /* aacdec_drc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF241E9728180057BFB5 /* aacdec_drc.cpp */; };
  21. 3706B0851E9728190057BFB5 /* aacdec_drc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF251E9728180057BFB5 /* aacdec_drc.h */; };
  22. 3706B0861E9728190057BFB5 /* aacdec_drc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF251E9728180057BFB5 /* aacdec_drc.h */; };
  23. 3706B0871E9728190057BFB5 /* aacdec_drc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF261E9728180057BFB5 /* aacdec_drc_types.h */; };
  24. 3706B0881E9728190057BFB5 /* aacdec_drc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF261E9728180057BFB5 /* aacdec_drc_types.h */; };
  25. 3706B0891E9728190057BFB5 /* aacdec_hcr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF271E9728180057BFB5 /* aacdec_hcr.cpp */; };
  26. 3706B08A1E9728190057BFB5 /* aacdec_hcr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF271E9728180057BFB5 /* aacdec_hcr.cpp */; };
  27. 3706B08B1E9728190057BFB5 /* aacdec_hcr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF281E9728180057BFB5 /* aacdec_hcr.h */; };
  28. 3706B08C1E9728190057BFB5 /* aacdec_hcr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF281E9728180057BFB5 /* aacdec_hcr.h */; };
  29. 3706B08D1E9728190057BFB5 /* aacdec_hcr_bit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF291E9728180057BFB5 /* aacdec_hcr_bit.cpp */; };
  30. 3706B08E1E9728190057BFB5 /* aacdec_hcr_bit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF291E9728180057BFB5 /* aacdec_hcr_bit.cpp */; };
  31. 3706B08F1E9728190057BFB5 /* aacdec_hcr_bit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2A1E9728180057BFB5 /* aacdec_hcr_bit.h */; };
  32. 3706B0901E9728190057BFB5 /* aacdec_hcr_bit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2A1E9728180057BFB5 /* aacdec_hcr_bit.h */; };
  33. 3706B0911E9728190057BFB5 /* aacdec_hcr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2B1E9728180057BFB5 /* aacdec_hcr_types.h */; };
  34. 3706B0921E9728190057BFB5 /* aacdec_hcr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2B1E9728180057BFB5 /* aacdec_hcr_types.h */; };
  35. 3706B0931E9728190057BFB5 /* aacdec_hcrs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF2C1E9728180057BFB5 /* aacdec_hcrs.cpp */; };
  36. 3706B0941E9728190057BFB5 /* aacdec_hcrs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF2C1E9728180057BFB5 /* aacdec_hcrs.cpp */; };
  37. 3706B0951E9728190057BFB5 /* aacdec_hcrs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2D1E9728180057BFB5 /* aacdec_hcrs.h */; };
  38. 3706B0961E9728190057BFB5 /* aacdec_hcrs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2D1E9728180057BFB5 /* aacdec_hcrs.h */; };
  39. 3706B0971E9728190057BFB5 /* aacdec_pns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF2E1E9728180057BFB5 /* aacdec_pns.cpp */; };
  40. 3706B0981E9728190057BFB5 /* aacdec_pns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF2E1E9728180057BFB5 /* aacdec_pns.cpp */; };
  41. 3706B0991E9728190057BFB5 /* aacdec_pns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2F1E9728180057BFB5 /* aacdec_pns.h */; };
  42. 3706B09A1E9728190057BFB5 /* aacdec_pns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF2F1E9728180057BFB5 /* aacdec_pns.h */; };
  43. 3706B09B1E9728190057BFB5 /* aacdec_tns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF301E9728180057BFB5 /* aacdec_tns.cpp */; };
  44. 3706B09C1E9728190057BFB5 /* aacdec_tns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF301E9728180057BFB5 /* aacdec_tns.cpp */; };
  45. 3706B09D1E9728190057BFB5 /* aacdec_tns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF311E9728180057BFB5 /* aacdec_tns.h */; };
  46. 3706B09E1E9728190057BFB5 /* aacdec_tns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF311E9728180057BFB5 /* aacdec_tns.h */; };
  47. 3706B09F1E9728190057BFB5 /* aacdecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF321E9728180057BFB5 /* aacdecoder.cpp */; };
  48. 3706B0A01E9728190057BFB5 /* aacdecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF321E9728180057BFB5 /* aacdecoder.cpp */; };
  49. 3706B0A11E9728190057BFB5 /* aacdecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF331E9728180057BFB5 /* aacdecoder.h */; };
  50. 3706B0A21E9728190057BFB5 /* aacdecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF331E9728180057BFB5 /* aacdecoder.h */; };
  51. 3706B0A31E9728190057BFB5 /* aacdecoder_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF341E9728180057BFB5 /* aacdecoder_lib.cpp */; };
  52. 3706B0A41E9728190057BFB5 /* aacdecoder_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF341E9728180057BFB5 /* aacdecoder_lib.cpp */; };
  53. 3706B0A71E9728190057BFB5 /* block.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF371E9728180057BFB5 /* block.cpp */; };
  54. 3706B0A81E9728190057BFB5 /* block.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF371E9728180057BFB5 /* block.cpp */; };
  55. 3706B0A91E9728190057BFB5 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF381E9728180057BFB5 /* block.h */; };
  56. 3706B0AA1E9728190057BFB5 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF381E9728180057BFB5 /* block.h */; };
  57. 3706B0AB1E9728190057BFB5 /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF391E9728180057BFB5 /* channel.cpp */; };
  58. 3706B0AC1E9728190057BFB5 /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF391E9728180057BFB5 /* channel.cpp */; };
  59. 3706B0AD1E9728190057BFB5 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3A1E9728180057BFB5 /* channel.h */; };
  60. 3706B0AE1E9728190057BFB5 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3A1E9728180057BFB5 /* channel.h */; };
  61. 3706B0AF1E9728190057BFB5 /* channelinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF3B1E9728180057BFB5 /* channelinfo.cpp */; };
  62. 3706B0B01E9728190057BFB5 /* channelinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF3B1E9728180057BFB5 /* channelinfo.cpp */; };
  63. 3706B0B11E9728190057BFB5 /* channelinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3C1E9728180057BFB5 /* channelinfo.h */; };
  64. 3706B0B21E9728190057BFB5 /* channelinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3C1E9728180057BFB5 /* channelinfo.h */; };
  65. 3706B0B31E9728190057BFB5 /* conceal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF3D1E9728180057BFB5 /* conceal.cpp */; };
  66. 3706B0B41E9728190057BFB5 /* conceal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF3D1E9728180057BFB5 /* conceal.cpp */; };
  67. 3706B0B51E9728190057BFB5 /* conceal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3E1E9728180057BFB5 /* conceal.h */; };
  68. 3706B0B61E9728190057BFB5 /* conceal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3E1E9728180057BFB5 /* conceal.h */; };
  69. 3706B0B71E9728190057BFB5 /* conceal_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3F1E9728180057BFB5 /* conceal_types.h */; };
  70. 3706B0B81E9728190057BFB5 /* conceal_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF3F1E9728180057BFB5 /* conceal_types.h */; };
  71. 3706B0B91E9728190057BFB5 /* debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF401E9728180057BFB5 /* debug.h */; };
  72. 3706B0BA1E9728190057BFB5 /* debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF401E9728180057BFB5 /* debug.h */; };
  73. 3706B0BB1E9728190057BFB5 /* ldfiltbank.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF411E9728180057BFB5 /* ldfiltbank.cpp */; };
  74. 3706B0BC1E9728190057BFB5 /* ldfiltbank.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF411E9728180057BFB5 /* ldfiltbank.cpp */; };
  75. 3706B0BD1E9728190057BFB5 /* ldfiltbank.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF421E9728180057BFB5 /* ldfiltbank.h */; };
  76. 3706B0BE1E9728190057BFB5 /* ldfiltbank.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF421E9728180057BFB5 /* ldfiltbank.h */; };
  77. 3706B0BF1E9728190057BFB5 /* overlapadd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF431E9728180057BFB5 /* overlapadd.h */; };
  78. 3706B0C01E9728190057BFB5 /* overlapadd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF431E9728180057BFB5 /* overlapadd.h */; };
  79. 3706B0C11E9728190057BFB5 /* pulsedata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF441E9728180057BFB5 /* pulsedata.cpp */; };
  80. 3706B0C21E9728190057BFB5 /* pulsedata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF441E9728180057BFB5 /* pulsedata.cpp */; };
  81. 3706B0C31E9728190057BFB5 /* pulsedata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF451E9728180057BFB5 /* pulsedata.h */; };
  82. 3706B0C41E9728190057BFB5 /* pulsedata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF451E9728180057BFB5 /* pulsedata.h */; };
  83. 3706B0C51E9728190057BFB5 /* rvlc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF461E9728180057BFB5 /* rvlc.cpp */; };
  84. 3706B0C61E9728190057BFB5 /* rvlc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF461E9728180057BFB5 /* rvlc.cpp */; };
  85. 3706B0C71E9728190057BFB5 /* rvlc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF471E9728180057BFB5 /* rvlc.h */; };
  86. 3706B0C81E9728190057BFB5 /* rvlc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF471E9728180057BFB5 /* rvlc.h */; };
  87. 3706B0C91E9728190057BFB5 /* rvlc_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF481E9728180057BFB5 /* rvlc_info.h */; };
  88. 3706B0CA1E9728190057BFB5 /* rvlc_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF481E9728180057BFB5 /* rvlc_info.h */; };
  89. 3706B0CB1E9728190057BFB5 /* rvlcbit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF491E9728180057BFB5 /* rvlcbit.cpp */; };
  90. 3706B0CC1E9728190057BFB5 /* rvlcbit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF491E9728180057BFB5 /* rvlcbit.cpp */; };
  91. 3706B0CD1E9728190057BFB5 /* rvlcbit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4A1E9728180057BFB5 /* rvlcbit.h */; };
  92. 3706B0CE1E9728190057BFB5 /* rvlcbit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4A1E9728180057BFB5 /* rvlcbit.h */; };
  93. 3706B0CF1E9728190057BFB5 /* rvlcconceal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF4B1E9728180057BFB5 /* rvlcconceal.cpp */; };
  94. 3706B0D01E9728190057BFB5 /* rvlcconceal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF4B1E9728180057BFB5 /* rvlcconceal.cpp */; };
  95. 3706B0D11E9728190057BFB5 /* rvlcconceal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4C1E9728180057BFB5 /* rvlcconceal.h */; };
  96. 3706B0D21E9728190057BFB5 /* rvlcconceal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4C1E9728180057BFB5 /* rvlcconceal.h */; };
  97. 3706B0D31E9728190057BFB5 /* stereo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF4D1E9728180057BFB5 /* stereo.cpp */; };
  98. 3706B0D41E9728190057BFB5 /* stereo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF4D1E9728180057BFB5 /* stereo.cpp */; };
  99. 3706B0D51E9728190057BFB5 /* stereo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4E1E9728180057BFB5 /* stereo.h */; };
  100. 3706B0D61E9728190057BFB5 /* stereo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF4E1E9728180057BFB5 /* stereo.h */; };
  101. 3706B0D71E9728190057BFB5 /* aacenc_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF511E9728180057BFB5 /* aacenc_lib.h */; };
  102. 3706B0D81E9728190057BFB5 /* aacenc_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF511E9728180057BFB5 /* aacenc_lib.h */; };
  103. 3706B0D91E9728190057BFB5 /* aacenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF531E9728180057BFB5 /* aacenc.cpp */; };
  104. 3706B0DA1E9728190057BFB5 /* aacenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF531E9728180057BFB5 /* aacenc.cpp */; };
  105. 3706B0DB1E9728190057BFB5 /* aacenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF541E9728180057BFB5 /* aacenc.h */; };
  106. 3706B0DC1E9728190057BFB5 /* aacenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF541E9728180057BFB5 /* aacenc.h */; };
  107. 3706B0DD1E9728190057BFB5 /* aacenc_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF551E9728180057BFB5 /* aacenc_lib.cpp */; };
  108. 3706B0DE1E9728190057BFB5 /* aacenc_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF551E9728180057BFB5 /* aacenc_lib.cpp */; };
  109. 3706B0DF1E9728190057BFB5 /* aacenc_pns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF561E9728180057BFB5 /* aacenc_pns.cpp */; };
  110. 3706B0E01E9728190057BFB5 /* aacenc_pns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF561E9728180057BFB5 /* aacenc_pns.cpp */; };
  111. 3706B0E11E9728190057BFB5 /* aacenc_pns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF571E9728180057BFB5 /* aacenc_pns.h */; };
  112. 3706B0E21E9728190057BFB5 /* aacenc_pns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF571E9728180057BFB5 /* aacenc_pns.h */; };
  113. 3706B0E31E9728190057BFB5 /* aacEnc_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF581E9728180057BFB5 /* aacEnc_ram.cpp */; };
  114. 3706B0E41E9728190057BFB5 /* aacEnc_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF581E9728180057BFB5 /* aacEnc_ram.cpp */; };
  115. 3706B0E51E9728190057BFB5 /* aacEnc_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF591E9728180057BFB5 /* aacEnc_ram.h */; };
  116. 3706B0E61E9728190057BFB5 /* aacEnc_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF591E9728180057BFB5 /* aacEnc_ram.h */; };
  117. 3706B0E71E9728190057BFB5 /* aacEnc_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5A1E9728180057BFB5 /* aacEnc_rom.cpp */; };
  118. 3706B0E81E9728190057BFB5 /* aacEnc_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5A1E9728180057BFB5 /* aacEnc_rom.cpp */; };
  119. 3706B0E91E9728190057BFB5 /* aacEnc_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5B1E9728180057BFB5 /* aacEnc_rom.h */; };
  120. 3706B0EA1E9728190057BFB5 /* aacEnc_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5B1E9728180057BFB5 /* aacEnc_rom.h */; };
  121. 3706B0EB1E9728190057BFB5 /* aacenc_tns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5C1E9728180057BFB5 /* aacenc_tns.cpp */; };
  122. 3706B0EC1E9728190057BFB5 /* aacenc_tns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5C1E9728180057BFB5 /* aacenc_tns.cpp */; };
  123. 3706B0ED1E9728190057BFB5 /* aacenc_tns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5D1E9728180057BFB5 /* aacenc_tns.h */; };
  124. 3706B0EE1E9728190057BFB5 /* aacenc_tns.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5D1E9728180057BFB5 /* aacenc_tns.h */; };
  125. 3706B0EF1E9728190057BFB5 /* adj_thr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5E1E9728180057BFB5 /* adj_thr.cpp */; };
  126. 3706B0F01E9728190057BFB5 /* adj_thr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF5E1E9728180057BFB5 /* adj_thr.cpp */; };
  127. 3706B0F11E9728190057BFB5 /* adj_thr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5F1E9728180057BFB5 /* adj_thr.h */; };
  128. 3706B0F21E9728190057BFB5 /* adj_thr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF5F1E9728180057BFB5 /* adj_thr.h */; };
  129. 3706B0F31E9728190057BFB5 /* adj_thr_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF601E9728180057BFB5 /* adj_thr_data.h */; };
  130. 3706B0F41E9728190057BFB5 /* adj_thr_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF601E9728180057BFB5 /* adj_thr_data.h */; };
  131. 3706B0F51E9728190057BFB5 /* band_nrg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF611E9728180057BFB5 /* band_nrg.cpp */; };
  132. 3706B0F61E9728190057BFB5 /* band_nrg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF611E9728180057BFB5 /* band_nrg.cpp */; };
  133. 3706B0F71E9728190057BFB5 /* band_nrg.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF621E9728180057BFB5 /* band_nrg.h */; };
  134. 3706B0F81E9728190057BFB5 /* band_nrg.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF621E9728180057BFB5 /* band_nrg.h */; };
  135. 3706B0F91E9728190057BFB5 /* bandwidth.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF631E9728180057BFB5 /* bandwidth.cpp */; };
  136. 3706B0FA1E9728190057BFB5 /* bandwidth.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF631E9728180057BFB5 /* bandwidth.cpp */; };
  137. 3706B0FB1E9728190057BFB5 /* bandwidth.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF641E9728180057BFB5 /* bandwidth.h */; };
  138. 3706B0FC1E9728190057BFB5 /* bandwidth.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF641E9728180057BFB5 /* bandwidth.h */; };
  139. 3706B0FD1E9728190057BFB5 /* bit_cnt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF651E9728180057BFB5 /* bit_cnt.cpp */; };
  140. 3706B0FE1E9728190057BFB5 /* bit_cnt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF651E9728180057BFB5 /* bit_cnt.cpp */; };
  141. 3706B0FF1E9728190057BFB5 /* bit_cnt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF661E9728180057BFB5 /* bit_cnt.h */; };
  142. 3706B1001E9728190057BFB5 /* bit_cnt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF661E9728180057BFB5 /* bit_cnt.h */; };
  143. 3706B1011E9728190057BFB5 /* bitenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF671E9728180057BFB5 /* bitenc.cpp */; };
  144. 3706B1021E9728190057BFB5 /* bitenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF671E9728180057BFB5 /* bitenc.cpp */; };
  145. 3706B1031E9728190057BFB5 /* bitenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF681E9728180057BFB5 /* bitenc.h */; };
  146. 3706B1041E9728190057BFB5 /* bitenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF681E9728180057BFB5 /* bitenc.h */; };
  147. 3706B1051E9728190057BFB5 /* block_switch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF691E9728180057BFB5 /* block_switch.cpp */; };
  148. 3706B1061E9728190057BFB5 /* block_switch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF691E9728180057BFB5 /* block_switch.cpp */; };
  149. 3706B1071E9728190057BFB5 /* block_switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6A1E9728180057BFB5 /* block_switch.h */; };
  150. 3706B1081E9728190057BFB5 /* block_switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6A1E9728180057BFB5 /* block_switch.h */; };
  151. 3706B1091E9728190057BFB5 /* channel_map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6B1E9728180057BFB5 /* channel_map.cpp */; };
  152. 3706B10A1E9728190057BFB5 /* channel_map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6B1E9728180057BFB5 /* channel_map.cpp */; };
  153. 3706B10B1E9728190057BFB5 /* channel_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6C1E9728180057BFB5 /* channel_map.h */; };
  154. 3706B10C1E9728190057BFB5 /* channel_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6C1E9728180057BFB5 /* channel_map.h */; };
  155. 3706B10D1E9728190057BFB5 /* chaosmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6D1E9728180057BFB5 /* chaosmeasure.cpp */; };
  156. 3706B10E1E9728190057BFB5 /* chaosmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6D1E9728180057BFB5 /* chaosmeasure.cpp */; };
  157. 3706B10F1E9728190057BFB5 /* chaosmeasure.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6E1E9728180057BFB5 /* chaosmeasure.h */; };
  158. 3706B1101E9728190057BFB5 /* chaosmeasure.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF6E1E9728180057BFB5 /* chaosmeasure.h */; };
  159. 3706B1111E9728190057BFB5 /* dyn_bits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6F1E9728180057BFB5 /* dyn_bits.cpp */; };
  160. 3706B1121E9728190057BFB5 /* dyn_bits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF6F1E9728180057BFB5 /* dyn_bits.cpp */; };
  161. 3706B1131E9728190057BFB5 /* dyn_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF701E9728180057BFB5 /* dyn_bits.h */; };
  162. 3706B1141E9728190057BFB5 /* dyn_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF701E9728180057BFB5 /* dyn_bits.h */; };
  163. 3706B1151E9728190057BFB5 /* grp_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF711E9728180057BFB5 /* grp_data.cpp */; };
  164. 3706B1161E9728190057BFB5 /* grp_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF711E9728180057BFB5 /* grp_data.cpp */; };
  165. 3706B1171E9728190057BFB5 /* grp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF721E9728180057BFB5 /* grp_data.h */; };
  166. 3706B1181E9728190057BFB5 /* grp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF721E9728180057BFB5 /* grp_data.h */; };
  167. 3706B1191E9728190057BFB5 /* intensity.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF731E9728180057BFB5 /* intensity.cpp */; };
  168. 3706B11A1E9728190057BFB5 /* intensity.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF731E9728180057BFB5 /* intensity.cpp */; };
  169. 3706B11B1E9728190057BFB5 /* intensity.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF741E9728180057BFB5 /* intensity.h */; };
  170. 3706B11C1E9728190057BFB5 /* intensity.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF741E9728180057BFB5 /* intensity.h */; };
  171. 3706B11D1E9728190057BFB5 /* interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF751E9728180057BFB5 /* interface.h */; };
  172. 3706B11E1E9728190057BFB5 /* interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF751E9728180057BFB5 /* interface.h */; };
  173. 3706B11F1E9728190057BFB5 /* line_pe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF761E9728180057BFB5 /* line_pe.cpp */; };
  174. 3706B1201E9728190057BFB5 /* line_pe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF761E9728180057BFB5 /* line_pe.cpp */; };
  175. 3706B1211E9728190057BFB5 /* line_pe.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF771E9728180057BFB5 /* line_pe.h */; };
  176. 3706B1221E9728190057BFB5 /* line_pe.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF771E9728180057BFB5 /* line_pe.h */; };
  177. 3706B1231E9728190057BFB5 /* metadata_compressor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF781E9728180057BFB5 /* metadata_compressor.cpp */; };
  178. 3706B1241E9728190057BFB5 /* metadata_compressor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF781E9728180057BFB5 /* metadata_compressor.cpp */; };
  179. 3706B1251E9728190057BFB5 /* metadata_compressor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF791E9728180057BFB5 /* metadata_compressor.h */; };
  180. 3706B1261E9728190057BFB5 /* metadata_compressor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF791E9728180057BFB5 /* metadata_compressor.h */; };
  181. 3706B1271E9728190057BFB5 /* metadata_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7A1E9728180057BFB5 /* metadata_main.cpp */; };
  182. 3706B1281E9728190057BFB5 /* metadata_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7A1E9728180057BFB5 /* metadata_main.cpp */; };
  183. 3706B1291E9728190057BFB5 /* metadata_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7B1E9728180057BFB5 /* metadata_main.h */; };
  184. 3706B12A1E9728190057BFB5 /* metadata_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7B1E9728180057BFB5 /* metadata_main.h */; };
  185. 3706B12B1E9728190057BFB5 /* ms_stereo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7C1E9728180057BFB5 /* ms_stereo.cpp */; };
  186. 3706B12C1E9728190057BFB5 /* ms_stereo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7C1E9728180057BFB5 /* ms_stereo.cpp */; };
  187. 3706B12D1E9728190057BFB5 /* ms_stereo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7D1E9728180057BFB5 /* ms_stereo.h */; };
  188. 3706B12E1E9728190057BFB5 /* ms_stereo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7D1E9728180057BFB5 /* ms_stereo.h */; };
  189. 3706B12F1E9728190057BFB5 /* noisedet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7E1E9728180057BFB5 /* noisedet.cpp */; };
  190. 3706B1301E9728190057BFB5 /* noisedet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF7E1E9728180057BFB5 /* noisedet.cpp */; };
  191. 3706B1311E9728190057BFB5 /* noisedet.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7F1E9728180057BFB5 /* noisedet.h */; };
  192. 3706B1321E9728190057BFB5 /* noisedet.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF7F1E9728180057BFB5 /* noisedet.h */; };
  193. 3706B1331E9728190057BFB5 /* pns_func.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF801E9728180057BFB5 /* pns_func.h */; };
  194. 3706B1341E9728190057BFB5 /* pns_func.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF801E9728180057BFB5 /* pns_func.h */; };
  195. 3706B1351E9728190057BFB5 /* pnsparam.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF811E9728180057BFB5 /* pnsparam.cpp */; };
  196. 3706B1361E9728190057BFB5 /* pnsparam.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF811E9728180057BFB5 /* pnsparam.cpp */; };
  197. 3706B1371E9728190057BFB5 /* pnsparam.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF821E9728180057BFB5 /* pnsparam.h */; };
  198. 3706B1381E9728190057BFB5 /* pnsparam.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF821E9728180057BFB5 /* pnsparam.h */; };
  199. 3706B1391E9728190057BFB5 /* pre_echo_control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF831E9728180057BFB5 /* pre_echo_control.cpp */; };
  200. 3706B13A1E9728190057BFB5 /* pre_echo_control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF831E9728180057BFB5 /* pre_echo_control.cpp */; };
  201. 3706B13B1E9728190057BFB5 /* pre_echo_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF841E9728180057BFB5 /* pre_echo_control.h */; };
  202. 3706B13C1E9728190057BFB5 /* pre_echo_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF841E9728180057BFB5 /* pre_echo_control.h */; };
  203. 3706B13D1E9728190057BFB5 /* psy_configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF851E9728180057BFB5 /* psy_configuration.cpp */; };
  204. 3706B13E1E9728190057BFB5 /* psy_configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF851E9728180057BFB5 /* psy_configuration.cpp */; };
  205. 3706B13F1E9728190057BFB5 /* psy_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF861E9728180057BFB5 /* psy_configuration.h */; };
  206. 3706B1401E9728190057BFB5 /* psy_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF861E9728180057BFB5 /* psy_configuration.h */; };
  207. 3706B1411E9728190057BFB5 /* psy_const.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF871E9728180057BFB5 /* psy_const.h */; };
  208. 3706B1421E9728190057BFB5 /* psy_const.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF871E9728180057BFB5 /* psy_const.h */; };
  209. 3706B1431E9728190057BFB5 /* psy_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF881E9728180057BFB5 /* psy_data.h */; };
  210. 3706B1441E9728190057BFB5 /* psy_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF881E9728180057BFB5 /* psy_data.h */; };
  211. 3706B1451E9728190057BFB5 /* psy_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF891E9728180057BFB5 /* psy_main.cpp */; };
  212. 3706B1461E9728190057BFB5 /* psy_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF891E9728180057BFB5 /* psy_main.cpp */; };
  213. 3706B1471E9728190057BFB5 /* psy_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8A1E9728180057BFB5 /* psy_main.h */; };
  214. 3706B1481E9728190057BFB5 /* psy_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8A1E9728180057BFB5 /* psy_main.h */; };
  215. 3706B1491E9728190057BFB5 /* qc_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8B1E9728180057BFB5 /* qc_data.h */; };
  216. 3706B14A1E9728190057BFB5 /* qc_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8B1E9728180057BFB5 /* qc_data.h */; };
  217. 3706B14B1E9728190057BFB5 /* qc_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF8C1E9728180057BFB5 /* qc_main.cpp */; };
  218. 3706B14C1E9728190057BFB5 /* qc_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF8C1E9728180057BFB5 /* qc_main.cpp */; };
  219. 3706B14D1E9728190057BFB5 /* qc_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8D1E9728180057BFB5 /* qc_main.h */; };
  220. 3706B14E1E9728190057BFB5 /* qc_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8D1E9728180057BFB5 /* qc_main.h */; };
  221. 3706B14F1E9728190057BFB5 /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF8E1E9728180057BFB5 /* quantize.cpp */; };
  222. 3706B1501E9728190057BFB5 /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF8E1E9728180057BFB5 /* quantize.cpp */; };
  223. 3706B1511E9728190057BFB5 /* quantize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8F1E9728180057BFB5 /* quantize.h */; };
  224. 3706B1521E9728190057BFB5 /* quantize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF8F1E9728180057BFB5 /* quantize.h */; };
  225. 3706B1531E9728190057BFB5 /* sf_estim.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF901E9728180057BFB5 /* sf_estim.cpp */; };
  226. 3706B1541E9728190057BFB5 /* sf_estim.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF901E9728180057BFB5 /* sf_estim.cpp */; };
  227. 3706B1551E9728190057BFB5 /* sf_estim.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF911E9728180057BFB5 /* sf_estim.h */; };
  228. 3706B1561E9728190057BFB5 /* sf_estim.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF911E9728180057BFB5 /* sf_estim.h */; };
  229. 3706B1571E9728190057BFB5 /* spreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF921E9728180057BFB5 /* spreading.cpp */; };
  230. 3706B1581E9728190057BFB5 /* spreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF921E9728180057BFB5 /* spreading.cpp */; };
  231. 3706B1591E9728190057BFB5 /* spreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF931E9728180057BFB5 /* spreading.h */; };
  232. 3706B15A1E9728190057BFB5 /* spreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF931E9728180057BFB5 /* spreading.h */; };
  233. 3706B15B1E9728190057BFB5 /* tns_func.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF941E9728180057BFB5 /* tns_func.h */; };
  234. 3706B15C1E9728190057BFB5 /* tns_func.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF941E9728180057BFB5 /* tns_func.h */; };
  235. 3706B15D1E9728190057BFB5 /* tonality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF951E9728180057BFB5 /* tonality.cpp */; };
  236. 3706B15E1E9728190057BFB5 /* tonality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF951E9728180057BFB5 /* tonality.cpp */; };
  237. 3706B15F1E9728190057BFB5 /* tonality.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF961E9728180057BFB5 /* tonality.h */; };
  238. 3706B1601E9728190057BFB5 /* tonality.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF961E9728180057BFB5 /* tonality.h */; };
  239. 3706B1611E9728190057BFB5 /* transform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF971E9728180057BFB5 /* transform.cpp */; };
  240. 3706B1621E9728190057BFB5 /* transform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AF971E9728180057BFB5 /* transform.cpp */; };
  241. 3706B1631E9728190057BFB5 /* transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF981E9728180057BFB5 /* transform.h */; };
  242. 3706B1641E9728190057BFB5 /* transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF981E9728180057BFB5 /* transform.h */; };
  243. 3706B1691E9728190057BFB5 /* abs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF9E1E9728180057BFB5 /* abs.h */; };
  244. 3706B16A1E9728190057BFB5 /* abs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AF9E1E9728180057BFB5 /* abs.h */; };
  245. 3706B1771E9728190057BFB5 /* autocorr2nd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA61E9728180057BFB5 /* autocorr2nd.h */; };
  246. 3706B1781E9728190057BFB5 /* autocorr2nd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA61E9728180057BFB5 /* autocorr2nd.h */; };
  247. 3706B1791E9728190057BFB5 /* clz.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA71E9728180057BFB5 /* clz.h */; };
  248. 3706B17A1E9728190057BFB5 /* clz.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA71E9728180057BFB5 /* clz.h */; };
  249. 3706B17B1E9728190057BFB5 /* common_fix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA81E9728180057BFB5 /* common_fix.h */; };
  250. 3706B17C1E9728190057BFB5 /* common_fix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA81E9728180057BFB5 /* common_fix.h */; };
  251. 3706B17D1E9728190057BFB5 /* cplx_mul.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA91E9728180057BFB5 /* cplx_mul.h */; };
  252. 3706B17E1E9728190057BFB5 /* cplx_mul.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFA91E9728180057BFB5 /* cplx_mul.h */; };
  253. 3706B17F1E9728190057BFB5 /* dct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAA1E9728180057BFB5 /* dct.h */; };
  254. 3706B1801E9728190057BFB5 /* dct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAA1E9728180057BFB5 /* dct.h */; };
  255. 3706B1811E9728190057BFB5 /* FDK_archdef.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAB1E9728180057BFB5 /* FDK_archdef.h */; };
  256. 3706B1821E9728190057BFB5 /* FDK_archdef.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAB1E9728180057BFB5 /* FDK_archdef.h */; };
  257. 3706B1831E9728190057BFB5 /* FDK_bitbuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAC1E9728180057BFB5 /* FDK_bitbuffer.h */; };
  258. 3706B1841E9728190057BFB5 /* FDK_bitbuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAC1E9728180057BFB5 /* FDK_bitbuffer.h */; };
  259. 3706B1851E9728190057BFB5 /* FDK_bitstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAD1E9728180057BFB5 /* FDK_bitstream.h */; };
  260. 3706B1861E9728190057BFB5 /* FDK_bitstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAD1E9728180057BFB5 /* FDK_bitstream.h */; };
  261. 3706B1871E9728190057BFB5 /* FDK_core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAE1E9728180057BFB5 /* FDK_core.h */; };
  262. 3706B1881E9728190057BFB5 /* FDK_core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAE1E9728180057BFB5 /* FDK_core.h */; };
  263. 3706B1891E9728190057BFB5 /* FDK_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAF1E9728180057BFB5 /* FDK_crc.h */; };
  264. 3706B18A1E9728190057BFB5 /* FDK_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFAF1E9728180057BFB5 /* FDK_crc.h */; };
  265. 3706B18B1E9728190057BFB5 /* FDK_hybrid.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB01E9728180057BFB5 /* FDK_hybrid.h */; };
  266. 3706B18C1E9728190057BFB5 /* FDK_hybrid.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB01E9728180057BFB5 /* FDK_hybrid.h */; };
  267. 3706B18D1E9728190057BFB5 /* FDK_tools_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB11E9728180057BFB5 /* FDK_tools_rom.h */; };
  268. 3706B18E1E9728190057BFB5 /* FDK_tools_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB11E9728180057BFB5 /* FDK_tools_rom.h */; };
  269. 3706B18F1E9728190057BFB5 /* FDK_trigFcts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB21E9728180057BFB5 /* FDK_trigFcts.h */; };
  270. 3706B1901E9728190057BFB5 /* FDK_trigFcts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB21E9728180057BFB5 /* FDK_trigFcts.h */; };
  271. 3706B1911E9728190057BFB5 /* fft.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB31E9728180057BFB5 /* fft.h */; };
  272. 3706B1921E9728190057BFB5 /* fft.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB31E9728180057BFB5 /* fft.h */; };
  273. 3706B1931E9728190057BFB5 /* fft_rad2.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB41E9728180057BFB5 /* fft_rad2.h */; };
  274. 3706B1941E9728190057BFB5 /* fft_rad2.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB41E9728180057BFB5 /* fft_rad2.h */; };
  275. 3706B1951E9728190057BFB5 /* fixmadd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB51E9728180057BFB5 /* fixmadd.h */; };
  276. 3706B1961E9728190057BFB5 /* fixmadd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB51E9728180057BFB5 /* fixmadd.h */; };
  277. 3706B1971E9728190057BFB5 /* fixminmax.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB61E9728180057BFB5 /* fixminmax.h */; };
  278. 3706B1981E9728190057BFB5 /* fixminmax.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB61E9728180057BFB5 /* fixminmax.h */; };
  279. 3706B1991E9728190057BFB5 /* fixmul.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB71E9728180057BFB5 /* fixmul.h */; };
  280. 3706B19A1E9728190057BFB5 /* fixmul.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB71E9728180057BFB5 /* fixmul.h */; };
  281. 3706B19B1E9728190057BFB5 /* fixpoint_math.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB81E9728180057BFB5 /* fixpoint_math.h */; };
  282. 3706B19C1E9728190057BFB5 /* fixpoint_math.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB81E9728180057BFB5 /* fixpoint_math.h */; };
  283. 3706B19D1E9728190057BFB5 /* mdct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB91E9728180057BFB5 /* mdct.h */; };
  284. 3706B19E1E9728190057BFB5 /* mdct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFB91E9728180057BFB5 /* mdct.h */; };
  285. 3706B1B11E9728190057BFB5 /* qmf.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC51E9728180057BFB5 /* qmf.h */; };
  286. 3706B1B21E9728190057BFB5 /* qmf.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC51E9728180057BFB5 /* qmf.h */; };
  287. 3706B1B31E9728190057BFB5 /* scale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC61E9728180057BFB5 /* scale.h */; };
  288. 3706B1B41E9728190057BFB5 /* scale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC61E9728180057BFB5 /* scale.h */; };
  289. 3706B1B51E9728190057BFB5 /* scramble.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC71E9728180057BFB5 /* scramble.h */; };
  290. 3706B1B61E9728190057BFB5 /* scramble.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFC71E9728180057BFB5 /* scramble.h */; };
  291. 3706B1C71E9728190057BFB5 /* autocorr2nd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD31E9728180057BFB5 /* autocorr2nd.cpp */; };
  292. 3706B1C81E9728190057BFB5 /* autocorr2nd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD31E9728180057BFB5 /* autocorr2nd.cpp */; };
  293. 3706B1C91E9728190057BFB5 /* dct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD41E9728180057BFB5 /* dct.cpp */; };
  294. 3706B1CA1E9728190057BFB5 /* dct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD41E9728180057BFB5 /* dct.cpp */; };
  295. 3706B1CB1E9728190057BFB5 /* FDK_bitbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD51E9728180057BFB5 /* FDK_bitbuffer.cpp */; };
  296. 3706B1CC1E9728190057BFB5 /* FDK_bitbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD51E9728180057BFB5 /* FDK_bitbuffer.cpp */; };
  297. 3706B1CD1E9728190057BFB5 /* FDK_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD61E9728180057BFB5 /* FDK_core.cpp */; };
  298. 3706B1CE1E9728190057BFB5 /* FDK_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD61E9728180057BFB5 /* FDK_core.cpp */; };
  299. 3706B1CF1E9728190057BFB5 /* FDK_crc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD71E9728180057BFB5 /* FDK_crc.cpp */; };
  300. 3706B1D01E9728190057BFB5 /* FDK_crc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD71E9728180057BFB5 /* FDK_crc.cpp */; };
  301. 3706B1D11E9728190057BFB5 /* FDK_hybrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD81E9728180057BFB5 /* FDK_hybrid.cpp */; };
  302. 3706B1D21E9728190057BFB5 /* FDK_hybrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD81E9728180057BFB5 /* FDK_hybrid.cpp */; };
  303. 3706B1D31E9728190057BFB5 /* FDK_tools_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD91E9728180057BFB5 /* FDK_tools_rom.cpp */; };
  304. 3706B1D41E9728190057BFB5 /* FDK_tools_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFD91E9728180057BFB5 /* FDK_tools_rom.cpp */; };
  305. 3706B1D51E9728190057BFB5 /* FDK_trigFcts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDA1E9728180057BFB5 /* FDK_trigFcts.cpp */; };
  306. 3706B1D61E9728190057BFB5 /* FDK_trigFcts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDA1E9728180057BFB5 /* FDK_trigFcts.cpp */; };
  307. 3706B1D71E9728190057BFB5 /* fft.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDB1E9728180057BFB5 /* fft.cpp */; };
  308. 3706B1D81E9728190057BFB5 /* fft.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDB1E9728180057BFB5 /* fft.cpp */; };
  309. 3706B1D91E9728190057BFB5 /* fft_rad2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDC1E9728180057BFB5 /* fft_rad2.cpp */; };
  310. 3706B1DA1E9728190057BFB5 /* fft_rad2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDC1E9728180057BFB5 /* fft_rad2.cpp */; };
  311. 3706B1DB1E9728190057BFB5 /* fixpoint_math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDD1E9728180057BFB5 /* fixpoint_math.cpp */; };
  312. 3706B1DC1E9728190057BFB5 /* fixpoint_math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDD1E9728180057BFB5 /* fixpoint_math.cpp */; };
  313. 3706B1DD1E9728190057BFB5 /* mdct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDE1E9728180057BFB5 /* mdct.cpp */; };
  314. 3706B1DE1E9728190057BFB5 /* mdct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFDE1E9728180057BFB5 /* mdct.cpp */; };
  315. 3706B1E51E9728190057BFB5 /* qmf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFE31E9728180057BFB5 /* qmf.cpp */; };
  316. 3706B1E61E9728190057BFB5 /* qmf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFE31E9728180057BFB5 /* qmf.cpp */; };
  317. 3706B1E71E9728190057BFB5 /* scale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFE41E9728180057BFB5 /* scale.cpp */; };
  318. 3706B1E81E9728190057BFB5 /* scale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFE41E9728180057BFB5 /* scale.cpp */; };
  319. 3706B1E91E9728190057BFB5 /* mpegFileRead.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE71E9728180057BFB5 /* mpegFileRead.h */; };
  320. 3706B1EA1E9728190057BFB5 /* mpegFileRead.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE71E9728180057BFB5 /* mpegFileRead.h */; };
  321. 3706B1EB1E9728190057BFB5 /* tp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE81E9728180057BFB5 /* tp_data.h */; };
  322. 3706B1EC1E9728190057BFB5 /* tp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE81E9728180057BFB5 /* tp_data.h */; };
  323. 3706B1ED1E9728190057BFB5 /* tpdec_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE91E9728180057BFB5 /* tpdec_lib.h */; };
  324. 3706B1EE1E9728190057BFB5 /* tpdec_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFE91E9728180057BFB5 /* tpdec_lib.h */; };
  325. 3706B1EF1E9728190057BFB5 /* mpegFileFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFEB1E9728180057BFB5 /* mpegFileFormat.h */; };
  326. 3706B1F01E9728190057BFB5 /* mpegFileFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFEB1E9728180057BFB5 /* mpegFileFormat.h */; };
  327. 3706B1F11E9728190057BFB5 /* tpdec_adif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFEC1E9728180057BFB5 /* tpdec_adif.cpp */; };
  328. 3706B1F21E9728190057BFB5 /* tpdec_adif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFEC1E9728180057BFB5 /* tpdec_adif.cpp */; };
  329. 3706B1F31E9728190057BFB5 /* tpdec_adif.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFED1E9728180057BFB5 /* tpdec_adif.h */; };
  330. 3706B1F41E9728190057BFB5 /* tpdec_adif.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFED1E9728180057BFB5 /* tpdec_adif.h */; };
  331. 3706B1F51E9728190057BFB5 /* tpdec_adts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFEE1E9728180057BFB5 /* tpdec_adts.cpp */; };
  332. 3706B1F61E9728190057BFB5 /* tpdec_adts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFEE1E9728180057BFB5 /* tpdec_adts.cpp */; };
  333. 3706B1F71E9728190057BFB5 /* tpdec_adts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFEF1E9728180057BFB5 /* tpdec_adts.h */; };
  334. 3706B1F81E9728190057BFB5 /* tpdec_adts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFEF1E9728180057BFB5 /* tpdec_adts.h */; };
  335. 3706B1F91E9728190057BFB5 /* tpdec_asc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF01E9728180057BFB5 /* tpdec_asc.cpp */; };
  336. 3706B1FA1E9728190057BFB5 /* tpdec_asc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF01E9728180057BFB5 /* tpdec_asc.cpp */; };
  337. 3706B1FB1E9728190057BFB5 /* tpdec_drm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF11E9728180057BFB5 /* tpdec_drm.cpp */; };
  338. 3706B1FC1E9728190057BFB5 /* tpdec_drm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF11E9728180057BFB5 /* tpdec_drm.cpp */; };
  339. 3706B1FD1E9728190057BFB5 /* tpdec_drm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF21E9728180057BFB5 /* tpdec_drm.h */; };
  340. 3706B1FE1E9728190057BFB5 /* tpdec_drm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF21E9728180057BFB5 /* tpdec_drm.h */; };
  341. 3706B1FF1E9728190057BFB5 /* tpdec_latm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF31E9728180057BFB5 /* tpdec_latm.cpp */; };
  342. 3706B2001E9728190057BFB5 /* tpdec_latm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF31E9728180057BFB5 /* tpdec_latm.cpp */; };
  343. 3706B2011E9728190057BFB5 /* tpdec_latm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF41E9728180057BFB5 /* tpdec_latm.h */; };
  344. 3706B2021E9728190057BFB5 /* tpdec_latm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF41E9728180057BFB5 /* tpdec_latm.h */; };
  345. 3706B2031E9728190057BFB5 /* tpdec_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF51E9728180057BFB5 /* tpdec_lib.cpp */; };
  346. 3706B2041E9728190057BFB5 /* tpdec_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFF51E9728180057BFB5 /* tpdec_lib.cpp */; };
  347. 3706B2051E9728190057BFB5 /* mpegFileWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF91E9728180057BFB5 /* mpegFileWrite.h */; };
  348. 3706B2061E9728190057BFB5 /* mpegFileWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFF91E9728180057BFB5 /* mpegFileWrite.h */; };
  349. 3706B2071E9728190057BFB5 /* tp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFA1E9728180057BFB5 /* tp_data.h */; };
  350. 3706B2081E9728190057BFB5 /* tp_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFA1E9728180057BFB5 /* tp_data.h */; };
  351. 3706B2091E9728190057BFB5 /* tpenc_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFB1E9728180057BFB5 /* tpenc_lib.h */; };
  352. 3706B20A1E9728190057BFB5 /* tpenc_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFB1E9728180057BFB5 /* tpenc_lib.h */; };
  353. 3706B20B1E9728190057BFB5 /* tpenc_adif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFFD1E9728180057BFB5 /* tpenc_adif.cpp */; };
  354. 3706B20C1E9728190057BFB5 /* tpenc_adif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFFD1E9728180057BFB5 /* tpenc_adif.cpp */; };
  355. 3706B20D1E9728190057BFB5 /* tpenc_adif.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFE1E9728180057BFB5 /* tpenc_adif.h */; };
  356. 3706B20E1E9728190057BFB5 /* tpenc_adif.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706AFFE1E9728180057BFB5 /* tpenc_adif.h */; };
  357. 3706B20F1E9728190057BFB5 /* tpenc_adts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFFF1E9728180057BFB5 /* tpenc_adts.cpp */; };
  358. 3706B2101E9728190057BFB5 /* tpenc_adts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706AFFF1E9728180057BFB5 /* tpenc_adts.cpp */; };
  359. 3706B2111E9728190057BFB5 /* tpenc_adts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0001E9728180057BFB5 /* tpenc_adts.h */; };
  360. 3706B2121E9728190057BFB5 /* tpenc_adts.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0001E9728180057BFB5 /* tpenc_adts.h */; };
  361. 3706B2131E9728190057BFB5 /* tpenc_asc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0011E9728180057BFB5 /* tpenc_asc.cpp */; };
  362. 3706B2141E9728190057BFB5 /* tpenc_asc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0011E9728180057BFB5 /* tpenc_asc.cpp */; };
  363. 3706B2151E9728190057BFB5 /* tpenc_asc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0021E9728180057BFB5 /* tpenc_asc.h */; };
  364. 3706B2161E9728190057BFB5 /* tpenc_asc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0021E9728180057BFB5 /* tpenc_asc.h */; };
  365. 3706B2171E9728190057BFB5 /* tpenc_latm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0031E9728180057BFB5 /* tpenc_latm.cpp */; };
  366. 3706B2181E9728190057BFB5 /* tpenc_latm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0031E9728180057BFB5 /* tpenc_latm.cpp */; };
  367. 3706B2191E9728190057BFB5 /* tpenc_latm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0041E9728180057BFB5 /* tpenc_latm.h */; };
  368. 3706B21A1E9728190057BFB5 /* tpenc_latm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0041E9728180057BFB5 /* tpenc_latm.h */; };
  369. 3706B21B1E9728190057BFB5 /* tpenc_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0051E9728180057BFB5 /* tpenc_lib.cpp */; };
  370. 3706B21C1E9728190057BFB5 /* tpenc_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0051E9728180057BFB5 /* tpenc_lib.cpp */; };
  371. 3706B21D1E9728190057BFB5 /* limiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0091E9728180057BFB5 /* limiter.h */; };
  372. 3706B21E1E9728190057BFB5 /* limiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0091E9728180057BFB5 /* limiter.h */; };
  373. 3706B21F1E9728190057BFB5 /* pcmutils_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B00A1E9728180057BFB5 /* pcmutils_lib.h */; };
  374. 3706B2201E9728190057BFB5 /* pcmutils_lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B00A1E9728180057BFB5 /* pcmutils_lib.h */; };
  375. 3706B2211E9728190057BFB5 /* limiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B00C1E9728180057BFB5 /* limiter.cpp */; };
  376. 3706B2221E9728190057BFB5 /* limiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B00C1E9728180057BFB5 /* limiter.cpp */; };
  377. 3706B2231E9728190057BFB5 /* pcmutils_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B00D1E9728180057BFB5 /* pcmutils_lib.cpp */; };
  378. 3706B2241E9728190057BFB5 /* pcmutils_lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B00D1E9728180057BFB5 /* pcmutils_lib.cpp */; };
  379. 3706B2251E9728190057BFB5 /* sbrdecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0101E9728180057BFB5 /* sbrdecoder.h */; };
  380. 3706B2261E9728190057BFB5 /* sbrdecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0101E9728180057BFB5 /* sbrdecoder.h */; };
  381. 3706B22B1E9728190057BFB5 /* env_calc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0151E9728180057BFB5 /* env_calc.cpp */; };
  382. 3706B22C1E9728190057BFB5 /* env_calc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0151E9728180057BFB5 /* env_calc.cpp */; };
  383. 3706B22D1E9728190057BFB5 /* env_calc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0161E9728180057BFB5 /* env_calc.h */; };
  384. 3706B22E1E9728190057BFB5 /* env_calc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0161E9728180057BFB5 /* env_calc.h */; };
  385. 3706B22F1E9728190057BFB5 /* env_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0171E9728180057BFB5 /* env_dec.cpp */; };
  386. 3706B2301E9728190057BFB5 /* env_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0171E9728180057BFB5 /* env_dec.cpp */; };
  387. 3706B2311E9728190057BFB5 /* env_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0181E9728180057BFB5 /* env_dec.h */; };
  388. 3706B2321E9728190057BFB5 /* env_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0181E9728180057BFB5 /* env_dec.h */; };
  389. 3706B2331E9728190057BFB5 /* env_extr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0191E9728180057BFB5 /* env_extr.cpp */; };
  390. 3706B2341E9728190057BFB5 /* env_extr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0191E9728180057BFB5 /* env_extr.cpp */; };
  391. 3706B2351E9728190057BFB5 /* env_extr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01A1E9728180057BFB5 /* env_extr.h */; };
  392. 3706B2361E9728190057BFB5 /* env_extr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01A1E9728180057BFB5 /* env_extr.h */; };
  393. 3706B2371E9728190057BFB5 /* huff_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01B1E9728180057BFB5 /* huff_dec.cpp */; };
  394. 3706B2381E9728190057BFB5 /* huff_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01B1E9728180057BFB5 /* huff_dec.cpp */; };
  395. 3706B2391E9728190057BFB5 /* huff_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01C1E9728180057BFB5 /* huff_dec.h */; };
  396. 3706B23A1E9728190057BFB5 /* huff_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01C1E9728180057BFB5 /* huff_dec.h */; };
  397. 3706B23B1E9728190057BFB5 /* lpp_tran.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01D1E9728180057BFB5 /* lpp_tran.cpp */; };
  398. 3706B23C1E9728190057BFB5 /* lpp_tran.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01D1E9728180057BFB5 /* lpp_tran.cpp */; };
  399. 3706B23D1E9728190057BFB5 /* lpp_tran.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01E1E9728180057BFB5 /* lpp_tran.h */; };
  400. 3706B23E1E9728190057BFB5 /* lpp_tran.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B01E1E9728180057BFB5 /* lpp_tran.h */; };
  401. 3706B23F1E9728190057BFB5 /* psbitdec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01F1E9728180057BFB5 /* psbitdec.cpp */; };
  402. 3706B2401E9728190057BFB5 /* psbitdec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B01F1E9728180057BFB5 /* psbitdec.cpp */; };
  403. 3706B2411E9728190057BFB5 /* psbitdec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0201E9728180057BFB5 /* psbitdec.h */; };
  404. 3706B2421E9728190057BFB5 /* psbitdec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0201E9728180057BFB5 /* psbitdec.h */; };
  405. 3706B2431E9728190057BFB5 /* psdec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0211E9728180057BFB5 /* psdec.cpp */; };
  406. 3706B2441E9728190057BFB5 /* psdec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0211E9728180057BFB5 /* psdec.cpp */; };
  407. 3706B2451E9728190057BFB5 /* psdec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0221E9728180057BFB5 /* psdec.h */; };
  408. 3706B2461E9728190057BFB5 /* psdec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0221E9728180057BFB5 /* psdec.h */; };
  409. 3706B2471E9728190057BFB5 /* psdec_hybrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0231E9728180057BFB5 /* psdec_hybrid.cpp */; };
  410. 3706B2481E9728190057BFB5 /* psdec_hybrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0231E9728180057BFB5 /* psdec_hybrid.cpp */; };
  411. 3706B2491E9728190057BFB5 /* psdec_hybrid.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0241E9728180057BFB5 /* psdec_hybrid.h */; };
  412. 3706B24A1E9728190057BFB5 /* psdec_hybrid.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0241E9728180057BFB5 /* psdec_hybrid.h */; };
  413. 3706B24B1E9728190057BFB5 /* sbr_crc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0251E9728180057BFB5 /* sbr_crc.cpp */; };
  414. 3706B24C1E9728190057BFB5 /* sbr_crc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0251E9728180057BFB5 /* sbr_crc.cpp */; };
  415. 3706B24D1E9728190057BFB5 /* sbr_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0261E9728180057BFB5 /* sbr_crc.h */; };
  416. 3706B24E1E9728190057BFB5 /* sbr_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0261E9728180057BFB5 /* sbr_crc.h */; };
  417. 3706B24F1E9728190057BFB5 /* sbr_deb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0271E9728180057BFB5 /* sbr_deb.cpp */; };
  418. 3706B2501E9728190057BFB5 /* sbr_deb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0271E9728180057BFB5 /* sbr_deb.cpp */; };
  419. 3706B2511E9728190057BFB5 /* sbr_deb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0281E9728180057BFB5 /* sbr_deb.h */; };
  420. 3706B2521E9728190057BFB5 /* sbr_deb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0281E9728180057BFB5 /* sbr_deb.h */; };
  421. 3706B2531E9728190057BFB5 /* sbr_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0291E9728180057BFB5 /* sbr_dec.cpp */; };
  422. 3706B2541E9728190057BFB5 /* sbr_dec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0291E9728180057BFB5 /* sbr_dec.cpp */; };
  423. 3706B2551E9728190057BFB5 /* sbr_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02A1E9728180057BFB5 /* sbr_dec.h */; };
  424. 3706B2561E9728190057BFB5 /* sbr_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02A1E9728180057BFB5 /* sbr_dec.h */; };
  425. 3706B2571E9728190057BFB5 /* sbr_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B02B1E9728180057BFB5 /* sbr_ram.cpp */; };
  426. 3706B2581E9728190057BFB5 /* sbr_ram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B02B1E9728180057BFB5 /* sbr_ram.cpp */; };
  427. 3706B2591E9728190057BFB5 /* sbr_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02C1E9728180057BFB5 /* sbr_ram.h */; };
  428. 3706B25A1E9728190057BFB5 /* sbr_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02C1E9728180057BFB5 /* sbr_ram.h */; };
  429. 3706B25B1E9728190057BFB5 /* sbr_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B02D1E9728180057BFB5 /* sbr_rom.cpp */; };
  430. 3706B25C1E9728190057BFB5 /* sbr_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B02D1E9728180057BFB5 /* sbr_rom.cpp */; };
  431. 3706B25D1E9728190057BFB5 /* sbr_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02E1E9728180057BFB5 /* sbr_rom.h */; };
  432. 3706B25E1E9728190057BFB5 /* sbr_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02E1E9728180057BFB5 /* sbr_rom.h */; };
  433. 3706B25F1E9728190057BFB5 /* sbr_scale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02F1E9728180057BFB5 /* sbr_scale.h */; };
  434. 3706B2601E9728190057BFB5 /* sbr_scale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B02F1E9728180057BFB5 /* sbr_scale.h */; };
  435. 3706B2611E9728190057BFB5 /* sbrdec_drc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0301E9728180057BFB5 /* sbrdec_drc.cpp */; };
  436. 3706B2621E9728190057BFB5 /* sbrdec_drc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0301E9728180057BFB5 /* sbrdec_drc.cpp */; };
  437. 3706B2631E9728190057BFB5 /* sbrdec_drc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0311E9728180057BFB5 /* sbrdec_drc.h */; };
  438. 3706B2641E9728190057BFB5 /* sbrdec_drc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0311E9728180057BFB5 /* sbrdec_drc.h */; };
  439. 3706B2651E9728190057BFB5 /* sbrdec_freq_sca.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0321E9728180057BFB5 /* sbrdec_freq_sca.cpp */; };
  440. 3706B2661E9728190057BFB5 /* sbrdec_freq_sca.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0321E9728180057BFB5 /* sbrdec_freq_sca.cpp */; };
  441. 3706B2671E9728190057BFB5 /* sbrdec_freq_sca.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0331E9728180057BFB5 /* sbrdec_freq_sca.h */; };
  442. 3706B2681E9728190057BFB5 /* sbrdec_freq_sca.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0331E9728180057BFB5 /* sbrdec_freq_sca.h */; };
  443. 3706B2691E9728190057BFB5 /* sbrdecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0341E9728180057BFB5 /* sbrdecoder.cpp */; };
  444. 3706B26A1E9728190057BFB5 /* sbrdecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0341E9728180057BFB5 /* sbrdecoder.cpp */; };
  445. 3706B26B1E9728190057BFB5 /* transcendent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0351E9728180057BFB5 /* transcendent.h */; };
  446. 3706B26C1E9728190057BFB5 /* transcendent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0351E9728180057BFB5 /* transcendent.h */; };
  447. 3706B26D1E9728190057BFB5 /* sbr_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0381E9728180057BFB5 /* sbr_encoder.h */; };
  448. 3706B26E1E9728190057BFB5 /* sbr_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0381E9728180057BFB5 /* sbr_encoder.h */; };
  449. 3706B26F1E9728190057BFB5 /* bit_sbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03A1E9728180057BFB5 /* bit_sbr.cpp */; };
  450. 3706B2701E9728190057BFB5 /* bit_sbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03A1E9728180057BFB5 /* bit_sbr.cpp */; };
  451. 3706B2711E9728190057BFB5 /* bit_sbr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03B1E9728180057BFB5 /* bit_sbr.h */; };
  452. 3706B2721E9728190057BFB5 /* bit_sbr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03B1E9728180057BFB5 /* bit_sbr.h */; };
  453. 3706B2731E9728190057BFB5 /* cmondata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03C1E9728180057BFB5 /* cmondata.h */; };
  454. 3706B2741E9728190057BFB5 /* cmondata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03C1E9728180057BFB5 /* cmondata.h */; };
  455. 3706B2751E9728190057BFB5 /* code_env.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03D1E9728180057BFB5 /* code_env.cpp */; };
  456. 3706B2761E9728190057BFB5 /* code_env.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03D1E9728180057BFB5 /* code_env.cpp */; };
  457. 3706B2771E9728190057BFB5 /* code_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03E1E9728180057BFB5 /* code_env.h */; };
  458. 3706B2781E9728190057BFB5 /* code_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B03E1E9728180057BFB5 /* code_env.h */; };
  459. 3706B2791E9728190057BFB5 /* env_bit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03F1E9728180057BFB5 /* env_bit.cpp */; };
  460. 3706B27A1E9728190057BFB5 /* env_bit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B03F1E9728180057BFB5 /* env_bit.cpp */; };
  461. 3706B27B1E9728190057BFB5 /* env_bit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0401E9728180057BFB5 /* env_bit.h */; };
  462. 3706B27C1E9728190057BFB5 /* env_bit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0401E9728180057BFB5 /* env_bit.h */; };
  463. 3706B27D1E9728190057BFB5 /* env_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0411E9728180057BFB5 /* env_est.cpp */; };
  464. 3706B27E1E9728190057BFB5 /* env_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0411E9728180057BFB5 /* env_est.cpp */; };
  465. 3706B27F1E9728190057BFB5 /* env_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0421E9728180057BFB5 /* env_est.h */; };
  466. 3706B2801E9728190057BFB5 /* env_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0421E9728180057BFB5 /* env_est.h */; };
  467. 3706B2811E9728190057BFB5 /* fram_gen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0431E9728180057BFB5 /* fram_gen.cpp */; };
  468. 3706B2821E9728190057BFB5 /* fram_gen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0431E9728180057BFB5 /* fram_gen.cpp */; };
  469. 3706B2831E9728190057BFB5 /* fram_gen.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0441E9728180057BFB5 /* fram_gen.h */; };
  470. 3706B2841E9728190057BFB5 /* fram_gen.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0441E9728180057BFB5 /* fram_gen.h */; };
  471. 3706B2851E9728190057BFB5 /* invf_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0451E9728180057BFB5 /* invf_est.cpp */; };
  472. 3706B2861E9728190057BFB5 /* invf_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0451E9728180057BFB5 /* invf_est.cpp */; };
  473. 3706B2871E9728190057BFB5 /* invf_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0461E9728180057BFB5 /* invf_est.h */; };
  474. 3706B2881E9728190057BFB5 /* invf_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0461E9728180057BFB5 /* invf_est.h */; };
  475. 3706B2891E9728190057BFB5 /* mh_det.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0471E9728180057BFB5 /* mh_det.cpp */; };
  476. 3706B28A1E9728190057BFB5 /* mh_det.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0471E9728180057BFB5 /* mh_det.cpp */; };
  477. 3706B28B1E9728190057BFB5 /* mh_det.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0481E9728190057BFB5 /* mh_det.h */; };
  478. 3706B28C1E9728190057BFB5 /* mh_det.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0481E9728190057BFB5 /* mh_det.h */; };
  479. 3706B28D1E9728190057BFB5 /* nf_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0491E9728190057BFB5 /* nf_est.cpp */; };
  480. 3706B28E1E9728190057BFB5 /* nf_est.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0491E9728190057BFB5 /* nf_est.cpp */; };
  481. 3706B28F1E9728190057BFB5 /* nf_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04A1E9728190057BFB5 /* nf_est.h */; };
  482. 3706B2901E9728190057BFB5 /* nf_est.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04A1E9728190057BFB5 /* nf_est.h */; };
  483. 3706B2911E9728190057BFB5 /* ps_bitenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B04B1E9728190057BFB5 /* ps_bitenc.cpp */; };
  484. 3706B2921E9728190057BFB5 /* ps_bitenc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B04B1E9728190057BFB5 /* ps_bitenc.cpp */; };
  485. 3706B2931E9728190057BFB5 /* ps_bitenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04C1E9728190057BFB5 /* ps_bitenc.h */; };
  486. 3706B2941E9728190057BFB5 /* ps_bitenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04C1E9728190057BFB5 /* ps_bitenc.h */; };
  487. 3706B2951E9728190057BFB5 /* ps_const.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04D1E9728190057BFB5 /* ps_const.h */; };
  488. 3706B2961E9728190057BFB5 /* ps_const.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04D1E9728190057BFB5 /* ps_const.h */; };
  489. 3706B2971E9728190057BFB5 /* ps_encode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B04E1E9728190057BFB5 /* ps_encode.cpp */; };
  490. 3706B2981E9728190057BFB5 /* ps_encode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B04E1E9728190057BFB5 /* ps_encode.cpp */; };
  491. 3706B2991E9728190057BFB5 /* ps_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04F1E9728190057BFB5 /* ps_encode.h */; };
  492. 3706B29A1E9728190057BFB5 /* ps_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B04F1E9728190057BFB5 /* ps_encode.h */; };
  493. 3706B29B1E9728190057BFB5 /* ps_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0501E9728190057BFB5 /* ps_main.cpp */; };
  494. 3706B29C1E9728190057BFB5 /* ps_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0501E9728190057BFB5 /* ps_main.cpp */; };
  495. 3706B29D1E9728190057BFB5 /* ps_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0511E9728190057BFB5 /* ps_main.h */; };
  496. 3706B29E1E9728190057BFB5 /* ps_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0511E9728190057BFB5 /* ps_main.h */; };
  497. 3706B29F1E9728190057BFB5 /* resampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0521E9728190057BFB5 /* resampler.cpp */; };
  498. 3706B2A01E9728190057BFB5 /* resampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0521E9728190057BFB5 /* resampler.cpp */; };
  499. 3706B2A11E9728190057BFB5 /* resampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0531E9728190057BFB5 /* resampler.h */; };
  500. 3706B2A21E9728190057BFB5 /* resampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0531E9728190057BFB5 /* resampler.h */; };
  501. 3706B2A31E9728190057BFB5 /* sbr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0541E9728190057BFB5 /* sbr.h */; };
  502. 3706B2A41E9728190057BFB5 /* sbr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0541E9728190057BFB5 /* sbr.h */; };
  503. 3706B2A51E9728190057BFB5 /* sbr_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0551E9728190057BFB5 /* sbr_def.h */; };
  504. 3706B2A61E9728190057BFB5 /* sbr_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0551E9728190057BFB5 /* sbr_def.h */; };
  505. 3706B2A71E9728190057BFB5 /* sbr_encoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0561E9728190057BFB5 /* sbr_encoder.cpp */; };
  506. 3706B2A81E9728190057BFB5 /* sbr_encoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0561E9728190057BFB5 /* sbr_encoder.cpp */; };
  507. 3706B2A91E9728190057BFB5 /* sbr_misc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0571E9728190057BFB5 /* sbr_misc.cpp */; };
  508. 3706B2AA1E9728190057BFB5 /* sbr_misc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0571E9728190057BFB5 /* sbr_misc.cpp */; };
  509. 3706B2AB1E9728190057BFB5 /* sbr_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0581E9728190057BFB5 /* sbr_misc.h */; };
  510. 3706B2AC1E9728190057BFB5 /* sbr_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0581E9728190057BFB5 /* sbr_misc.h */; };
  511. 3706B2AD1E9728190057BFB5 /* sbr_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0591E9728190057BFB5 /* sbr_ram.h */; };
  512. 3706B2AE1E9728190057BFB5 /* sbr_ram.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0591E9728190057BFB5 /* sbr_ram.h */; };
  513. 3706B2AF1E9728190057BFB5 /* sbr_ram_.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05A1E9728190057BFB5 /* sbr_ram_.cpp */; };
  514. 3706B2B01E9728190057BFB5 /* sbr_ram_.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05A1E9728190057BFB5 /* sbr_ram_.cpp */; };
  515. 3706B2B11E9728190057BFB5 /* sbr_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B05B1E9728190057BFB5 /* sbr_rom.h */; };
  516. 3706B2B21E9728190057BFB5 /* sbr_rom.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B05B1E9728190057BFB5 /* sbr_rom.h */; };
  517. 3706B2B31E9728190057BFB5 /* sbr_rom_.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05C1E9728190057BFB5 /* sbr_rom_.cpp */; };
  518. 3706B2B41E9728190057BFB5 /* sbr_rom_.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05C1E9728190057BFB5 /* sbr_rom_.cpp */; };
  519. 3706B2B51E9728190057BFB5 /* sbrenc_freq_sca.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05D1E9728190057BFB5 /* sbrenc_freq_sca.cpp */; };
  520. 3706B2B61E9728190057BFB5 /* sbrenc_freq_sca.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05D1E9728190057BFB5 /* sbrenc_freq_sca.cpp */; };
  521. 3706B2B71E9728190057BFB5 /* sbrenc_freq_sca.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B05E1E9728190057BFB5 /* sbrenc_freq_sca.h */; };
  522. 3706B2B81E9728190057BFB5 /* sbrenc_freq_sca.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B05E1E9728190057BFB5 /* sbrenc_freq_sca.h */; };
  523. 3706B2B91E9728190057BFB5 /* ton_corr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05F1E9728190057BFB5 /* ton_corr.cpp */; };
  524. 3706B2BA1E9728190057BFB5 /* ton_corr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B05F1E9728190057BFB5 /* ton_corr.cpp */; };
  525. 3706B2BB1E9728190057BFB5 /* ton_corr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0601E9728190057BFB5 /* ton_corr.h */; };
  526. 3706B2BC1E9728190057BFB5 /* ton_corr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0601E9728190057BFB5 /* ton_corr.h */; };
  527. 3706B2BD1E9728190057BFB5 /* tran_det.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0611E9728190057BFB5 /* tran_det.cpp */; };
  528. 3706B2BE1E9728190057BFB5 /* tran_det.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0611E9728190057BFB5 /* tran_det.cpp */; };
  529. 3706B2BF1E9728190057BFB5 /* tran_det.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0621E9728190057BFB5 /* tran_det.h */; };
  530. 3706B2C01E9728190057BFB5 /* tran_det.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0621E9728190057BFB5 /* tran_det.h */; };
  531. 3706B2C11E9728190057BFB5 /* audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0651E9728190057BFB5 /* audio.h */; };
  532. 3706B2C21E9728190057BFB5 /* audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0651E9728190057BFB5 /* audio.h */; };
  533. 3706B2C31E9728190057BFB5 /* cmdl_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0661E9728190057BFB5 /* cmdl_parser.h */; };
  534. 3706B2C41E9728190057BFB5 /* cmdl_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0661E9728190057BFB5 /* cmdl_parser.h */; };
  535. 3706B2C51E9728190057BFB5 /* conv_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0671E9728190057BFB5 /* conv_string.h */; };
  536. 3706B2C61E9728190057BFB5 /* conv_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0671E9728190057BFB5 /* conv_string.h */; };
  537. 3706B2C71E9728190057BFB5 /* FDK_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0681E9728190057BFB5 /* FDK_audio.h */; };
  538. 3706B2C81E9728190057BFB5 /* FDK_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0681E9728190057BFB5 /* FDK_audio.h */; };
  539. 3706B2C91E9728190057BFB5 /* genericStds.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0691E9728190057BFB5 /* genericStds.h */; };
  540. 3706B2CA1E9728190057BFB5 /* genericStds.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B0691E9728190057BFB5 /* genericStds.h */; };
  541. 3706B2CB1E9728190057BFB5 /* machine_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B06A1E9728190057BFB5 /* machine_type.h */; };
  542. 3706B2CC1E9728190057BFB5 /* machine_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B06A1E9728190057BFB5 /* machine_type.h */; };
  543. 3706B2CD1E9728190057BFB5 /* wav_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B06B1E9728190057BFB5 /* wav_file.h */; };
  544. 3706B2CE1E9728190057BFB5 /* wav_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 3706B06B1E9728190057BFB5 /* wav_file.h */; };
  545. 3706B2D11E9728190057BFB5 /* conv_string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B06E1E9728190057BFB5 /* conv_string.cpp */; };
  546. 3706B2D21E9728190057BFB5 /* conv_string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B06E1E9728190057BFB5 /* conv_string.cpp */; };
  547. 3706B2D31E9728190057BFB5 /* genericStds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B06F1E9728190057BFB5 /* genericStds.cpp */; };
  548. 3706B2D41E9728190057BFB5 /* genericStds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B06F1E9728190057BFB5 /* genericStds.cpp */; };
  549. 3706B2E11E9728190057BFB5 /* wav_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0781E9728190057BFB5 /* wav_file.cpp */; };
  550. 3706B2E21E9728190057BFB5 /* wav_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3706B0781E9728190057BFB5 /* wav_file.cpp */; };
  551. /* End PBXBuildFile section */
  552. /* Begin PBXFileReference section */
  553. 0BDA9CC5121EE4C400ED5E97 /* libFDK-AAC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libFDK-AAC.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  554. 3706AF1E1E9728180057BFB5 /* aacdecoder_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdecoder_lib.h; sourceTree = "<group>"; };
  555. 3706AF201E9728180057BFB5 /* aac_ram.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aac_ram.cpp; sourceTree = "<group>"; };
  556. 3706AF211E9728180057BFB5 /* aac_ram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aac_ram.h; sourceTree = "<group>"; };
  557. 3706AF221E9728180057BFB5 /* aac_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aac_rom.cpp; sourceTree = "<group>"; };
  558. 3706AF231E9728180057BFB5 /* aac_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aac_rom.h; sourceTree = "<group>"; };
  559. 3706AF241E9728180057BFB5 /* aacdec_drc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_drc.cpp; sourceTree = "<group>"; };
  560. 3706AF251E9728180057BFB5 /* aacdec_drc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_drc.h; sourceTree = "<group>"; };
  561. 3706AF261E9728180057BFB5 /* aacdec_drc_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_drc_types.h; sourceTree = "<group>"; };
  562. 3706AF271E9728180057BFB5 /* aacdec_hcr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_hcr.cpp; sourceTree = "<group>"; };
  563. 3706AF281E9728180057BFB5 /* aacdec_hcr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_hcr.h; sourceTree = "<group>"; };
  564. 3706AF291E9728180057BFB5 /* aacdec_hcr_bit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_hcr_bit.cpp; sourceTree = "<group>"; };
  565. 3706AF2A1E9728180057BFB5 /* aacdec_hcr_bit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_hcr_bit.h; sourceTree = "<group>"; };
  566. 3706AF2B1E9728180057BFB5 /* aacdec_hcr_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_hcr_types.h; sourceTree = "<group>"; };
  567. 3706AF2C1E9728180057BFB5 /* aacdec_hcrs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_hcrs.cpp; sourceTree = "<group>"; };
  568. 3706AF2D1E9728180057BFB5 /* aacdec_hcrs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_hcrs.h; sourceTree = "<group>"; };
  569. 3706AF2E1E9728180057BFB5 /* aacdec_pns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_pns.cpp; sourceTree = "<group>"; };
  570. 3706AF2F1E9728180057BFB5 /* aacdec_pns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_pns.h; sourceTree = "<group>"; };
  571. 3706AF301E9728180057BFB5 /* aacdec_tns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdec_tns.cpp; sourceTree = "<group>"; };
  572. 3706AF311E9728180057BFB5 /* aacdec_tns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdec_tns.h; sourceTree = "<group>"; };
  573. 3706AF321E9728180057BFB5 /* aacdecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdecoder.cpp; sourceTree = "<group>"; };
  574. 3706AF331E9728180057BFB5 /* aacdecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacdecoder.h; sourceTree = "<group>"; };
  575. 3706AF341E9728180057BFB5 /* aacdecoder_lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacdecoder_lib.cpp; sourceTree = "<group>"; };
  576. 3706AF371E9728180057BFB5 /* block.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = block.cpp; sourceTree = "<group>"; };
  577. 3706AF381E9728180057BFB5 /* block.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = block.h; sourceTree = "<group>"; };
  578. 3706AF391E9728180057BFB5 /* channel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channel.cpp; sourceTree = "<group>"; };
  579. 3706AF3A1E9728180057BFB5 /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channel.h; sourceTree = "<group>"; };
  580. 3706AF3B1E9728180057BFB5 /* channelinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channelinfo.cpp; sourceTree = "<group>"; };
  581. 3706AF3C1E9728180057BFB5 /* channelinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channelinfo.h; sourceTree = "<group>"; };
  582. 3706AF3D1E9728180057BFB5 /* conceal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = conceal.cpp; sourceTree = "<group>"; };
  583. 3706AF3E1E9728180057BFB5 /* conceal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conceal.h; sourceTree = "<group>"; };
  584. 3706AF3F1E9728180057BFB5 /* conceal_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conceal_types.h; sourceTree = "<group>"; };
  585. 3706AF401E9728180057BFB5 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
  586. 3706AF411E9728180057BFB5 /* ldfiltbank.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ldfiltbank.cpp; sourceTree = "<group>"; };
  587. 3706AF421E9728180057BFB5 /* ldfiltbank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldfiltbank.h; sourceTree = "<group>"; };
  588. 3706AF431E9728180057BFB5 /* overlapadd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = overlapadd.h; sourceTree = "<group>"; };
  589. 3706AF441E9728180057BFB5 /* pulsedata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pulsedata.cpp; sourceTree = "<group>"; };
  590. 3706AF451E9728180057BFB5 /* pulsedata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pulsedata.h; sourceTree = "<group>"; };
  591. 3706AF461E9728180057BFB5 /* rvlc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rvlc.cpp; sourceTree = "<group>"; };
  592. 3706AF471E9728180057BFB5 /* rvlc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rvlc.h; sourceTree = "<group>"; };
  593. 3706AF481E9728180057BFB5 /* rvlc_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rvlc_info.h; sourceTree = "<group>"; };
  594. 3706AF491E9728180057BFB5 /* rvlcbit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rvlcbit.cpp; sourceTree = "<group>"; };
  595. 3706AF4A1E9728180057BFB5 /* rvlcbit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rvlcbit.h; sourceTree = "<group>"; };
  596. 3706AF4B1E9728180057BFB5 /* rvlcconceal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rvlcconceal.cpp; sourceTree = "<group>"; };
  597. 3706AF4C1E9728180057BFB5 /* rvlcconceal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rvlcconceal.h; sourceTree = "<group>"; };
  598. 3706AF4D1E9728180057BFB5 /* stereo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stereo.cpp; sourceTree = "<group>"; };
  599. 3706AF4E1E9728180057BFB5 /* stereo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stereo.h; sourceTree = "<group>"; };
  600. 3706AF511E9728180057BFB5 /* aacenc_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacenc_lib.h; sourceTree = "<group>"; };
  601. 3706AF531E9728180057BFB5 /* aacenc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacenc.cpp; sourceTree = "<group>"; };
  602. 3706AF541E9728180057BFB5 /* aacenc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacenc.h; sourceTree = "<group>"; };
  603. 3706AF551E9728180057BFB5 /* aacenc_lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacenc_lib.cpp; sourceTree = "<group>"; };
  604. 3706AF561E9728180057BFB5 /* aacenc_pns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacenc_pns.cpp; sourceTree = "<group>"; };
  605. 3706AF571E9728180057BFB5 /* aacenc_pns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacenc_pns.h; sourceTree = "<group>"; };
  606. 3706AF581E9728180057BFB5 /* aacEnc_ram.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacEnc_ram.cpp; sourceTree = "<group>"; };
  607. 3706AF591E9728180057BFB5 /* aacEnc_ram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacEnc_ram.h; sourceTree = "<group>"; };
  608. 3706AF5A1E9728180057BFB5 /* aacEnc_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacEnc_rom.cpp; sourceTree = "<group>"; };
  609. 3706AF5B1E9728180057BFB5 /* aacEnc_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacEnc_rom.h; sourceTree = "<group>"; };
  610. 3706AF5C1E9728180057BFB5 /* aacenc_tns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aacenc_tns.cpp; sourceTree = "<group>"; };
  611. 3706AF5D1E9728180057BFB5 /* aacenc_tns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aacenc_tns.h; sourceTree = "<group>"; };
  612. 3706AF5E1E9728180057BFB5 /* adj_thr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adj_thr.cpp; sourceTree = "<group>"; };
  613. 3706AF5F1E9728180057BFB5 /* adj_thr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adj_thr.h; sourceTree = "<group>"; };
  614. 3706AF601E9728180057BFB5 /* adj_thr_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adj_thr_data.h; sourceTree = "<group>"; };
  615. 3706AF611E9728180057BFB5 /* band_nrg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = band_nrg.cpp; sourceTree = "<group>"; };
  616. 3706AF621E9728180057BFB5 /* band_nrg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = band_nrg.h; sourceTree = "<group>"; };
  617. 3706AF631E9728180057BFB5 /* bandwidth.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bandwidth.cpp; sourceTree = "<group>"; };
  618. 3706AF641E9728180057BFB5 /* bandwidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bandwidth.h; sourceTree = "<group>"; };
  619. 3706AF651E9728180057BFB5 /* bit_cnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bit_cnt.cpp; sourceTree = "<group>"; };
  620. 3706AF661E9728180057BFB5 /* bit_cnt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_cnt.h; sourceTree = "<group>"; };
  621. 3706AF671E9728180057BFB5 /* bitenc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bitenc.cpp; sourceTree = "<group>"; };
  622. 3706AF681E9728180057BFB5 /* bitenc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bitenc.h; sourceTree = "<group>"; };
  623. 3706AF691E9728180057BFB5 /* block_switch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = block_switch.cpp; sourceTree = "<group>"; };
  624. 3706AF6A1E9728180057BFB5 /* block_switch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = block_switch.h; sourceTree = "<group>"; };
  625. 3706AF6B1E9728180057BFB5 /* channel_map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channel_map.cpp; sourceTree = "<group>"; };
  626. 3706AF6C1E9728180057BFB5 /* channel_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channel_map.h; sourceTree = "<group>"; };
  627. 3706AF6D1E9728180057BFB5 /* chaosmeasure.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chaosmeasure.cpp; sourceTree = "<group>"; };
  628. 3706AF6E1E9728180057BFB5 /* chaosmeasure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chaosmeasure.h; sourceTree = "<group>"; };
  629. 3706AF6F1E9728180057BFB5 /* dyn_bits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dyn_bits.cpp; sourceTree = "<group>"; };
  630. 3706AF701E9728180057BFB5 /* dyn_bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyn_bits.h; sourceTree = "<group>"; };
  631. 3706AF711E9728180057BFB5 /* grp_data.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = grp_data.cpp; sourceTree = "<group>"; };
  632. 3706AF721E9728180057BFB5 /* grp_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = grp_data.h; sourceTree = "<group>"; };
  633. 3706AF731E9728180057BFB5 /* intensity.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = intensity.cpp; sourceTree = "<group>"; };
  634. 3706AF741E9728180057BFB5 /* intensity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = intensity.h; sourceTree = "<group>"; };
  635. 3706AF751E9728180057BFB5 /* interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interface.h; sourceTree = "<group>"; };
  636. 3706AF761E9728180057BFB5 /* line_pe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = line_pe.cpp; sourceTree = "<group>"; };
  637. 3706AF771E9728180057BFB5 /* line_pe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = line_pe.h; sourceTree = "<group>"; };
  638. 3706AF781E9728180057BFB5 /* metadata_compressor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metadata_compressor.cpp; sourceTree = "<group>"; };
  639. 3706AF791E9728180057BFB5 /* metadata_compressor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metadata_compressor.h; sourceTree = "<group>"; };
  640. 3706AF7A1E9728180057BFB5 /* metadata_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metadata_main.cpp; sourceTree = "<group>"; };
  641. 3706AF7B1E9728180057BFB5 /* metadata_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metadata_main.h; sourceTree = "<group>"; };
  642. 3706AF7C1E9728180057BFB5 /* ms_stereo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ms_stereo.cpp; sourceTree = "<group>"; };
  643. 3706AF7D1E9728180057BFB5 /* ms_stereo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ms_stereo.h; sourceTree = "<group>"; };
  644. 3706AF7E1E9728180057BFB5 /* noisedet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = noisedet.cpp; sourceTree = "<group>"; };
  645. 3706AF7F1E9728180057BFB5 /* noisedet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = noisedet.h; sourceTree = "<group>"; };
  646. 3706AF801E9728180057BFB5 /* pns_func.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pns_func.h; sourceTree = "<group>"; };
  647. 3706AF811E9728180057BFB5 /* pnsparam.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pnsparam.cpp; sourceTree = "<group>"; };
  648. 3706AF821E9728180057BFB5 /* pnsparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pnsparam.h; sourceTree = "<group>"; };
  649. 3706AF831E9728180057BFB5 /* pre_echo_control.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pre_echo_control.cpp; sourceTree = "<group>"; };
  650. 3706AF841E9728180057BFB5 /* pre_echo_control.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pre_echo_control.h; sourceTree = "<group>"; };
  651. 3706AF851E9728180057BFB5 /* psy_configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = psy_configuration.cpp; sourceTree = "<group>"; };
  652. 3706AF861E9728180057BFB5 /* psy_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psy_configuration.h; sourceTree = "<group>"; };
  653. 3706AF871E9728180057BFB5 /* psy_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psy_const.h; sourceTree = "<group>"; };
  654. 3706AF881E9728180057BFB5 /* psy_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psy_data.h; sourceTree = "<group>"; };
  655. 3706AF891E9728180057BFB5 /* psy_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = psy_main.cpp; sourceTree = "<group>"; };
  656. 3706AF8A1E9728180057BFB5 /* psy_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psy_main.h; sourceTree = "<group>"; };
  657. 3706AF8B1E9728180057BFB5 /* qc_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qc_data.h; sourceTree = "<group>"; };
  658. 3706AF8C1E9728180057BFB5 /* qc_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qc_main.cpp; sourceTree = "<group>"; };
  659. 3706AF8D1E9728180057BFB5 /* qc_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qc_main.h; sourceTree = "<group>"; };
  660. 3706AF8E1E9728180057BFB5 /* quantize.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quantize.cpp; sourceTree = "<group>"; };
  661. 3706AF8F1E9728180057BFB5 /* quantize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quantize.h; sourceTree = "<group>"; };
  662. 3706AF901E9728180057BFB5 /* sf_estim.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sf_estim.cpp; sourceTree = "<group>"; };
  663. 3706AF911E9728180057BFB5 /* sf_estim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sf_estim.h; sourceTree = "<group>"; };
  664. 3706AF921E9728180057BFB5 /* spreading.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spreading.cpp; sourceTree = "<group>"; };
  665. 3706AF931E9728180057BFB5 /* spreading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spreading.h; sourceTree = "<group>"; };
  666. 3706AF941E9728180057BFB5 /* tns_func.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tns_func.h; sourceTree = "<group>"; };
  667. 3706AF951E9728180057BFB5 /* tonality.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tonality.cpp; sourceTree = "<group>"; };
  668. 3706AF961E9728180057BFB5 /* tonality.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tonality.h; sourceTree = "<group>"; };
  669. 3706AF971E9728180057BFB5 /* transform.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transform.cpp; sourceTree = "<group>"; };
  670. 3706AF981E9728180057BFB5 /* transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = "<group>"; };
  671. 3706AF9E1E9728180057BFB5 /* abs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = abs.h; sourceTree = "<group>"; };
  672. 3706AFA61E9728180057BFB5 /* autocorr2nd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = autocorr2nd.h; sourceTree = "<group>"; };
  673. 3706AFA71E9728180057BFB5 /* clz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clz.h; sourceTree = "<group>"; };
  674. 3706AFA81E9728180057BFB5 /* common_fix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common_fix.h; sourceTree = "<group>"; };
  675. 3706AFA91E9728180057BFB5 /* cplx_mul.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cplx_mul.h; sourceTree = "<group>"; };
  676. 3706AFAA1E9728180057BFB5 /* dct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dct.h; sourceTree = "<group>"; };
  677. 3706AFAB1E9728180057BFB5 /* FDK_archdef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_archdef.h; sourceTree = "<group>"; };
  678. 3706AFAC1E9728180057BFB5 /* FDK_bitbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_bitbuffer.h; sourceTree = "<group>"; };
  679. 3706AFAD1E9728180057BFB5 /* FDK_bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_bitstream.h; sourceTree = "<group>"; };
  680. 3706AFAE1E9728180057BFB5 /* FDK_core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_core.h; sourceTree = "<group>"; };
  681. 3706AFAF1E9728180057BFB5 /* FDK_crc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_crc.h; sourceTree = "<group>"; };
  682. 3706AFB01E9728180057BFB5 /* FDK_hybrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_hybrid.h; sourceTree = "<group>"; };
  683. 3706AFB11E9728180057BFB5 /* FDK_tools_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_tools_rom.h; sourceTree = "<group>"; };
  684. 3706AFB21E9728180057BFB5 /* FDK_trigFcts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_trigFcts.h; sourceTree = "<group>"; };
  685. 3706AFB31E9728180057BFB5 /* fft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fft.h; sourceTree = "<group>"; };
  686. 3706AFB41E9728180057BFB5 /* fft_rad2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fft_rad2.h; sourceTree = "<group>"; };
  687. 3706AFB51E9728180057BFB5 /* fixmadd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixmadd.h; sourceTree = "<group>"; };
  688. 3706AFB61E9728180057BFB5 /* fixminmax.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixminmax.h; sourceTree = "<group>"; };
  689. 3706AFB71E9728180057BFB5 /* fixmul.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixmul.h; sourceTree = "<group>"; };
  690. 3706AFB81E9728180057BFB5 /* fixpoint_math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixpoint_math.h; sourceTree = "<group>"; };
  691. 3706AFB91E9728180057BFB5 /* mdct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdct.h; sourceTree = "<group>"; };
  692. 3706AFC51E9728180057BFB5 /* qmf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qmf.h; sourceTree = "<group>"; };
  693. 3706AFC61E9728180057BFB5 /* scale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scale.h; sourceTree = "<group>"; };
  694. 3706AFC71E9728180057BFB5 /* scramble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scramble.h; sourceTree = "<group>"; };
  695. 3706AFD31E9728180057BFB5 /* autocorr2nd.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = autocorr2nd.cpp; sourceTree = "<group>"; };
  696. 3706AFD41E9728180057BFB5 /* dct.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dct.cpp; sourceTree = "<group>"; };
  697. 3706AFD51E9728180057BFB5 /* FDK_bitbuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_bitbuffer.cpp; sourceTree = "<group>"; };
  698. 3706AFD61E9728180057BFB5 /* FDK_core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_core.cpp; sourceTree = "<group>"; };
  699. 3706AFD71E9728180057BFB5 /* FDK_crc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_crc.cpp; sourceTree = "<group>"; };
  700. 3706AFD81E9728180057BFB5 /* FDK_hybrid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_hybrid.cpp; sourceTree = "<group>"; };
  701. 3706AFD91E9728180057BFB5 /* FDK_tools_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_tools_rom.cpp; sourceTree = "<group>"; };
  702. 3706AFDA1E9728180057BFB5 /* FDK_trigFcts.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FDK_trigFcts.cpp; sourceTree = "<group>"; };
  703. 3706AFDB1E9728180057BFB5 /* fft.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fft.cpp; sourceTree = "<group>"; };
  704. 3706AFDC1E9728180057BFB5 /* fft_rad2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fft_rad2.cpp; sourceTree = "<group>"; };
  705. 3706AFDD1E9728180057BFB5 /* fixpoint_math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fixpoint_math.cpp; sourceTree = "<group>"; };
  706. 3706AFDE1E9728180057BFB5 /* mdct.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mdct.cpp; sourceTree = "<group>"; };
  707. 3706AFE31E9728180057BFB5 /* qmf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qmf.cpp; sourceTree = "<group>"; };
  708. 3706AFE41E9728180057BFB5 /* scale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scale.cpp; sourceTree = "<group>"; };
  709. 3706AFE71E9728180057BFB5 /* mpegFileRead.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegFileRead.h; sourceTree = "<group>"; };
  710. 3706AFE81E9728180057BFB5 /* tp_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tp_data.h; sourceTree = "<group>"; };
  711. 3706AFE91E9728180057BFB5 /* tpdec_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpdec_lib.h; sourceTree = "<group>"; };
  712. 3706AFEB1E9728180057BFB5 /* mpegFileFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegFileFormat.h; sourceTree = "<group>"; };
  713. 3706AFEC1E9728180057BFB5 /* tpdec_adif.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_adif.cpp; sourceTree = "<group>"; };
  714. 3706AFED1E9728180057BFB5 /* tpdec_adif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpdec_adif.h; sourceTree = "<group>"; };
  715. 3706AFEE1E9728180057BFB5 /* tpdec_adts.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_adts.cpp; sourceTree = "<group>"; };
  716. 3706AFEF1E9728180057BFB5 /* tpdec_adts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpdec_adts.h; sourceTree = "<group>"; };
  717. 3706AFF01E9728180057BFB5 /* tpdec_asc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_asc.cpp; sourceTree = "<group>"; };
  718. 3706AFF11E9728180057BFB5 /* tpdec_drm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_drm.cpp; sourceTree = "<group>"; };
  719. 3706AFF21E9728180057BFB5 /* tpdec_drm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpdec_drm.h; sourceTree = "<group>"; };
  720. 3706AFF31E9728180057BFB5 /* tpdec_latm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_latm.cpp; sourceTree = "<group>"; };
  721. 3706AFF41E9728180057BFB5 /* tpdec_latm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpdec_latm.h; sourceTree = "<group>"; };
  722. 3706AFF51E9728180057BFB5 /* tpdec_lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpdec_lib.cpp; sourceTree = "<group>"; };
  723. 3706AFF91E9728180057BFB5 /* mpegFileWrite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegFileWrite.h; sourceTree = "<group>"; };
  724. 3706AFFA1E9728180057BFB5 /* tp_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tp_data.h; sourceTree = "<group>"; };
  725. 3706AFFB1E9728180057BFB5 /* tpenc_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpenc_lib.h; sourceTree = "<group>"; };
  726. 3706AFFD1E9728180057BFB5 /* tpenc_adif.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpenc_adif.cpp; sourceTree = "<group>"; };
  727. 3706AFFE1E9728180057BFB5 /* tpenc_adif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpenc_adif.h; sourceTree = "<group>"; };
  728. 3706AFFF1E9728180057BFB5 /* tpenc_adts.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpenc_adts.cpp; sourceTree = "<group>"; };
  729. 3706B0001E9728180057BFB5 /* tpenc_adts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpenc_adts.h; sourceTree = "<group>"; };
  730. 3706B0011E9728180057BFB5 /* tpenc_asc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpenc_asc.cpp; sourceTree = "<group>"; };
  731. 3706B0021E9728180057BFB5 /* tpenc_asc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpenc_asc.h; sourceTree = "<group>"; };
  732. 3706B0031E9728180057BFB5 /* tpenc_latm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpenc_latm.cpp; sourceTree = "<group>"; };
  733. 3706B0041E9728180057BFB5 /* tpenc_latm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tpenc_latm.h; sourceTree = "<group>"; };
  734. 3706B0051E9728180057BFB5 /* tpenc_lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tpenc_lib.cpp; sourceTree = "<group>"; };
  735. 3706B0091E9728180057BFB5 /* limiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limiter.h; sourceTree = "<group>"; };
  736. 3706B00A1E9728180057BFB5 /* pcmutils_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pcmutils_lib.h; sourceTree = "<group>"; };
  737. 3706B00C1E9728180057BFB5 /* limiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = limiter.cpp; sourceTree = "<group>"; };
  738. 3706B00D1E9728180057BFB5 /* pcmutils_lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcmutils_lib.cpp; sourceTree = "<group>"; };
  739. 3706B0101E9728180057BFB5 /* sbrdecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbrdecoder.h; sourceTree = "<group>"; };
  740. 3706B0151E9728180057BFB5 /* env_calc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_calc.cpp; sourceTree = "<group>"; };
  741. 3706B0161E9728180057BFB5 /* env_calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_calc.h; sourceTree = "<group>"; };
  742. 3706B0171E9728180057BFB5 /* env_dec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_dec.cpp; sourceTree = "<group>"; };
  743. 3706B0181E9728180057BFB5 /* env_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_dec.h; sourceTree = "<group>"; };
  744. 3706B0191E9728180057BFB5 /* env_extr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_extr.cpp; sourceTree = "<group>"; };
  745. 3706B01A1E9728180057BFB5 /* env_extr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_extr.h; sourceTree = "<group>"; };
  746. 3706B01B1E9728180057BFB5 /* huff_dec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = huff_dec.cpp; sourceTree = "<group>"; };
  747. 3706B01C1E9728180057BFB5 /* huff_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = huff_dec.h; sourceTree = "<group>"; };
  748. 3706B01D1E9728180057BFB5 /* lpp_tran.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lpp_tran.cpp; sourceTree = "<group>"; };
  749. 3706B01E1E9728180057BFB5 /* lpp_tran.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lpp_tran.h; sourceTree = "<group>"; };
  750. 3706B01F1E9728180057BFB5 /* psbitdec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = psbitdec.cpp; sourceTree = "<group>"; };
  751. 3706B0201E9728180057BFB5 /* psbitdec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psbitdec.h; sourceTree = "<group>"; };
  752. 3706B0211E9728180057BFB5 /* psdec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = psdec.cpp; sourceTree = "<group>"; };
  753. 3706B0221E9728180057BFB5 /* psdec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psdec.h; sourceTree = "<group>"; };
  754. 3706B0231E9728180057BFB5 /* psdec_hybrid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = psdec_hybrid.cpp; sourceTree = "<group>"; };
  755. 3706B0241E9728180057BFB5 /* psdec_hybrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psdec_hybrid.h; sourceTree = "<group>"; };
  756. 3706B0251E9728180057BFB5 /* sbr_crc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_crc.cpp; sourceTree = "<group>"; };
  757. 3706B0261E9728180057BFB5 /* sbr_crc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_crc.h; sourceTree = "<group>"; };
  758. 3706B0271E9728180057BFB5 /* sbr_deb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_deb.cpp; sourceTree = "<group>"; };
  759. 3706B0281E9728180057BFB5 /* sbr_deb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_deb.h; sourceTree = "<group>"; };
  760. 3706B0291E9728180057BFB5 /* sbr_dec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_dec.cpp; sourceTree = "<group>"; };
  761. 3706B02A1E9728180057BFB5 /* sbr_dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_dec.h; sourceTree = "<group>"; };
  762. 3706B02B1E9728180057BFB5 /* sbr_ram.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_ram.cpp; sourceTree = "<group>"; };
  763. 3706B02C1E9728180057BFB5 /* sbr_ram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_ram.h; sourceTree = "<group>"; };
  764. 3706B02D1E9728180057BFB5 /* sbr_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_rom.cpp; sourceTree = "<group>"; };
  765. 3706B02E1E9728180057BFB5 /* sbr_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_rom.h; sourceTree = "<group>"; };
  766. 3706B02F1E9728180057BFB5 /* sbr_scale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_scale.h; sourceTree = "<group>"; };
  767. 3706B0301E9728180057BFB5 /* sbrdec_drc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbrdec_drc.cpp; sourceTree = "<group>"; };
  768. 3706B0311E9728180057BFB5 /* sbrdec_drc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbrdec_drc.h; sourceTree = "<group>"; };
  769. 3706B0321E9728180057BFB5 /* sbrdec_freq_sca.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbrdec_freq_sca.cpp; sourceTree = "<group>"; };
  770. 3706B0331E9728180057BFB5 /* sbrdec_freq_sca.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbrdec_freq_sca.h; sourceTree = "<group>"; };
  771. 3706B0341E9728180057BFB5 /* sbrdecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbrdecoder.cpp; sourceTree = "<group>"; };
  772. 3706B0351E9728180057BFB5 /* transcendent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transcendent.h; sourceTree = "<group>"; };
  773. 3706B0381E9728180057BFB5 /* sbr_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_encoder.h; sourceTree = "<group>"; };
  774. 3706B03A1E9728180057BFB5 /* bit_sbr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bit_sbr.cpp; sourceTree = "<group>"; };
  775. 3706B03B1E9728180057BFB5 /* bit_sbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bit_sbr.h; sourceTree = "<group>"; };
  776. 3706B03C1E9728180057BFB5 /* cmondata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmondata.h; sourceTree = "<group>"; };
  777. 3706B03D1E9728180057BFB5 /* code_env.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = code_env.cpp; sourceTree = "<group>"; };
  778. 3706B03E1E9728180057BFB5 /* code_env.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = code_env.h; sourceTree = "<group>"; };
  779. 3706B03F1E9728180057BFB5 /* env_bit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_bit.cpp; sourceTree = "<group>"; };
  780. 3706B0401E9728180057BFB5 /* env_bit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_bit.h; sourceTree = "<group>"; };
  781. 3706B0411E9728180057BFB5 /* env_est.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_est.cpp; sourceTree = "<group>"; };
  782. 3706B0421E9728180057BFB5 /* env_est.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_est.h; sourceTree = "<group>"; };
  783. 3706B0431E9728180057BFB5 /* fram_gen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fram_gen.cpp; sourceTree = "<group>"; };
  784. 3706B0441E9728180057BFB5 /* fram_gen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fram_gen.h; sourceTree = "<group>"; };
  785. 3706B0451E9728180057BFB5 /* invf_est.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = invf_est.cpp; sourceTree = "<group>"; };
  786. 3706B0461E9728180057BFB5 /* invf_est.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = invf_est.h; sourceTree = "<group>"; };
  787. 3706B0471E9728180057BFB5 /* mh_det.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mh_det.cpp; sourceTree = "<group>"; };
  788. 3706B0481E9728190057BFB5 /* mh_det.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mh_det.h; sourceTree = "<group>"; };
  789. 3706B0491E9728190057BFB5 /* nf_est.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nf_est.cpp; sourceTree = "<group>"; };
  790. 3706B04A1E9728190057BFB5 /* nf_est.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nf_est.h; sourceTree = "<group>"; };
  791. 3706B04B1E9728190057BFB5 /* ps_bitenc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ps_bitenc.cpp; sourceTree = "<group>"; };
  792. 3706B04C1E9728190057BFB5 /* ps_bitenc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ps_bitenc.h; sourceTree = "<group>"; };
  793. 3706B04D1E9728190057BFB5 /* ps_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ps_const.h; sourceTree = "<group>"; };
  794. 3706B04E1E9728190057BFB5 /* ps_encode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ps_encode.cpp; sourceTree = "<group>"; };
  795. 3706B04F1E9728190057BFB5 /* ps_encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ps_encode.h; sourceTree = "<group>"; };
  796. 3706B0501E9728190057BFB5 /* ps_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ps_main.cpp; sourceTree = "<group>"; };
  797. 3706B0511E9728190057BFB5 /* ps_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ps_main.h; sourceTree = "<group>"; };
  798. 3706B0521E9728190057BFB5 /* resampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resampler.cpp; sourceTree = "<group>"; };
  799. 3706B0531E9728190057BFB5 /* resampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resampler.h; sourceTree = "<group>"; };
  800. 3706B0541E9728190057BFB5 /* sbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr.h; sourceTree = "<group>"; };
  801. 3706B0551E9728190057BFB5 /* sbr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_def.h; sourceTree = "<group>"; };
  802. 3706B0561E9728190057BFB5 /* sbr_encoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_encoder.cpp; sourceTree = "<group>"; };
  803. 3706B0571E9728190057BFB5 /* sbr_misc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_misc.cpp; sourceTree = "<group>"; };
  804. 3706B0581E9728190057BFB5 /* sbr_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_misc.h; sourceTree = "<group>"; };
  805. 3706B0591E9728190057BFB5 /* sbr_ram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_ram.h; sourceTree = "<group>"; };
  806. 3706B05A1E9728190057BFB5 /* sbr_ram_.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_ram_.cpp; sourceTree = "<group>"; };
  807. 3706B05B1E9728190057BFB5 /* sbr_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbr_rom.h; sourceTree = "<group>"; };
  808. 3706B05C1E9728190057BFB5 /* sbr_rom_.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbr_rom_.cpp; sourceTree = "<group>"; };
  809. 3706B05D1E9728190057BFB5 /* sbrenc_freq_sca.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sbrenc_freq_sca.cpp; sourceTree = "<group>"; };
  810. 3706B05E1E9728190057BFB5 /* sbrenc_freq_sca.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sbrenc_freq_sca.h; sourceTree = "<group>"; };
  811. 3706B05F1E9728190057BFB5 /* ton_corr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ton_corr.cpp; sourceTree = "<group>"; };
  812. 3706B0601E9728190057BFB5 /* ton_corr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ton_corr.h; sourceTree = "<group>"; };
  813. 3706B0611E9728190057BFB5 /* tran_det.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tran_det.cpp; sourceTree = "<group>"; };
  814. 3706B0621E9728190057BFB5 /* tran_det.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tran_det.h; sourceTree = "<group>"; };
  815. 3706B0651E9728190057BFB5 /* audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio.h; sourceTree = "<group>"; };
  816. 3706B0661E9728190057BFB5 /* cmdl_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmdl_parser.h; sourceTree = "<group>"; };
  817. 3706B0671E9728190057BFB5 /* conv_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conv_string.h; sourceTree = "<group>"; };
  818. 3706B0681E9728190057BFB5 /* FDK_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDK_audio.h; sourceTree = "<group>"; };
  819. 3706B0691E9728190057BFB5 /* genericStds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = genericStds.h; sourceTree = "<group>"; };
  820. 3706B06A1E9728190057BFB5 /* machine_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machine_type.h; sourceTree = "<group>"; };
  821. 3706B06B1E9728190057BFB5 /* wav_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wav_file.h; sourceTree = "<group>"; };
  822. 3706B06E1E9728190057BFB5 /* conv_string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = conv_string.cpp; sourceTree = "<group>"; };
  823. 3706B06F1E9728190057BFB5 /* genericStds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = genericStds.cpp; sourceTree = "<group>"; };
  824. 3706B0781E9728190057BFB5 /* wav_file.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wav_file.cpp; sourceTree = "<group>"; };
  825. D2AAC046055464E500DB518D /* libFDK-AAC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libFDK-AAC.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  826. /* End PBXFileReference section */
  827. /* Begin PBXFrameworksBuildPhase section */
  828. 0BDA9CC3121EE4C400ED5E97 /* Frameworks */ = {
  829. isa = PBXFrameworksBuildPhase;
  830. buildActionMask = 2147483647;
  831. files = (
  832. );
  833. runOnlyForDeploymentPostprocessing = 0;
  834. };
  835. D289987405E68DCB004EDB86 /* Frameworks */ = {
  836. isa = PBXFrameworksBuildPhase;
  837. buildActionMask = 2147483647;
  838. files = (
  839. );
  840. runOnlyForDeploymentPostprocessing = 0;
  841. };
  842. /* End PBXFrameworksBuildPhase section */
  843. /* Begin PBXGroup section */
  844. 08FB7794FE84155DC02AAC07 /* lzma */ = {
  845. isa = PBXGroup;
  846. children = (
  847. 08FB7795FE84155DC02AAC07 /* Source */,
  848. 1AB674ADFE9D54B511CA2CBB /* Products */,
  849. );
  850. name = lzma;
  851. sourceTree = "<group>";
  852. };
  853. 08FB7795FE84155DC02AAC07 /* Source */ = {
  854. isa = PBXGroup;
  855. children = (
  856. 3706AF1C1E9728180057BFB5 /* libAACdec */,
  857. 3706AF4F1E9728180057BFB5 /* libAACenc */,
  858. 3706AF991E9728180057BFB5 /* libFDK */,
  859. 3706AFE51E9728180057BFB5 /* libMpegTPDec */,
  860. 3706AFF71E9728180057BFB5 /* libMpegTPEnc */,
  861. 3706B0071E9728180057BFB5 /* libPCMutils */,
  862. 3706B00E1E9728180057BFB5 /* libSBRdec */,
  863. 3706B0361E9728180057BFB5 /* libSBRenc */,
  864. 3706B0631E9728190057BFB5 /* libSYS */,
  865. );
  866. name = Source;
  867. sourceTree = "<group>";
  868. };
  869. 1AB674ADFE9D54B511CA2CBB /* Products */ = {
  870. isa = PBXGroup;
  871. children = (
  872. D2AAC046055464E500DB518D /* libFDK-AAC.a */,
  873. 0BDA9CC5121EE4C400ED5E97 /* libFDK-AAC.a */,
  874. );
  875. name = Products;
  876. sourceTree = "<group>";
  877. };
  878. 3706AF1C1E9728180057BFB5 /* libAACdec */ = {
  879. isa = PBXGroup;
  880. children = (
  881. 3706AF1D1E9728180057BFB5 /* include */,
  882. 3706AF1F1E9728180057BFB5 /* src */,
  883. );
  884. name = libAACdec;
  885. path = ../lib/libAACdec;
  886. sourceTree = "<group>";
  887. };
  888. 3706AF1D1E9728180057BFB5 /* include */ = {
  889. isa = PBXGroup;
  890. children = (
  891. 3706AF1E1E9728180057BFB5 /* aacdecoder_lib.h */,
  892. );
  893. path = include;
  894. sourceTree = "<group>";
  895. };
  896. 3706AF1F1E9728180057BFB5 /* src */ = {
  897. isa = PBXGroup;
  898. children = (
  899. 3706AF201E9728180057BFB5 /* aac_ram.cpp */,
  900. 3706AF211E9728180057BFB5 /* aac_ram.h */,
  901. 3706AF221E9728180057BFB5 /* aac_rom.cpp */,
  902. 3706AF231E9728180057BFB5 /* aac_rom.h */,
  903. 3706AF241E9728180057BFB5 /* aacdec_drc.cpp */,
  904. 3706AF251E9728180057BFB5 /* aacdec_drc.h */,
  905. 3706AF261E9728180057BFB5 /* aacdec_drc_types.h */,
  906. 3706AF271E9728180057BFB5 /* aacdec_hcr.cpp */,
  907. 3706AF281E9728180057BFB5 /* aacdec_hcr.h */,
  908. 3706AF291E9728180057BFB5 /* aacdec_hcr_bit.cpp */,
  909. 3706AF2A1E9728180057BFB5 /* aacdec_hcr_bit.h */,
  910. 3706AF2B1E9728180057BFB5 /* aacdec_hcr_types.h */,
  911. 3706AF2C1E9728180057BFB5 /* aacdec_hcrs.cpp */,
  912. 3706AF2D1E9728180057BFB5 /* aacdec_hcrs.h */,
  913. 3706AF2E1E9728180057BFB5 /* aacdec_pns.cpp */,
  914. 3706AF2F1E9728180057BFB5 /* aacdec_pns.h */,
  915. 3706AF301E9728180057BFB5 /* aacdec_tns.cpp */,
  916. 3706AF311E9728180057BFB5 /* aacdec_tns.h */,
  917. 3706AF321E9728180057BFB5 /* aacdecoder.cpp */,
  918. 3706AF331E9728180057BFB5 /* aacdecoder.h */,
  919. 3706AF341E9728180057BFB5 /* aacdecoder_lib.cpp */,
  920. 3706AF371E9728180057BFB5 /* block.cpp */,
  921. 3706AF381E9728180057BFB5 /* block.h */,
  922. 3706AF391E9728180057BFB5 /* channel.cpp */,
  923. 3706AF3A1E9728180057BFB5 /* channel.h */,
  924. 3706AF3B1E9728180057BFB5 /* channelinfo.cpp */,
  925. 3706AF3C1E9728180057BFB5 /* channelinfo.h */,
  926. 3706AF3D1E9728180057BFB5 /* conceal.cpp */,
  927. 3706AF3E1E9728180057BFB5 /* conceal.h */,
  928. 3706AF3F1E9728180057BFB5 /* conceal_types.h */,
  929. 3706AF401E9728180057BFB5 /* debug.h */,
  930. 3706AF411E9728180057BFB5 /* ldfiltbank.cpp */,
  931. 3706AF421E9728180057BFB5 /* ldfiltbank.h */,
  932. 3706AF431E9728180057BFB5 /* overlapadd.h */,
  933. 3706AF441E9728180057BFB5 /* pulsedata.cpp */,
  934. 3706AF451E9728180057BFB5 /* pulsedata.h */,
  935. 3706AF461E9728180057BFB5 /* rvlc.cpp */,
  936. 3706AF471E9728180057BFB5 /* rvlc.h */,
  937. 3706AF481E9728180057BFB5 /* rvlc_info.h */,
  938. 3706AF491E9728180057BFB5 /* rvlcbit.cpp */,
  939. 3706AF4A1E9728180057BFB5 /* rvlcbit.h */,
  940. 3706AF4B1E9728180057BFB5 /* rvlcconceal.cpp */,
  941. 3706AF4C1E9728180057BFB5 /* rvlcconceal.h */,
  942. 3706AF4D1E9728180057BFB5 /* stereo.cpp */,
  943. 3706AF4E1E9728180057BFB5 /* stereo.h */,
  944. );
  945. path = src;
  946. sourceTree = "<group>";
  947. };
  948. 3706AF4F1E9728180057BFB5 /* libAACenc */ = {
  949. isa = PBXGroup;
  950. children = (
  951. 3706AF501E9728180057BFB5 /* include */,
  952. 3706AF521E9728180057BFB5 /* src */,
  953. );
  954. name = libAACenc;
  955. path = ../lib/libAACenc;
  956. sourceTree = "<group>";
  957. };
  958. 3706AF501E9728180057BFB5 /* include */ = {
  959. isa = PBXGroup;
  960. children = (
  961. 3706AF511E9728180057BFB5 /* aacenc_lib.h */,
  962. );
  963. path = include;
  964. sourceTree = "<group>";
  965. };
  966. 3706AF521E9728180057BFB5 /* src */ = {
  967. isa = PBXGroup;
  968. children = (
  969. 3706AF531E9728180057BFB5 /* aacenc.cpp */,
  970. 3706AF541E9728180057BFB5 /* aacenc.h */,
  971. 3706AF551E9728180057BFB5 /* aacenc_lib.cpp */,
  972. 3706AF561E9728180057BFB5 /* aacenc_pns.cpp */,
  973. 3706AF571E9728180057BFB5 /* aacenc_pns.h */,
  974. 3706AF581E9728180057BFB5 /* aacEnc_ram.cpp */,
  975. 3706AF591E9728180057BFB5 /* aacEnc_ram.h */,
  976. 3706AF5A1E9728180057BFB5 /* aacEnc_rom.cpp */,
  977. 3706AF5B1E9728180057BFB5 /* aacEnc_rom.h */,
  978. 3706AF5C1E9728180057BFB5 /* aacenc_tns.cpp */,
  979. 3706AF5D1E9728180057BFB5 /* aacenc_tns.h */,
  980. 3706AF5E1E9728180057BFB5 /* adj_thr.cpp */,
  981. 3706AF5F1E9728180057BFB5 /* adj_thr.h */,
  982. 3706AF601E9728180057BFB5 /* adj_thr_data.h */,
  983. 3706AF611E9728180057BFB5 /* band_nrg.cpp */,
  984. 3706AF621E9728180057BFB5 /* band_nrg.h */,
  985. 3706AF631E9728180057BFB5 /* bandwidth.cpp */,
  986. 3706AF641E9728180057BFB5 /* bandwidth.h */,
  987. 3706AF651E9728180057BFB5 /* bit_cnt.cpp */,
  988. 3706AF661E9728180057BFB5 /* bit_cnt.h */,
  989. 3706AF671E9728180057BFB5 /* bitenc.cpp */,
  990. 3706AF681E9728180057BFB5 /* bitenc.h */,
  991. 3706AF691E9728180057BFB5 /* block_switch.cpp */,
  992. 3706AF6A1E9728180057BFB5 /* block_switch.h */,
  993. 3706AF6B1E9728180057BFB5 /* channel_map.cpp */,
  994. 3706AF6C1E9728180057BFB5 /* channel_map.h */,
  995. 3706AF6D1E9728180057BFB5 /* chaosmeasure.cpp */,
  996. 3706AF6E1E9728180057BFB5 /* chaosmeasure.h */,
  997. 3706AF6F1E9728180057BFB5 /* dyn_bits.cpp */,
  998. 3706AF701E9728180057BFB5 /* dyn_bits.h */,
  999. 3706AF711E9728180057BFB5 /* grp_data.cpp */,
  1000. 3706AF721E9728180057BFB5 /* grp_data.h */,
  1001. 3706AF731E9728180057BFB5 /* intensity.cpp */,
  1002. 3706AF741E9728180057BFB5 /* intensity.h */,
  1003. 3706AF751E9728180057BFB5 /* interface.h */,
  1004. 3706AF761E9728180057BFB5 /* line_pe.cpp */,
  1005. 3706AF771E9728180057BFB5 /* line_pe.h */,
  1006. 3706AF781E9728180057BFB5 /* metadata_compressor.cpp */,
  1007. 3706AF791E9728180057BFB5 /* metadata_compressor.h */,
  1008. 3706AF7A1E9728180057BFB5 /* metadata_main.cpp */,
  1009. 3706AF7B1E9728180057BFB5 /* metadata_main.h */,
  1010. 3706AF7C1E9728180057BFB5 /* ms_stereo.cpp */,
  1011. 3706AF7D1E9728180057BFB5 /* ms_stereo.h */,
  1012. 3706AF7E1E9728180057BFB5 /* noisedet.cpp */,
  1013. 3706AF7F1E9728180057BFB5 /* noisedet.h */,
  1014. 3706AF801E9728180057BFB5 /* pns_func.h */,
  1015. 3706AF811E9728180057BFB5 /* pnsparam.cpp */,
  1016. 3706AF821E9728180057BFB5 /* pnsparam.h */,
  1017. 3706AF831E9728180057BFB5 /* pre_echo_control.cpp */,
  1018. 3706AF841E9728180057BFB5 /* pre_echo_control.h */,
  1019. 3706AF851E9728180057BFB5 /* psy_configuration.cpp */,
  1020. 3706AF861E9728180057BFB5 /* psy_configuration.h */,
  1021. 3706AF871E9728180057BFB5 /* psy_const.h */,
  1022. 3706AF881E9728180057BFB5 /* psy_data.h */,
  1023. 3706AF891E9728180057BFB5 /* psy_main.cpp */,
  1024. 3706AF8A1E9728180057BFB5 /* psy_main.h */,
  1025. 3706AF8B1E9728180057BFB5 /* qc_data.h */,
  1026. 3706AF8C1E9728180057BFB5 /* qc_main.cpp */,
  1027. 3706AF8D1E9728180057BFB5 /* qc_main.h */,
  1028. 3706AF8E1E9728180057BFB5 /* quantize.cpp */,
  1029. 3706AF8F1E9728180057BFB5 /* quantize.h */,
  1030. 3706AF901E9728180057BFB5 /* sf_estim.cpp */,
  1031. 3706AF911E9728180057BFB5 /* sf_estim.h */,
  1032. 3706AF921E9728180057BFB5 /* spreading.cpp */,
  1033. 3706AF931E9728180057BFB5 /* spreading.h */,
  1034. 3706AF941E9728180057BFB5 /* tns_func.h */,
  1035. 3706AF951E9728180057BFB5 /* tonality.cpp */,
  1036. 3706AF961E9728180057BFB5 /* tonality.h */,
  1037. 3706AF971E9728180057BFB5 /* transform.cpp */,
  1038. 3706AF981E9728180057BFB5 /* transform.h */,
  1039. );
  1040. path = src;
  1041. sourceTree = "<group>";
  1042. };
  1043. 3706AF991E9728180057BFB5 /* libFDK */ = {
  1044. isa = PBXGroup;
  1045. children = (
  1046. 3706AF9A1E9728180057BFB5 /* include */,
  1047. 3706AFCC1E9728180057BFB5 /* src */,
  1048. );
  1049. name = libFDK;
  1050. path = ../lib/libFDK;
  1051. sourceTree = "<group>";
  1052. };
  1053. 3706AF9A1E9728180057BFB5 /* include */ = {
  1054. isa = PBXGroup;
  1055. children = (
  1056. 3706AF9E1E9728180057BFB5 /* abs.h */,
  1057. 3706AFA61E9728180057BFB5 /* autocorr2nd.h */,
  1058. 3706AFA71E9728180057BFB5 /* clz.h */,
  1059. 3706AFA81E9728180057BFB5 /* common_fix.h */,
  1060. 3706AFA91E9728180057BFB5 /* cplx_mul.h */,
  1061. 3706AFAA1E9728180057BFB5 /* dct.h */,
  1062. 3706AFAB1E9728180057BFB5 /* FDK_archdef.h */,
  1063. 3706AFAC1E9728180057BFB5 /* FDK_bitbuffer.h */,
  1064. 3706AFAD1E9728180057BFB5 /* FDK_bitstream.h */,
  1065. 3706AFAE1E9728180057BFB5 /* FDK_core.h */,
  1066. 3706AFAF1E9728180057BFB5 /* FDK_crc.h */,
  1067. 3706AFB01E9728180057BFB5 /* FDK_hybrid.h */,
  1068. 3706AFB11E9728180057BFB5 /* FDK_tools_rom.h */,
  1069. 3706AFB21E9728180057BFB5 /* FDK_trigFcts.h */,
  1070. 3706AFB31E9728180057BFB5 /* fft.h */,
  1071. 3706AFB41E9728180057BFB5 /* fft_rad2.h */,
  1072. 3706AFB51E9728180057BFB5 /* fixmadd.h */,
  1073. 3706AFB61E9728180057BFB5 /* fixminmax.h */,
  1074. 3706AFB71E9728180057BFB5 /* fixmul.h */,
  1075. 3706AFB81E9728180057BFB5 /* fixpoint_math.h */,
  1076. 3706AFB91E9728180057BFB5 /* mdct.h */,
  1077. 3706AFC51E9728180057BFB5 /* qmf.h */,
  1078. 3706AFC61E9728180057BFB5 /* scale.h */,
  1079. 3706AFC71E9728180057BFB5 /* scramble.h */,
  1080. );
  1081. path = include;
  1082. sourceTree = "<group>";
  1083. };
  1084. 3706AFCC1E9728180057BFB5 /* src */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 3706AFD31E9728180057BFB5 /* autocorr2nd.cpp */,
  1088. 3706AFD41E9728180057BFB5 /* dct.cpp */,
  1089. 3706AFD51E9728180057BFB5 /* FDK_bitbuffer.cpp */,
  1090. 3706AFD61E9728180057BFB5 /* FDK_core.cpp */,
  1091. 3706AFD71E9728180057BFB5 /* FDK_crc.cpp */,
  1092. 3706AFD81E9728180057BFB5 /* FDK_hybrid.cpp */,
  1093. 3706AFD91E9728180057BFB5 /* FDK_tools_rom.cpp */,
  1094. 3706AFDA1E9728180057BFB5 /* FDK_trigFcts.cpp */,
  1095. 3706AFDB1E9728180057BFB5 /* fft.cpp */,
  1096. 3706AFDC1E9728180057BFB5 /* fft_rad2.cpp */,
  1097. 3706AFDD1E9728180057BFB5 /* fixpoint_math.cpp */,
  1098. 3706AFDE1E9728180057BFB5 /* mdct.cpp */,
  1099. 3706AFE31E9728180057BFB5 /* qmf.cpp */,
  1100. 3706AFE41E9728180057BFB5 /* scale.cpp */,
  1101. );
  1102. path = src;
  1103. sourceTree = "<group>";
  1104. };
  1105. 3706AFE51E9728180057BFB5 /* libMpegTPDec */ = {
  1106. isa = PBXGroup;
  1107. children = (
  1108. 3706AFE61E9728180057BFB5 /* include */,
  1109. 3706AFEA1E9728180057BFB5 /* src */,
  1110. );
  1111. name = libMpegTPDec;
  1112. path = ../lib/libMpegTPDec;
  1113. sourceTree = "<group>";
  1114. };
  1115. 3706AFE61E9728180057BFB5 /* include */ = {
  1116. isa = PBXGroup;
  1117. children = (
  1118. 3706AFE71E9728180057BFB5 /* mpegFileRead.h */,
  1119. 3706AFE81E9728180057BFB5 /* tp_data.h */,
  1120. 3706AFE91E9728180057BFB5 /* tpdec_lib.h */,
  1121. );
  1122. path = include;
  1123. sourceTree = "<group>";
  1124. };
  1125. 3706AFEA1E9728180057BFB5 /* src */ = {
  1126. isa = PBXGroup;
  1127. children = (
  1128. 3706AFEB1E9728180057BFB5 /* mpegFileFormat.h */,
  1129. 3706AFEC1E9728180057BFB5 /* tpdec_adif.cpp */,
  1130. 3706AFED1E9728180057BFB5 /* tpdec_adif.h */,
  1131. 3706AFEE1E9728180057BFB5 /* tpdec_adts.cpp */,
  1132. 3706AFEF1E9728180057BFB5 /* tpdec_adts.h */,
  1133. 3706AFF01E9728180057BFB5 /* tpdec_asc.cpp */,
  1134. 3706AFF11E9728180057BFB5 /* tpdec_drm.cpp */,
  1135. 3706AFF21E9728180057BFB5 /* tpdec_drm.h */,
  1136. 3706AFF31E9728180057BFB5 /* tpdec_latm.cpp */,
  1137. 3706AFF41E9728180057BFB5 /* tpdec_latm.h */,
  1138. 3706AFF51E9728180057BFB5 /* tpdec_lib.cpp */,
  1139. );
  1140. path = src;
  1141. sourceTree = "<group>";
  1142. };
  1143. 3706AFF71E9728180057BFB5 /* libMpegTPEnc */ = {
  1144. isa = PBXGroup;
  1145. children = (
  1146. 3706AFF81E9728180057BFB5 /* include */,
  1147. 3706AFFC1E9728180057BFB5 /* src */,
  1148. );
  1149. name = libMpegTPEnc;
  1150. path = ../lib/libMpegTPEnc;
  1151. sourceTree = "<group>";
  1152. };
  1153. 3706AFF81E9728180057BFB5 /* include */ = {
  1154. isa = PBXGroup;
  1155. children = (
  1156. 3706AFF91E9728180057BFB5 /* mpegFileWrite.h */,
  1157. 3706AFFA1E9728180057BFB5 /* tp_data.h */,
  1158. 3706AFFB1E9728180057BFB5 /* tpenc_lib.h */,
  1159. );
  1160. path = include;
  1161. sourceTree = "<group>";
  1162. };
  1163. 3706AFFC1E9728180057BFB5 /* src */ = {
  1164. isa = PBXGroup;
  1165. children = (
  1166. 3706AFFD1E9728180057BFB5 /* tpenc_adif.cpp */,
  1167. 3706AFFE1E9728180057BFB5 /* tpenc_adif.h */,
  1168. 3706AFFF1E9728180057BFB5 /* tpenc_adts.cpp */,
  1169. 3706B0001E9728180057BFB5 /* tpenc_adts.h */,
  1170. 3706B0011E9728180057BFB5 /* tpenc_asc.cpp */,
  1171. 3706B0021E9728180057BFB5 /* tpenc_asc.h */,
  1172. 3706B0031E9728180057BFB5 /* tpenc_latm.cpp */,
  1173. 3706B0041E9728180057BFB5 /* tpenc_latm.h */,
  1174. 3706B0051E9728180057BFB5 /* tpenc_lib.cpp */,
  1175. );
  1176. path = src;
  1177. sourceTree = "<group>";
  1178. };
  1179. 3706B0071E9728180057BFB5 /* libPCMutils */ = {
  1180. isa = PBXGroup;
  1181. children = (
  1182. 3706B0081E9728180057BFB5 /* include */,
  1183. 3706B00B1E9728180057BFB5 /* src */,
  1184. );
  1185. name = libPCMutils;
  1186. path = ../lib/libPCMutils;
  1187. sourceTree = "<group>";
  1188. };
  1189. 3706B0081E9728180057BFB5 /* include */ = {
  1190. isa = PBXGroup;
  1191. children = (
  1192. 3706B0091E9728180057BFB5 /* limiter.h */,
  1193. 3706B00A1E9728180057BFB5 /* pcmutils_lib.h */,
  1194. );
  1195. path = include;
  1196. sourceTree = "<group>";
  1197. };
  1198. 3706B00B1E9728180057BFB5 /* src */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. 3706B00C1E9728180057BFB5 /* limiter.cpp */,
  1202. 3706B00D1E9728180057BFB5 /* pcmutils_lib.cpp */,
  1203. );
  1204. path = src;
  1205. sourceTree = "<group>";
  1206. };
  1207. 3706B00E1E9728180057BFB5 /* libSBRdec */ = {
  1208. isa = PBXGroup;
  1209. children = (
  1210. 3706B00F1E9728180057BFB5 /* include */,
  1211. 3706B0111E9728180057BFB5 /* src */,
  1212. );
  1213. name = libSBRdec;
  1214. path = ../lib/libSBRdec;
  1215. sourceTree = "<group>";
  1216. };
  1217. 3706B00F1E9728180057BFB5 /* include */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. 3706B0101E9728180057BFB5 /* sbrdecoder.h */,
  1221. );
  1222. path = include;
  1223. sourceTree = "<group>";
  1224. };
  1225. 3706B0111E9728180057BFB5 /* src */ = {
  1226. isa = PBXGroup;
  1227. children = (
  1228. 3706B0151E9728180057BFB5 /* env_calc.cpp */,
  1229. 3706B0161E9728180057BFB5 /* env_calc.h */,
  1230. 3706B0171E9728180057BFB5 /* env_dec.cpp */,
  1231. 3706B0181E9728180057BFB5 /* env_dec.h */,
  1232. 3706B0191E9728180057BFB5 /* env_extr.cpp */,
  1233. 3706B01A1E9728180057BFB5 /* env_extr.h */,
  1234. 3706B01B1E9728180057BFB5 /* huff_dec.cpp */,
  1235. 3706B01C1E9728180057BFB5 /* huff_dec.h */,
  1236. 3706B01D1E9728180057BFB5 /* lpp_tran.cpp */,
  1237. 3706B01E1E9728180057BFB5 /* lpp_tran.h */,
  1238. 3706B01F1E9728180057BFB5 /* psbitdec.cpp */,
  1239. 3706B0201E9728180057BFB5 /* psbitdec.h */,
  1240. 3706B0211E9728180057BFB5 /* psdec.cpp */,
  1241. 3706B0221E9728180057BFB5 /* psdec.h */,
  1242. 3706B0231E9728180057BFB5 /* psdec_hybrid.cpp */,
  1243. 3706B0241E9728180057BFB5 /* psdec_hybrid.h */,
  1244. 3706B0251E9728180057BFB5 /* sbr_crc.cpp */,
  1245. 3706B0261E9728180057BFB5 /* sbr_crc.h */,
  1246. 3706B0271E9728180057BFB5 /* sbr_deb.cpp */,
  1247. 3706B0281E9728180057BFB5 /* sbr_deb.h */,
  1248. 3706B0291E9728180057BFB5 /* sbr_dec.cpp */,
  1249. 3706B02A1E9728180057BFB5 /* sbr_dec.h */,
  1250. 3706B02B1E9728180057BFB5 /* sbr_ram.cpp */,
  1251. 3706B02C1E9728180057BFB5 /* sbr_ram.h */,
  1252. 3706B02D1E9728180057BFB5 /* sbr_rom.cpp */,
  1253. 3706B02E1E9728180057BFB5 /* sbr_rom.h */,
  1254. 3706B02F1E9728180057BFB5 /* sbr_scale.h */,
  1255. 3706B0301E9728180057BFB5 /* sbrdec_drc.cpp */,
  1256. 3706B0311E9728180057BFB5 /* sbrdec_drc.h */,
  1257. 3706B0321E9728180057BFB5 /* sbrdec_freq_sca.cpp */,
  1258. 3706B0331E9728180057BFB5 /* sbrdec_freq_sca.h */,
  1259. 3706B0341E9728180057BFB5 /* sbrdecoder.cpp */,
  1260. 3706B0351E9728180057BFB5 /* transcendent.h */,
  1261. );
  1262. path = src;
  1263. sourceTree = "<group>";
  1264. };
  1265. 3706B0361E9728180057BFB5 /* libSBRenc */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. 3706B0371E9728180057BFB5 /* include */,
  1269. 3706B0391E9728180057BFB5 /* src */,
  1270. );
  1271. name = libSBRenc;
  1272. path = ../lib/libSBRenc;
  1273. sourceTree = "<group>";
  1274. };
  1275. 3706B0371E9728180057BFB5 /* include */ = {
  1276. isa = PBXGroup;
  1277. children = (
  1278. 3706B0381E9728180057BFB5 /* sbr_encoder.h */,
  1279. );
  1280. path = include;
  1281. sourceTree = "<group>";
  1282. };
  1283. 3706B0391E9728180057BFB5 /* src */ = {
  1284. isa = PBXGroup;
  1285. children = (
  1286. 3706B03A1E9728180057BFB5 /* bit_sbr.cpp */,
  1287. 3706B03B1E9728180057BFB5 /* bit_sbr.h */,
  1288. 3706B03C1E9728180057BFB5 /* cmondata.h */,
  1289. 3706B03D1E9728180057BFB5 /* code_env.cpp */,
  1290. 3706B03E1E9728180057BFB5 /* code_env.h */,
  1291. 3706B03F1E9728180057BFB5 /* env_bit.cpp */,
  1292. 3706B0401E9728180057BFB5 /* env_bit.h */,
  1293. 3706B0411E9728180057BFB5 /* env_est.cpp */,
  1294. 3706B0421E9728180057BFB5 /* env_est.h */,
  1295. 3706B0431E9728180057BFB5 /* fram_gen.cpp */,
  1296. 3706B0441E9728180057BFB5 /* fram_gen.h */,
  1297. 3706B0451E9728180057BFB5 /* invf_est.cpp */,
  1298. 3706B0461E9728180057BFB5 /* invf_est.h */,
  1299. 3706B0471E9728180057BFB5 /* mh_det.cpp */,
  1300. 3706B0481E9728190057BFB5 /* mh_det.h */,
  1301. 3706B0491E9728190057BFB5 /* nf_est.cpp */,
  1302. 3706B04A1E9728190057BFB5 /* nf_est.h */,
  1303. 3706B04B1E9728190057BFB5 /* ps_bitenc.cpp */,
  1304. 3706B04C1E9728190057BFB5 /* ps_bitenc.h */,
  1305. 3706B04D1E9728190057BFB5 /* ps_const.h */,
  1306. 3706B04E1E9728190057BFB5 /* ps_encode.cpp */,
  1307. 3706B04F1E9728190057BFB5 /* ps_encode.h */,
  1308. 3706B0501E9728190057BFB5 /* ps_main.cpp */,
  1309. 3706B0511E9728190057BFB5 /* ps_main.h */,
  1310. 3706B0521E9728190057BFB5 /* resampler.cpp */,
  1311. 3706B0531E9728190057BFB5 /* resampler.h */,
  1312. 3706B0541E9728190057BFB5 /* sbr.h */,
  1313. 3706B0551E9728190057BFB5 /* sbr_def.h */,
  1314. 3706B0561E9728190057BFB5 /* sbr_encoder.cpp */,
  1315. 3706B0571E9728190057BFB5 /* sbr_misc.cpp */,
  1316. 3706B0581E9728190057BFB5 /* sbr_misc.h */,
  1317. 3706B0591E9728190057BFB5 /* sbr_ram.h */,
  1318. 3706B05A1E9728190057BFB5 /* sbr_ram_.cpp */,
  1319. 3706B05B1E9728190057BFB5 /* sbr_rom.h */,
  1320. 3706B05C1E9728190057BFB5 /* sbr_rom_.cpp */,
  1321. 3706B05D1E9728190057BFB5 /* sbrenc_freq_sca.cpp */,
  1322. 3706B05E1E9728190057BFB5 /* sbrenc_freq_sca.h */,
  1323. 3706B05F1E9728190057BFB5 /* ton_corr.cpp */,
  1324. 3706B0601E9728190057BFB5 /* ton_corr.h */,
  1325. 3706B0611E9728190057BFB5 /* tran_det.cpp */,
  1326. 3706B0621E9728190057BFB5 /* tran_det.h */,
  1327. );
  1328. path = src;
  1329. sourceTree = "<group>";
  1330. };
  1331. 3706B0631E9728190057BFB5 /* libSYS */ = {
  1332. isa = PBXGroup;
  1333. children = (
  1334. 3706B0641E9728190057BFB5 /* include */,
  1335. 3706B06C1E9728190057BFB5 /* src */,
  1336. );
  1337. name = libSYS;
  1338. path = ../lib/libSYS;
  1339. sourceTree = "<group>";
  1340. };
  1341. 3706B0641E9728190057BFB5 /* include */ = {
  1342. isa = PBXGroup;
  1343. children = (
  1344. 3706B0651E9728190057BFB5 /* audio.h */,
  1345. 3706B0661E9728190057BFB5 /* cmdl_parser.h */,
  1346. 3706B0671E9728190057BFB5 /* conv_string.h */,
  1347. 3706B0681E9728190057BFB5 /* FDK_audio.h */,
  1348. 3706B0691E9728190057BFB5 /* genericStds.h */,
  1349. 3706B06A1E9728190057BFB5 /* machine_type.h */,
  1350. 3706B06B1E9728190057BFB5 /* wav_file.h */,
  1351. );
  1352. path = include;
  1353. sourceTree = "<group>";
  1354. };
  1355. 3706B06C1E9728190057BFB5 /* src */ = {
  1356. isa = PBXGroup;
  1357. children = (
  1358. 3706B06E1E9728190057BFB5 /* conv_string.cpp */,
  1359. 3706B06F1E9728190057BFB5 /* genericStds.cpp */,
  1360. 3706B0781E9728190057BFB5 /* wav_file.cpp */,
  1361. );
  1362. path = src;
  1363. sourceTree = "<group>";
  1364. };
  1365. /* End PBXGroup section */
  1366. /* Begin PBXHeadersBuildPhase section */
  1367. 0BDA9CC1121EE4C400ED5E97 /* Headers */ = {
  1368. isa = PBXHeadersBuildPhase;
  1369. buildActionMask = 2147483647;
  1370. files = (
  1371. 3706B0BA1E9728190057BFB5 /* debug.h in Headers */,
  1372. 3706B1561E9728190057BFB5 /* sf_estim.h in Headers */,
  1373. 3706B1EC1E9728190057BFB5 /* tp_data.h in Headers */,
  1374. 3706B0D81E9728190057BFB5 /* aacenc_lib.h in Headers */,
  1375. 3706B2801E9728190057BFB5 /* env_est.h in Headers */,
  1376. 3706B1841E9728190057BFB5 /* FDK_bitbuffer.h in Headers */,
  1377. 3706B2161E9728190057BFB5 /* tpenc_asc.h in Headers */,
  1378. 3706B14A1E9728190057BFB5 /* qc_data.h in Headers */,
  1379. 3706B1381E9728190057BFB5 /* pnsparam.h in Headers */,
  1380. 3706B0B21E9728190057BFB5 /* channelinfo.h in Headers */,
  1381. 3706B1881E9728190057BFB5 /* FDK_core.h in Headers */,
  1382. 3706B2681E9728190057BFB5 /* sbrdec_freq_sca.h in Headers */,
  1383. 3706B1B61E9728190057BFB5 /* scramble.h in Headers */,
  1384. 3706B29A1E9728190057BFB5 /* ps_encode.h in Headers */,
  1385. 3706B2CE1E9728190057BFB5 /* wav_file.h in Headers */,
  1386. 3706B2C21E9728190057BFB5 /* audio.h in Headers */,
  1387. 3706B2061E9728190057BFB5 /* mpegFileWrite.h in Headers */,
  1388. 3706B0F41E9728190057BFB5 /* adj_thr_data.h in Headers */,
  1389. 3706B07A1E9728190057BFB5 /* aacdecoder_lib.h in Headers */,
  1390. 3706B1921E9728190057BFB5 /* fft.h in Headers */,
  1391. 3706B28C1E9728190057BFB5 /* mh_det.h in Headers */,
  1392. 3706B0921E9728190057BFB5 /* aacdec_hcr_types.h in Headers */,
  1393. 3706B14E1E9728190057BFB5 /* qc_main.h in Headers */,
  1394. 3706B25E1E9728190057BFB5 /* sbr_rom.h in Headers */,
  1395. 3706B1941E9728190057BFB5 /* fft_rad2.h in Headers */,
  1396. 3706B2B81E9728190057BFB5 /* sbrenc_freq_sca.h in Headers */,
  1397. 3706B0E21E9728190057BFB5 /* aacenc_pns.h in Headers */,
  1398. 3706B2A21E9728190057BFB5 /* resampler.h in Headers */,
  1399. 3706B0D61E9728190057BFB5 /* stereo.h in Headers */,
  1400. 3706B0AE1E9728190057BFB5 /* channel.h in Headers */,
  1401. 3706B2AE1E9728190057BFB5 /* sbr_ram.h in Headers */,
  1402. 3706B19A1E9728190057BFB5 /* fixmul.h in Headers */,
  1403. 3706B2C81E9728190057BFB5 /* FDK_audio.h in Headers */,
  1404. 3706B1F41E9728190057BFB5 /* tpdec_adif.h in Headers */,
  1405. 3706B10C1E9728190057BFB5 /* channel_map.h in Headers */,
  1406. 3706B24E1E9728190057BFB5 /* sbr_crc.h in Headers */,
  1407. 3706B0CA1E9728190057BFB5 /* rvlc_info.h in Headers */,
  1408. 3706B1341E9728190057BFB5 /* pns_func.h in Headers */,
  1409. 3706B2B21E9728190057BFB5 /* sbr_rom.h in Headers */,
  1410. 3706B27C1E9728190057BFB5 /* env_bit.h in Headers */,
  1411. 3706B0B61E9728190057BFB5 /* conceal.h in Headers */,
  1412. 3706B1421E9728190057BFB5 /* psy_const.h in Headers */,
  1413. 3706B2881E9728190057BFB5 /* invf_est.h in Headers */,
  1414. 3706B0881E9728190057BFB5 /* aacdec_drc_types.h in Headers */,
  1415. 3706B0EA1E9728190057BFB5 /* aacEnc_rom.h in Headers */,
  1416. 3706B1601E9728190057BFB5 /* tonality.h in Headers */,
  1417. 3706B0C81E9728190057BFB5 /* rvlc.h in Headers */,
  1418. 3706B1EA1E9728190057BFB5 /* mpegFileRead.h in Headers */,
  1419. 3706B09E1E9728190057BFB5 /* aacdec_tns.h in Headers */,
  1420. 3706B1781E9728190057BFB5 /* autocorr2nd.h in Headers */,
  1421. 3706B0B81E9728190057BFB5 /* conceal_types.h in Headers */,
  1422. 3706B21A1E9728190057BFB5 /* tpenc_latm.h in Headers */,
  1423. 3706B1F01E9728190057BFB5 /* mpegFileFormat.h in Headers */,
  1424. 3706B1EE1E9728190057BFB5 /* tpdec_lib.h in Headers */,
  1425. 3706B09A1E9728190057BFB5 /* aacdec_pns.h in Headers */,
  1426. 3706B2841E9728190057BFB5 /* fram_gen.h in Headers */,
  1427. 3706B2261E9728190057BFB5 /* sbrdecoder.h in Headers */,
  1428. 3706B17C1E9728190057BFB5 /* common_fix.h in Headers */,
  1429. 3706B2A61E9728190057BFB5 /* sbr_def.h in Headers */,
  1430. 3706B25A1E9728190057BFB5 /* sbr_ram.h in Headers */,
  1431. 3706B1141E9728190057BFB5 /* dyn_bits.h in Headers */,
  1432. 3706B19E1E9728190057BFB5 /* mdct.h in Headers */,
  1433. 3706B2C01E9728190057BFB5 /* tran_det.h in Headers */,
  1434. 3706B2781E9728190057BFB5 /* code_env.h in Headers */,
  1435. 3706B2361E9728190057BFB5 /* env_extr.h in Headers */,
  1436. 3706B2721E9728190057BFB5 /* bit_sbr.h in Headers */,
  1437. 3706B18A1E9728190057BFB5 /* FDK_crc.h in Headers */,
  1438. 3706B2081E9728190057BFB5 /* tp_data.h in Headers */,
  1439. 3706B2AC1E9728190057BFB5 /* sbr_misc.h in Headers */,
  1440. 3706B29E1E9728190057BFB5 /* ps_main.h in Headers */,
  1441. 3706B17A1E9728190057BFB5 /* clz.h in Headers */,
  1442. 3706B1F81E9728190057BFB5 /* tpdec_adts.h in Headers */,
  1443. 3706B0A21E9728190057BFB5 /* aacdecoder.h in Headers */,
  1444. 3706B2741E9728190057BFB5 /* cmondata.h in Headers */,
  1445. 3706B2201E9728190057BFB5 /* pcmutils_lib.h in Headers */,
  1446. 3706B1261E9728190057BFB5 /* metadata_compressor.h in Headers */,
  1447. 3706B1001E9728190057BFB5 /* bit_cnt.h in Headers */,
  1448. 3706B1801E9728190057BFB5 /* dct.h in Headers */,
  1449. 3706B0F21E9728190057BFB5 /* adj_thr.h in Headers */,
  1450. 3706B0EE1E9728190057BFB5 /* aacenc_tns.h in Headers */,
  1451. 3706B07E1E9728190057BFB5 /* aac_ram.h in Headers */,
  1452. 3706B1081E9728190057BFB5 /* block_switch.h in Headers */,
  1453. 3706B0C41E9728190057BFB5 /* pulsedata.h in Headers */,
  1454. 3706B23A1E9728190057BFB5 /* huff_dec.h in Headers */,
  1455. 3706B1961E9728190057BFB5 /* fixmadd.h in Headers */,
  1456. 3706B0C01E9728190057BFB5 /* overlapadd.h in Headers */,
  1457. 3706B1521E9728190057BFB5 /* quantize.h in Headers */,
  1458. 3706B16A1E9728190057BFB5 /* abs.h in Headers */,
  1459. 3706B0AA1E9728190057BFB5 /* block.h in Headers */,
  1460. 3706B1181E9728190057BFB5 /* grp_data.h in Headers */,
  1461. 3706B24A1E9728190057BFB5 /* psdec_hybrid.h in Headers */,
  1462. 3706B20E1E9728190057BFB5 /* tpenc_adif.h in Headers */,
  1463. 3706B1401E9728190057BFB5 /* psy_configuration.h in Headers */,
  1464. 3706B13C1E9728190057BFB5 /* pre_echo_control.h in Headers */,
  1465. 3706B2A41E9728190057BFB5 /* sbr.h in Headers */,
  1466. 3706B2901E9728190057BFB5 /* nf_est.h in Headers */,
  1467. 3706B21E1E9728190057BFB5 /* limiter.h in Headers */,
  1468. 3706B18E1E9728190057BFB5 /* FDK_tools_rom.h in Headers */,
  1469. 3706B12E1E9728190057BFB5 /* ms_stereo.h in Headers */,
  1470. 3706B1041E9728190057BFB5 /* bitenc.h in Headers */,
  1471. 3706B1441E9728190057BFB5 /* psy_data.h in Headers */,
  1472. 3706B2941E9728190057BFB5 /* ps_bitenc.h in Headers */,
  1473. 3706B0961E9728190057BFB5 /* aacdec_hcrs.h in Headers */,
  1474. 3706B20A1E9728190057BFB5 /* tpenc_lib.h in Headers */,
  1475. 3706B2961E9728190057BFB5 /* ps_const.h in Headers */,
  1476. 3706B19C1E9728190057BFB5 /* fixpoint_math.h in Headers */,
  1477. 3706B08C1E9728190057BFB5 /* aacdec_hcr.h in Headers */,
  1478. 3706B22E1E9728190057BFB5 /* env_calc.h in Headers */,
  1479. 3706B1861E9728190057BFB5 /* FDK_bitstream.h in Headers */,
  1480. 3706B0DC1E9728190057BFB5 /* aacenc.h in Headers */,
  1481. 3706B2CC1E9728190057BFB5 /* machine_type.h in Headers */,
  1482. 3706B2CA1E9728190057BFB5 /* genericStds.h in Headers */,
  1483. 3706B0821E9728190057BFB5 /* aac_rom.h in Headers */,
  1484. 3706B1FE1E9728190057BFB5 /* tpdec_drm.h in Headers */,
  1485. 3706B2321E9728190057BFB5 /* env_dec.h in Headers */,
  1486. 3706B2521E9728190057BFB5 /* sbr_deb.h in Headers */,
  1487. 3706B1641E9728190057BFB5 /* transform.h in Headers */,
  1488. 3706B1481E9728190057BFB5 /* psy_main.h in Headers */,
  1489. 3706B0901E9728190057BFB5 /* aacdec_hcr_bit.h in Headers */,
  1490. 3706B1221E9728190057BFB5 /* line_pe.h in Headers */,
  1491. 3706B0CE1E9728190057BFB5 /* rvlcbit.h in Headers */,
  1492. 3706B11C1E9728190057BFB5 /* intensity.h in Headers */,
  1493. 3706B17E1E9728190057BFB5 /* cplx_mul.h in Headers */,
  1494. 3706B2BC1E9728190057BFB5 /* ton_corr.h in Headers */,
  1495. 3706B2C61E9728190057BFB5 /* conv_string.h in Headers */,
  1496. 3706B2641E9728190057BFB5 /* sbrdec_drc.h in Headers */,
  1497. 3706B2121E9728190057BFB5 /* tpenc_adts.h in Headers */,
  1498. 3706B0E61E9728190057BFB5 /* aacEnc_ram.h in Headers */,
  1499. 3706B2561E9728190057BFB5 /* sbr_dec.h in Headers */,
  1500. 3706B0D21E9728190057BFB5 /* rvlcconceal.h in Headers */,
  1501. 3706B18C1E9728190057BFB5 /* FDK_hybrid.h in Headers */,
  1502. 3706B2461E9728190057BFB5 /* psdec.h in Headers */,
  1503. 3706B1821E9728190057BFB5 /* FDK_archdef.h in Headers */,
  1504. 3706B2021E9728190057BFB5 /* tpdec_latm.h in Headers */,
  1505. 3706B15C1E9728190057BFB5 /* tns_func.h in Headers */,
  1506. 3706B2C41E9728190057BFB5 /* cmdl_parser.h in Headers */,
  1507. 3706B1101E9728190057BFB5 /* chaosmeasure.h in Headers */,
  1508. 3706B1901E9728190057BFB5 /* FDK_trigFcts.h in Headers */,
  1509. 3706B12A1E9728190057BFB5 /* metadata_main.h in Headers */,
  1510. 3706B1B21E9728190057BFB5 /* qmf.h in Headers */,
  1511. 3706B1B41E9728190057BFB5 /* scale.h in Headers */,
  1512. 3706B26E1E9728190057BFB5 /* sbr_encoder.h in Headers */,
  1513. 3706B2421E9728190057BFB5 /* psbitdec.h in Headers */,
  1514. 3706B2601E9728190057BFB5 /* sbr_scale.h in Headers */,
  1515. 3706B11E1E9728190057BFB5 /* interface.h in Headers */,
  1516. 3706B1981E9728190057BFB5 /* fixminmax.h in Headers */,
  1517. 3706B0BE1E9728190057BFB5 /* ldfiltbank.h in Headers */,
  1518. 3706B0861E9728190057BFB5 /* aacdec_drc.h in Headers */,
  1519. 3706B1321E9728190057BFB5 /* noisedet.h in Headers */,
  1520. 3706B23E1E9728190057BFB5 /* lpp_tran.h in Headers */,
  1521. 3706B0FC1E9728190057BFB5 /* bandwidth.h in Headers */,
  1522. 3706B26C1E9728190057BFB5 /* transcendent.h in Headers */,
  1523. 3706B15A1E9728190057BFB5 /* spreading.h in Headers */,
  1524. 3706B0F81E9728190057BFB5 /* band_nrg.h in Headers */,
  1525. );
  1526. runOnlyForDeploymentPostprocessing = 0;
  1527. };
  1528. D2AAC043055464E500DB518D /* Headers */ = {
  1529. isa = PBXHeadersBuildPhase;
  1530. buildActionMask = 2147483647;
  1531. files = (
  1532. 3706B0B91E9728190057BFB5 /* debug.h in Headers */,
  1533. 3706B1551E9728190057BFB5 /* sf_estim.h in Headers */,
  1534. 3706B1EB1E9728190057BFB5 /* tp_data.h in Headers */,
  1535. 3706B0D71E9728190057BFB5 /* aacenc_lib.h in Headers */,
  1536. 3706B27F1E9728190057BFB5 /* env_est.h in Headers */,
  1537. 3706B1831E9728190057BFB5 /* FDK_bitbuffer.h in Headers */,
  1538. 3706B2151E9728190057BFB5 /* tpenc_asc.h in Headers */,
  1539. 3706B1491E9728190057BFB5 /* qc_data.h in Headers */,
  1540. 3706B1371E9728190057BFB5 /* pnsparam.h in Headers */,
  1541. 3706B0B11E9728190057BFB5 /* channelinfo.h in Headers */,
  1542. 3706B1871E9728190057BFB5 /* FDK_core.h in Headers */,
  1543. 3706B2671E9728190057BFB5 /* sbrdec_freq_sca.h in Headers */,
  1544. 3706B1B51E9728190057BFB5 /* scramble.h in Headers */,
  1545. 3706B2991E9728190057BFB5 /* ps_encode.h in Headers */,
  1546. 3706B2CD1E9728190057BFB5 /* wav_file.h in Headers */,
  1547. 3706B2C11E9728190057BFB5 /* audio.h in Headers */,
  1548. 3706B2051E9728190057BFB5 /* mpegFileWrite.h in Headers */,
  1549. 3706B0F31E9728190057BFB5 /* adj_thr_data.h in Headers */,
  1550. 3706B0791E9728190057BFB5 /* aacdecoder_lib.h in Headers */,
  1551. 3706B1911E9728190057BFB5 /* fft.h in Headers */,
  1552. 3706B28B1E9728190057BFB5 /* mh_det.h in Headers */,
  1553. 3706B0911E9728190057BFB5 /* aacdec_hcr_types.h in Headers */,
  1554. 3706B14D1E9728190057BFB5 /* qc_main.h in Headers */,
  1555. 3706B25D1E9728190057BFB5 /* sbr_rom.h in Headers */,
  1556. 3706B1931E9728190057BFB5 /* fft_rad2.h in Headers */,
  1557. 3706B2B71E9728190057BFB5 /* sbrenc_freq_sca.h in Headers */,
  1558. 3706B0E11E9728190057BFB5 /* aacenc_pns.h in Headers */,
  1559. 3706B2A11E9728190057BFB5 /* resampler.h in Headers */,
  1560. 3706B0D51E9728190057BFB5 /* stereo.h in Headers */,
  1561. 3706B0AD1E9728190057BFB5 /* channel.h in Headers */,
  1562. 3706B2AD1E9728190057BFB5 /* sbr_ram.h in Headers */,
  1563. 3706B1991E9728190057BFB5 /* fixmul.h in Headers */,
  1564. 3706B2C71E9728190057BFB5 /* FDK_audio.h in Headers */,
  1565. 3706B1F31E9728190057BFB5 /* tpdec_adif.h in Headers */,
  1566. 3706B10B1E9728190057BFB5 /* channel_map.h in Headers */,
  1567. 3706B24D1E9728190057BFB5 /* sbr_crc.h in Headers */,
  1568. 3706B0C91E9728190057BFB5 /* rvlc_info.h in Headers */,
  1569. 3706B1331E9728190057BFB5 /* pns_func.h in Headers */,
  1570. 3706B2B11E9728190057BFB5 /* sbr_rom.h in Headers */,
  1571. 3706B27B1E9728190057BFB5 /* env_bit.h in Headers */,
  1572. 3706B0B51E9728190057BFB5 /* conceal.h in Headers */,
  1573. 3706B1411E9728190057BFB5 /* psy_const.h in Headers */,
  1574. 3706B2871E9728190057BFB5 /* invf_est.h in Headers */,
  1575. 3706B0871E9728190057BFB5 /* aacdec_drc_types.h in Headers */,
  1576. 3706B0E91E9728190057BFB5 /* aacEnc_rom.h in Headers */,
  1577. 3706B15F1E9728190057BFB5 /* tonality.h in Headers */,
  1578. 3706B0C71E9728190057BFB5 /* rvlc.h in Headers */,
  1579. 3706B1E91E9728190057BFB5 /* mpegFileRead.h in Headers */,
  1580. 3706B09D1E9728190057BFB5 /* aacdec_tns.h in Headers */,
  1581. 3706B1771E9728190057BFB5 /* autocorr2nd.h in Headers */,
  1582. 3706B0B71E9728190057BFB5 /* conceal_types.h in Headers */,
  1583. 3706B2191E9728190057BFB5 /* tpenc_latm.h in Headers */,
  1584. 3706B1EF1E9728190057BFB5 /* mpegFileFormat.h in Headers */,
  1585. 3706B1ED1E9728190057BFB5 /* tpdec_lib.h in Headers */,
  1586. 3706B0991E9728190057BFB5 /* aacdec_pns.h in Headers */,
  1587. 3706B2831E9728190057BFB5 /* fram_gen.h in Headers */,
  1588. 3706B2251E9728190057BFB5 /* sbrdecoder.h in Headers */,
  1589. 3706B17B1E9728190057BFB5 /* common_fix.h in Headers */,
  1590. 3706B2A51E9728190057BFB5 /* sbr_def.h in Headers */,
  1591. 3706B2591E9728190057BFB5 /* sbr_ram.h in Headers */,
  1592. 3706B1131E9728190057BFB5 /* dyn_bits.h in Headers */,
  1593. 3706B19D1E9728190057BFB5 /* mdct.h in Headers */,
  1594. 3706B2BF1E9728190057BFB5 /* tran_det.h in Headers */,
  1595. 3706B2771E9728190057BFB5 /* code_env.h in Headers */,
  1596. 3706B2351E9728190057BFB5 /* env_extr.h in Headers */,
  1597. 3706B2711E9728190057BFB5 /* bit_sbr.h in Headers */,
  1598. 3706B1891E9728190057BFB5 /* FDK_crc.h in Headers */,
  1599. 3706B2071E9728190057BFB5 /* tp_data.h in Headers */,
  1600. 3706B2AB1E9728190057BFB5 /* sbr_misc.h in Headers */,
  1601. 3706B29D1E9728190057BFB5 /* ps_main.h in Headers */,
  1602. 3706B1791E9728190057BFB5 /* clz.h in Headers */,
  1603. 3706B1F71E9728190057BFB5 /* tpdec_adts.h in Headers */,
  1604. 3706B0A11E9728190057BFB5 /* aacdecoder.h in Headers */,
  1605. 3706B2731E9728190057BFB5 /* cmondata.h in Headers */,
  1606. 3706B21F1E9728190057BFB5 /* pcmutils_lib.h in Headers */,
  1607. 3706B1251E9728190057BFB5 /* metadata_compressor.h in Headers */,
  1608. 3706B0FF1E9728190057BFB5 /* bit_cnt.h in Headers */,
  1609. 3706B17F1E9728190057BFB5 /* dct.h in Headers */,
  1610. 3706B0F11E9728190057BFB5 /* adj_thr.h in Headers */,
  1611. 3706B0ED1E9728190057BFB5 /* aacenc_tns.h in Headers */,
  1612. 3706B07D1E9728190057BFB5 /* aac_ram.h in Headers */,
  1613. 3706B1071E9728190057BFB5 /* block_switch.h in Headers */,
  1614. 3706B0C31E9728190057BFB5 /* pulsedata.h in Headers */,
  1615. 3706B2391E9728190057BFB5 /* huff_dec.h in Headers */,
  1616. 3706B1951E9728190057BFB5 /* fixmadd.h in Headers */,
  1617. 3706B0BF1E9728190057BFB5 /* overlapadd.h in Headers */,
  1618. 3706B1511E9728190057BFB5 /* quantize.h in Headers */,
  1619. 3706B1691E9728190057BFB5 /* abs.h in Headers */,
  1620. 3706B0A91E9728190057BFB5 /* block.h in Headers */,
  1621. 3706B1171E9728190057BFB5 /* grp_data.h in Headers */,
  1622. 3706B2491E9728190057BFB5 /* psdec_hybrid.h in Headers */,
  1623. 3706B20D1E9728190057BFB5 /* tpenc_adif.h in Headers */,
  1624. 3706B13F1E9728190057BFB5 /* psy_configuration.h in Headers */,
  1625. 3706B13B1E9728190057BFB5 /* pre_echo_control.h in Headers */,
  1626. 3706B2A31E9728190057BFB5 /* sbr.h in Headers */,
  1627. 3706B28F1E9728190057BFB5 /* nf_est.h in Headers */,
  1628. 3706B21D1E9728190057BFB5 /* limiter.h in Headers */,
  1629. 3706B18D1E9728190057BFB5 /* FDK_tools_rom.h in Headers */,
  1630. 3706B12D1E9728190057BFB5 /* ms_stereo.h in Headers */,
  1631. 3706B1031E9728190057BFB5 /* bitenc.h in Headers */,
  1632. 3706B1431E9728190057BFB5 /* psy_data.h in Headers */,
  1633. 3706B2931E9728190057BFB5 /* ps_bitenc.h in Headers */,
  1634. 3706B0951E9728190057BFB5 /* aacdec_hcrs.h in Headers */,
  1635. 3706B2091E9728190057BFB5 /* tpenc_lib.h in Headers */,
  1636. 3706B2951E9728190057BFB5 /* ps_const.h in Headers */,
  1637. 3706B19B1E9728190057BFB5 /* fixpoint_math.h in Headers */,
  1638. 3706B08B1E9728190057BFB5 /* aacdec_hcr.h in Headers */,
  1639. 3706B22D1E9728190057BFB5 /* env_calc.h in Headers */,
  1640. 3706B1851E9728190057BFB5 /* FDK_bitstream.h in Headers */,
  1641. 3706B0DB1E9728190057BFB5 /* aacenc.h in Headers */,
  1642. 3706B2CB1E9728190057BFB5 /* machine_type.h in Headers */,
  1643. 3706B2C91E9728190057BFB5 /* genericStds.h in Headers */,
  1644. 3706B0811E9728190057BFB5 /* aac_rom.h in Headers */,
  1645. 3706B1FD1E9728190057BFB5 /* tpdec_drm.h in Headers */,
  1646. 3706B2311E9728190057BFB5 /* env_dec.h in Headers */,
  1647. 3706B2511E9728190057BFB5 /* sbr_deb.h in Headers */,
  1648. 3706B1631E9728190057BFB5 /* transform.h in Headers */,
  1649. 3706B1471E9728190057BFB5 /* psy_main.h in Headers */,
  1650. 3706B08F1E9728190057BFB5 /* aacdec_hcr_bit.h in Headers */,
  1651. 3706B1211E9728190057BFB5 /* line_pe.h in Headers */,
  1652. 3706B0CD1E9728190057BFB5 /* rvlcbit.h in Headers */,
  1653. 3706B11B1E9728190057BFB5 /* intensity.h in Headers */,
  1654. 3706B17D1E9728190057BFB5 /* cplx_mul.h in Headers */,
  1655. 3706B2BB1E9728190057BFB5 /* ton_corr.h in Headers */,
  1656. 3706B2C51E9728190057BFB5 /* conv_string.h in Headers */,
  1657. 3706B2631E9728190057BFB5 /* sbrdec_drc.h in Headers */,
  1658. 3706B2111E9728190057BFB5 /* tpenc_adts.h in Headers */,
  1659. 3706B0E51E9728190057BFB5 /* aacEnc_ram.h in Headers */,
  1660. 3706B2551E9728190057BFB5 /* sbr_dec.h in Headers */,
  1661. 3706B0D11E9728190057BFB5 /* rvlcconceal.h in Headers */,
  1662. 3706B18B1E9728190057BFB5 /* FDK_hybrid.h in Headers */,
  1663. 3706B2451E9728190057BFB5 /* psdec.h in Headers */,
  1664. 3706B1811E9728190057BFB5 /* FDK_archdef.h in Headers */,
  1665. 3706B2011E9728190057BFB5 /* tpdec_latm.h in Headers */,
  1666. 3706B15B1E9728190057BFB5 /* tns_func.h in Headers */,
  1667. 3706B2C31E9728190057BFB5 /* cmdl_parser.h in Headers */,
  1668. 3706B10F1E9728190057BFB5 /* chaosmeasure.h in Headers */,
  1669. 3706B18F1E9728190057BFB5 /* FDK_trigFcts.h in Headers */,
  1670. 3706B1291E9728190057BFB5 /* metadata_main.h in Headers */,
  1671. 3706B1B11E9728190057BFB5 /* qmf.h in Headers */,
  1672. 3706B1B31E9728190057BFB5 /* scale.h in Headers */,
  1673. 3706B26D1E9728190057BFB5 /* sbr_encoder.h in Headers */,
  1674. 3706B2411E9728190057BFB5 /* psbitdec.h in Headers */,
  1675. 3706B25F1E9728190057BFB5 /* sbr_scale.h in Headers */,
  1676. 3706B11D1E9728190057BFB5 /* interface.h in Headers */,
  1677. 3706B1971E9728190057BFB5 /* fixminmax.h in Headers */,
  1678. 3706B0BD1E9728190057BFB5 /* ldfiltbank.h in Headers */,
  1679. 3706B0851E9728190057BFB5 /* aacdec_drc.h in Headers */,
  1680. 3706B1311E9728190057BFB5 /* noisedet.h in Headers */,
  1681. 3706B23D1E9728190057BFB5 /* lpp_tran.h in Headers */,
  1682. 3706B0FB1E9728190057BFB5 /* bandwidth.h in Headers */,
  1683. 3706B26B1E9728190057BFB5 /* transcendent.h in Headers */,
  1684. 3706B1591E9728190057BFB5 /* spreading.h in Headers */,
  1685. 3706B0F71E9728190057BFB5 /* band_nrg.h in Headers */,
  1686. );
  1687. runOnlyForDeploymentPostprocessing = 0;
  1688. };
  1689. /* End PBXHeadersBuildPhase section */
  1690. /* Begin PBXNativeTarget section */
  1691. 0BDA9CC4121EE4C400ED5E97 /* iOS */ = {
  1692. isa = PBXNativeTarget;
  1693. buildConfigurationList = 0BDA9CD0121EE51C00ED5E97 /* Build configuration list for PBXNativeTarget "iOS" */;
  1694. buildPhases = (
  1695. 0BDA9CC1121EE4C400ED5E97 /* Headers */,
  1696. 0BDA9CC2121EE4C400ED5E97 /* Sources */,
  1697. 0BDA9CC3121EE4C400ED5E97 /* Frameworks */,
  1698. );
  1699. buildRules = (
  1700. );
  1701. dependencies = (
  1702. );
  1703. name = iOS;
  1704. productName = iPhone;
  1705. productReference = 0BDA9CC5121EE4C400ED5E97 /* libFDK-AAC.a */;
  1706. productType = "com.apple.product-type.library.static";
  1707. };
  1708. D2AAC045055464E500DB518D /* Mac */ = {
  1709. isa = PBXNativeTarget;
  1710. buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "Mac" */;
  1711. buildPhases = (
  1712. D2AAC043055464E500DB518D /* Headers */,
  1713. D2AAC044055464E500DB518D /* Sources */,
  1714. D289987405E68DCB004EDB86 /* Frameworks */,
  1715. );
  1716. buildRules = (
  1717. );
  1718. dependencies = (
  1719. );
  1720. name = Mac;
  1721. productName = lzma;
  1722. productReference = D2AAC046055464E500DB518D /* libFDK-AAC.a */;
  1723. productType = "com.apple.product-type.library.static";
  1724. };
  1725. /* End PBXNativeTarget section */
  1726. /* Begin PBXProject section */
  1727. 08FB7793FE84155DC02AAC07 /* Project object */ = {
  1728. isa = PBXProject;
  1729. attributes = {
  1730. };
  1731. buildConfigurationList = 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "FDK-AAC" */;
  1732. compatibilityVersion = "Xcode 3.2";
  1733. developmentRegion = English;
  1734. hasScannedForEncodings = 1;
  1735. knownRegions = (
  1736. English,
  1737. Japanese,
  1738. French,
  1739. German,
  1740. );
  1741. mainGroup = 08FB7794FE84155DC02AAC07 /* lzma */;
  1742. projectDirPath = "";
  1743. projectRoot = "";
  1744. targets = (
  1745. D2AAC045055464E500DB518D /* Mac */,
  1746. 0BDA9CC4121EE4C400ED5E97 /* iOS */,
  1747. );
  1748. };
  1749. /* End PBXProject section */
  1750. /* Begin PBXSourcesBuildPhase section */
  1751. 0BDA9CC2121EE4C400ED5E97 /* Sources */ = {
  1752. isa = PBXSourcesBuildPhase;
  1753. buildActionMask = 2147483647;
  1754. files = (
  1755. 3706B08A1E9728190057BFB5 /* aacdec_hcr.cpp in Sources */,
  1756. 3706B29C1E9728190057BFB5 /* ps_main.cpp in Sources */,
  1757. 3706B15E1E9728190057BFB5 /* tonality.cpp in Sources */,
  1758. 3706B1461E9728190057BFB5 /* psy_main.cpp in Sources */,
  1759. 3706B27A1E9728190057BFB5 /* env_bit.cpp in Sources */,
  1760. 3706B1D01E9728190057BFB5 /* FDK_crc.cpp in Sources */,
  1761. 3706B1FA1E9728190057BFB5 /* tpdec_asc.cpp in Sources */,
  1762. 3706B0FA1E9728190057BFB5 /* bandwidth.cpp in Sources */,
  1763. 3706B0801E9728190057BFB5 /* aac_rom.cpp in Sources */,
  1764. 3706B2581E9728190057BFB5 /* sbr_ram.cpp in Sources */,
  1765. 3706B24C1E9728190057BFB5 /* sbr_crc.cpp in Sources */,
  1766. 3706B2861E9728190057BFB5 /* invf_est.cpp in Sources */,
  1767. 3706B2341E9728190057BFB5 /* env_extr.cpp in Sources */,
  1768. 3706B21C1E9728190057BFB5 /* tpenc_lib.cpp in Sources */,
  1769. 3706B0D41E9728190057BFB5 /* stereo.cpp in Sources */,
  1770. 3706B2921E9728190057BFB5 /* ps_bitenc.cpp in Sources */,
  1771. 3706B2401E9728190057BFB5 /* psbitdec.cpp in Sources */,
  1772. 3706B28A1E9728190057BFB5 /* mh_det.cpp in Sources */,
  1773. 3706B2181E9728190057BFB5 /* tpenc_latm.cpp in Sources */,
  1774. 3706B2B01E9728190057BFB5 /* sbr_ram_.cpp in Sources */,
  1775. 3706B1F61E9728190057BFB5 /* tpdec_adts.cpp in Sources */,
  1776. 3706B0C61E9728190057BFB5 /* rvlc.cpp in Sources */,
  1777. 3706B1CC1E9728190057BFB5 /* FDK_bitbuffer.cpp in Sources */,
  1778. 3706B12C1E9728190057BFB5 /* ms_stereo.cpp in Sources */,
  1779. 3706B25C1E9728190057BFB5 /* sbr_rom.cpp in Sources */,
  1780. 3706B0981E9728190057BFB5 /* aacdec_pns.cpp in Sources */,
  1781. 3706B2701E9728190057BFB5 /* bit_sbr.cpp in Sources */,
  1782. 3706B2241E9728190057BFB5 /* pcmutils_lib.cpp in Sources */,
  1783. 3706B0E81E9728190057BFB5 /* aacEnc_rom.cpp in Sources */,
  1784. 3706B0FE1E9728190057BFB5 /* bit_cnt.cpp in Sources */,
  1785. 3706B0841E9728190057BFB5 /* aacdec_drc.cpp in Sources */,
  1786. 3706B2761E9728190057BFB5 /* code_env.cpp in Sources */,
  1787. 3706B2BA1E9728190057BFB5 /* ton_corr.cpp in Sources */,
  1788. 3706B0DA1E9728190057BFB5 /* aacenc.cpp in Sources */,
  1789. 3706B09C1E9728190057BFB5 /* aacdec_tns.cpp in Sources */,
  1790. 3706B0C21E9728190057BFB5 /* pulsedata.cpp in Sources */,
  1791. 3706B0AC1E9728190057BFB5 /* channel.cpp in Sources */,
  1792. 3706B23C1E9728190057BFB5 /* lpp_tran.cpp in Sources */,
  1793. 3706B20C1E9728190057BFB5 /* tpenc_adif.cpp in Sources */,
  1794. 3706B2041E9728190057BFB5 /* tpdec_lib.cpp in Sources */,
  1795. 3706B1061E9728190057BFB5 /* block_switch.cpp in Sources */,
  1796. 3706B22C1E9728190057BFB5 /* env_calc.cpp in Sources */,
  1797. 3706B27E1E9728190057BFB5 /* env_est.cpp in Sources */,
  1798. 3706B0A81E9728190057BFB5 /* block.cpp in Sources */,
  1799. 3706B2541E9728190057BFB5 /* sbr_dec.cpp in Sources */,
  1800. 3706B0F01E9728190057BFB5 /* adj_thr.cpp in Sources */,
  1801. 3706B2501E9728190057BFB5 /* sbr_deb.cpp in Sources */,
  1802. 3706B2101E9728190057BFB5 /* tpenc_adts.cpp in Sources */,
  1803. 3706B2621E9728190057BFB5 /* sbrdec_drc.cpp in Sources */,
  1804. 3706B1D61E9728190057BFB5 /* FDK_trigFcts.cpp in Sources */,
  1805. 3706B0F61E9728190057BFB5 /* band_nrg.cpp in Sources */,
  1806. 3706B1D81E9728190057BFB5 /* fft.cpp in Sources */,
  1807. 3706B2D21E9728190057BFB5 /* conv_string.cpp in Sources */,
  1808. 3706B26A1E9728190057BFB5 /* sbrdecoder.cpp in Sources */,
  1809. 3706B1121E9728190057BFB5 /* dyn_bits.cpp in Sources */,
  1810. 3706B2221E9728190057BFB5 /* limiter.cpp in Sources */,
  1811. 3706B1021E9728190057BFB5 /* bitenc.cpp in Sources */,
  1812. 3706B13A1E9728190057BFB5 /* pre_echo_control.cpp in Sources */,
  1813. 3706B1581E9728190057BFB5 /* spreading.cpp in Sources */,
  1814. 3706B08E1E9728190057BFB5 /* aacdec_hcr_bit.cpp in Sources */,
  1815. 3706B0B41E9728190057BFB5 /* conceal.cpp in Sources */,
  1816. 3706B1201E9728190057BFB5 /* line_pe.cpp in Sources */,
  1817. 3706B1DE1E9728190057BFB5 /* mdct.cpp in Sources */,
  1818. 3706B2481E9728190057BFB5 /* psdec_hybrid.cpp in Sources */,
  1819. 3706B2661E9728190057BFB5 /* sbrdec_freq_sca.cpp in Sources */,
  1820. 3706B1361E9728190057BFB5 /* pnsparam.cpp in Sources */,
  1821. 3706B2BE1E9728190057BFB5 /* tran_det.cpp in Sources */,
  1822. 3706B2141E9728190057BFB5 /* tpenc_asc.cpp in Sources */,
  1823. 3706B2B41E9728190057BFB5 /* sbr_rom_.cpp in Sources */,
  1824. 3706B2B61E9728190057BFB5 /* sbrenc_freq_sca.cpp in Sources */,
  1825. 3706B1501E9728190057BFB5 /* quantize.cpp in Sources */,
  1826. 3706B0BC1E9728190057BFB5 /* ldfiltbank.cpp in Sources */,
  1827. 3706B1CE1E9728190057BFB5 /* FDK_core.cpp in Sources */,
  1828. 3706B2E21E9728190057BFB5 /* wav_file.cpp in Sources */,
  1829. 3706B11A1E9728190057BFB5 /* intensity.cpp in Sources */,
  1830. 3706B1DA1E9728190057BFB5 /* fft_rad2.cpp in Sources */,
  1831. 3706B0A41E9728190057BFB5 /* aacdecoder_lib.cpp in Sources */,
  1832. 3706B1621E9728190057BFB5 /* transform.cpp in Sources */,
  1833. 3706B2381E9728190057BFB5 /* huff_dec.cpp in Sources */,
  1834. 3706B1F21E9728190057BFB5 /* tpdec_adif.cpp in Sources */,
  1835. 3706B0941E9728190057BFB5 /* aacdec_hcrs.cpp in Sources */,
  1836. 3706B1DC1E9728190057BFB5 /* fixpoint_math.cpp in Sources */,
  1837. 3706B1E61E9728190057BFB5 /* qmf.cpp in Sources */,
  1838. 3706B0B01E9728190057BFB5 /* channelinfo.cpp in Sources */,
  1839. 3706B0E01E9728190057BFB5 /* aacenc_pns.cpp in Sources */,
  1840. 3706B1C81E9728190057BFB5 /* autocorr2nd.cpp in Sources */,
  1841. 3706B1D41E9728190057BFB5 /* FDK_tools_rom.cpp in Sources */,
  1842. 3706B1241E9728190057BFB5 /* metadata_compressor.cpp in Sources */,
  1843. 3706B0D01E9728190057BFB5 /* rvlcconceal.cpp in Sources */,
  1844. 3706B2001E9728190057BFB5 /* tpdec_latm.cpp in Sources */,
  1845. 3706B07C1E9728190057BFB5 /* aac_ram.cpp in Sources */,
  1846. 3706B14C1E9728190057BFB5 /* qc_main.cpp in Sources */,
  1847. 3706B10A1E9728190057BFB5 /* channel_map.cpp in Sources */,
  1848. 3706B1541E9728190057BFB5 /* sf_estim.cpp in Sources */,
  1849. 3706B1281E9728190057BFB5 /* metadata_main.cpp in Sources */,
  1850. 3706B1D21E9728190057BFB5 /* FDK_hybrid.cpp in Sources */,
  1851. 3706B0CC1E9728190057BFB5 /* rvlcbit.cpp in Sources */,
  1852. 3706B1CA1E9728190057BFB5 /* dct.cpp in Sources */,
  1853. 3706B0A01E9728190057BFB5 /* aacdecoder.cpp in Sources */,
  1854. 3706B2301E9728190057BFB5 /* env_dec.cpp in Sources */,
  1855. 3706B2441E9728190057BFB5 /* psdec.cpp in Sources */,
  1856. 3706B28E1E9728190057BFB5 /* nf_est.cpp in Sources */,
  1857. 3706B2A01E9728190057BFB5 /* resampler.cpp in Sources */,
  1858. 3706B0EC1E9728190057BFB5 /* aacenc_tns.cpp in Sources */,
  1859. 3706B0E41E9728190057BFB5 /* aacEnc_ram.cpp in Sources */,
  1860. 3706B2981E9728190057BFB5 /* ps_encode.cpp in Sources */,
  1861. 3706B2A81E9728190057BFB5 /* sbr_encoder.cpp in Sources */,
  1862. 3706B0DE1E9728190057BFB5 /* aacenc_lib.cpp in Sources */,
  1863. 3706B1E81E9728190057BFB5 /* scale.cpp in Sources */,
  1864. 3706B1FC1E9728190057BFB5 /* tpdec_drm.cpp in Sources */,
  1865. 3706B10E1E9728190057BFB5 /* chaosmeasure.cpp in Sources */,
  1866. 3706B2821E9728190057BFB5 /* fram_gen.cpp in Sources */,
  1867. 3706B2D41E9728190057BFB5 /* genericStds.cpp in Sources */,
  1868. 3706B1161E9728190057BFB5 /* grp_data.cpp in Sources */,
  1869. 3706B1301E9728190057BFB5 /* noisedet.cpp in Sources */,
  1870. 3706B13E1E9728190057BFB5 /* psy_configuration.cpp in Sources */,
  1871. 3706B2AA1E9728190057BFB5 /* sbr_misc.cpp in Sources */,
  1872. );
  1873. runOnlyForDeploymentPostprocessing = 0;
  1874. };
  1875. D2AAC044055464E500DB518D /* Sources */ = {
  1876. isa = PBXSourcesBuildPhase;
  1877. buildActionMask = 2147483647;
  1878. files = (
  1879. 3706B0891E9728190057BFB5 /* aacdec_hcr.cpp in Sources */,
  1880. 3706B29B1E9728190057BFB5 /* ps_main.cpp in Sources */,
  1881. 3706B15D1E9728190057BFB5 /* tonality.cpp in Sources */,
  1882. 3706B1451E9728190057BFB5 /* psy_main.cpp in Sources */,
  1883. 3706B2791E9728190057BFB5 /* env_bit.cpp in Sources */,
  1884. 3706B1CF1E9728190057BFB5 /* FDK_crc.cpp in Sources */,
  1885. 3706B1F91E9728190057BFB5 /* tpdec_asc.cpp in Sources */,
  1886. 3706B0F91E9728190057BFB5 /* bandwidth.cpp in Sources */,
  1887. 3706B07F1E9728190057BFB5 /* aac_rom.cpp in Sources */,
  1888. 3706B2571E9728190057BFB5 /* sbr_ram.cpp in Sources */,
  1889. 3706B24B1E9728190057BFB5 /* sbr_crc.cpp in Sources */,
  1890. 3706B2851E9728190057BFB5 /* invf_est.cpp in Sources */,
  1891. 3706B2331E9728190057BFB5 /* env_extr.cpp in Sources */,
  1892. 3706B21B1E9728190057BFB5 /* tpenc_lib.cpp in Sources */,
  1893. 3706B0D31E9728190057BFB5 /* stereo.cpp in Sources */,
  1894. 3706B2911E9728190057BFB5 /* ps_bitenc.cpp in Sources */,
  1895. 3706B23F1E9728190057BFB5 /* psbitdec.cpp in Sources */,
  1896. 3706B2891E9728190057BFB5 /* mh_det.cpp in Sources */,
  1897. 3706B2171E9728190057BFB5 /* tpenc_latm.cpp in Sources */,
  1898. 3706B2AF1E9728190057BFB5 /* sbr_ram_.cpp in Sources */,
  1899. 3706B1F51E9728190057BFB5 /* tpdec_adts.cpp in Sources */,
  1900. 3706B0C51E9728190057BFB5 /* rvlc.cpp in Sources */,
  1901. 3706B1CB1E9728190057BFB5 /* FDK_bitbuffer.cpp in Sources */,
  1902. 3706B12B1E9728190057BFB5 /* ms_stereo.cpp in Sources */,
  1903. 3706B25B1E9728190057BFB5 /* sbr_rom.cpp in Sources */,
  1904. 3706B0971E9728190057BFB5 /* aacdec_pns.cpp in Sources */,
  1905. 3706B26F1E9728190057BFB5 /* bit_sbr.cpp in Sources */,
  1906. 3706B2231E9728190057BFB5 /* pcmutils_lib.cpp in Sources */,
  1907. 3706B0E71E9728190057BFB5 /* aacEnc_rom.cpp in Sources */,
  1908. 3706B0FD1E9728190057BFB5 /* bit_cnt.cpp in Sources */,
  1909. 3706B0831E9728190057BFB5 /* aacdec_drc.cpp in Sources */,
  1910. 3706B2751E9728190057BFB5 /* code_env.cpp in Sources */,
  1911. 3706B2B91E9728190057BFB5 /* ton_corr.cpp in Sources */,
  1912. 3706B0D91E9728190057BFB5 /* aacenc.cpp in Sources */,
  1913. 3706B09B1E9728190057BFB5 /* aacdec_tns.cpp in Sources */,
  1914. 3706B0C11E9728190057BFB5 /* pulsedata.cpp in Sources */,
  1915. 3706B0AB1E9728190057BFB5 /* channel.cpp in Sources */,
  1916. 3706B23B1E9728190057BFB5 /* lpp_tran.cpp in Sources */,
  1917. 3706B20B1E9728190057BFB5 /* tpenc_adif.cpp in Sources */,
  1918. 3706B2031E9728190057BFB5 /* tpdec_lib.cpp in Sources */,
  1919. 3706B1051E9728190057BFB5 /* block_switch.cpp in Sources */,
  1920. 3706B22B1E9728190057BFB5 /* env_calc.cpp in Sources */,
  1921. 3706B27D1E9728190057BFB5 /* env_est.cpp in Sources */,
  1922. 3706B0A71E9728190057BFB5 /* block.cpp in Sources */,
  1923. 3706B2531E9728190057BFB5 /* sbr_dec.cpp in Sources */,
  1924. 3706B0EF1E9728190057BFB5 /* adj_thr.cpp in Sources */,
  1925. 3706B24F1E9728190057BFB5 /* sbr_deb.cpp in Sources */,
  1926. 3706B20F1E9728190057BFB5 /* tpenc_adts.cpp in Sources */,
  1927. 3706B2611E9728190057BFB5 /* sbrdec_drc.cpp in Sources */,
  1928. 3706B1D51E9728190057BFB5 /* FDK_trigFcts.cpp in Sources */,
  1929. 3706B0F51E9728190057BFB5 /* band_nrg.cpp in Sources */,
  1930. 3706B1D71E9728190057BFB5 /* fft.cpp in Sources */,
  1931. 3706B2D11E9728190057BFB5 /* conv_string.cpp in Sources */,
  1932. 3706B2691E9728190057BFB5 /* sbrdecoder.cpp in Sources */,
  1933. 3706B1111E9728190057BFB5 /* dyn_bits.cpp in Sources */,
  1934. 3706B2211E9728190057BFB5 /* limiter.cpp in Sources */,
  1935. 3706B1011E9728190057BFB5 /* bitenc.cpp in Sources */,
  1936. 3706B1391E9728190057BFB5 /* pre_echo_control.cpp in Sources */,
  1937. 3706B1571E9728190057BFB5 /* spreading.cpp in Sources */,
  1938. 3706B08D1E9728190057BFB5 /* aacdec_hcr_bit.cpp in Sources */,
  1939. 3706B0B31E9728190057BFB5 /* conceal.cpp in Sources */,
  1940. 3706B11F1E9728190057BFB5 /* line_pe.cpp in Sources */,
  1941. 3706B1DD1E9728190057BFB5 /* mdct.cpp in Sources */,
  1942. 3706B2471E9728190057BFB5 /* psdec_hybrid.cpp in Sources */,
  1943. 3706B2651E9728190057BFB5 /* sbrdec_freq_sca.cpp in Sources */,
  1944. 3706B1351E9728190057BFB5 /* pnsparam.cpp in Sources */,
  1945. 3706B2BD1E9728190057BFB5 /* tran_det.cpp in Sources */,
  1946. 3706B2131E9728190057BFB5 /* tpenc_asc.cpp in Sources */,
  1947. 3706B2B31E9728190057BFB5 /* sbr_rom_.cpp in Sources */,
  1948. 3706B2B51E9728190057BFB5 /* sbrenc_freq_sca.cpp in Sources */,
  1949. 3706B14F1E9728190057BFB5 /* quantize.cpp in Sources */,
  1950. 3706B0BB1E9728190057BFB5 /* ldfiltbank.cpp in Sources */,
  1951. 3706B1CD1E9728190057BFB5 /* FDK_core.cpp in Sources */,
  1952. 3706B2E11E9728190057BFB5 /* wav_file.cpp in Sources */,
  1953. 3706B1191E9728190057BFB5 /* intensity.cpp in Sources */,
  1954. 3706B1D91E9728190057BFB5 /* fft_rad2.cpp in Sources */,
  1955. 3706B0A31E9728190057BFB5 /* aacdecoder_lib.cpp in Sources */,
  1956. 3706B1611E9728190057BFB5 /* transform.cpp in Sources */,
  1957. 3706B2371E9728190057BFB5 /* huff_dec.cpp in Sources */,
  1958. 3706B1F11E9728190057BFB5 /* tpdec_adif.cpp in Sources */,
  1959. 3706B0931E9728190057BFB5 /* aacdec_hcrs.cpp in Sources */,
  1960. 3706B1DB1E9728190057BFB5 /* fixpoint_math.cpp in Sources */,
  1961. 3706B1E51E9728190057BFB5 /* qmf.cpp in Sources */,
  1962. 3706B0AF1E9728190057BFB5 /* channelinfo.cpp in Sources */,
  1963. 3706B0DF1E9728190057BFB5 /* aacenc_pns.cpp in Sources */,
  1964. 3706B1C71E9728190057BFB5 /* autocorr2nd.cpp in Sources */,
  1965. 3706B1D31E9728190057BFB5 /* FDK_tools_rom.cpp in Sources */,
  1966. 3706B1231E9728190057BFB5 /* metadata_compressor.cpp in Sources */,
  1967. 3706B0CF1E9728190057BFB5 /* rvlcconceal.cpp in Sources */,
  1968. 3706B1FF1E9728190057BFB5 /* tpdec_latm.cpp in Sources */,
  1969. 3706B07B1E9728190057BFB5 /* aac_ram.cpp in Sources */,
  1970. 3706B14B1E9728190057BFB5 /* qc_main.cpp in Sources */,
  1971. 3706B1091E9728190057BFB5 /* channel_map.cpp in Sources */,
  1972. 3706B1531E9728190057BFB5 /* sf_estim.cpp in Sources */,
  1973. 3706B1271E9728190057BFB5 /* metadata_main.cpp in Sources */,
  1974. 3706B1D11E9728190057BFB5 /* FDK_hybrid.cpp in Sources */,
  1975. 3706B0CB1E9728190057BFB5 /* rvlcbit.cpp in Sources */,
  1976. 3706B1C91E9728190057BFB5 /* dct.cpp in Sources */,
  1977. 3706B09F1E9728190057BFB5 /* aacdecoder.cpp in Sources */,
  1978. 3706B22F1E9728190057BFB5 /* env_dec.cpp in Sources */,
  1979. 3706B2431E9728190057BFB5 /* psdec.cpp in Sources */,
  1980. 3706B28D1E9728190057BFB5 /* nf_est.cpp in Sources */,
  1981. 3706B29F1E9728190057BFB5 /* resampler.cpp in Sources */,
  1982. 3706B0EB1E9728190057BFB5 /* aacenc_tns.cpp in Sources */,
  1983. 3706B0E31E9728190057BFB5 /* aacEnc_ram.cpp in Sources */,
  1984. 3706B2971E9728190057BFB5 /* ps_encode.cpp in Sources */,
  1985. 3706B2A71E9728190057BFB5 /* sbr_encoder.cpp in Sources */,
  1986. 3706B0DD1E9728190057BFB5 /* aacenc_lib.cpp in Sources */,
  1987. 3706B1E71E9728190057BFB5 /* scale.cpp in Sources */,
  1988. 3706B1FB1E9728190057BFB5 /* tpdec_drm.cpp in Sources */,
  1989. 3706B10D1E9728190057BFB5 /* chaosmeasure.cpp in Sources */,
  1990. 3706B2811E9728190057BFB5 /* fram_gen.cpp in Sources */,
  1991. 3706B2D31E9728190057BFB5 /* genericStds.cpp in Sources */,
  1992. 3706B1151E9728190057BFB5 /* grp_data.cpp in Sources */,
  1993. 3706B12F1E9728190057BFB5 /* noisedet.cpp in Sources */,
  1994. 3706B13D1E9728190057BFB5 /* psy_configuration.cpp in Sources */,
  1995. 3706B2A91E9728190057BFB5 /* sbr_misc.cpp in Sources */,
  1996. );
  1997. runOnlyForDeploymentPostprocessing = 0;
  1998. };
  1999. /* End PBXSourcesBuildPhase section */
  2000. /* Begin XCBuildConfiguration section */
  2001. 0B96A71D1304843300CDC521 /* Debug */ = {
  2002. isa = XCBuildConfiguration;
  2003. buildSettings = {
  2004. GCC_ENABLE_FIX_AND_CONTINUE = YES;
  2005. GCC_FAST_MATH = YES;
  2006. GCC_THREADSAFE_STATICS = NO;
  2007. HEADER_SEARCH_PATHS = ../lib/libSBRenc/include;
  2008. PRODUCT_NAME = "FDK-AAC";
  2009. };
  2010. name = Debug;
  2011. };
  2012. 0B96A71E1304843300CDC521 /* Debug */ = {
  2013. isa = XCBuildConfiguration;
  2014. buildSettings = {
  2015. };
  2016. name = Debug;
  2017. };
  2018. 0B96A71F1304843300CDC521 /* Debug */ = {
  2019. isa = XCBuildConfiguration;
  2020. buildSettings = {
  2021. SDKROOT = iphoneos;
  2022. };
  2023. name = Debug;
  2024. };
  2025. 0BDA9CC7121EE4C400ED5E97 /* Release */ = {
  2026. isa = XCBuildConfiguration;
  2027. buildSettings = {
  2028. SDKROOT = iphoneos;
  2029. };
  2030. name = Release;
  2031. };
  2032. 1DEB91ED08733DB70010E9CD /* Release */ = {
  2033. isa = XCBuildConfiguration;
  2034. buildSettings = {
  2035. };
  2036. name = Release;
  2037. };
  2038. 1DEB91F108733DB70010E9CD /* Release */ = {
  2039. isa = XCBuildConfiguration;
  2040. buildSettings = {
  2041. GCC_FAST_MATH = YES;
  2042. GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
  2043. GCC_THREADSAFE_STATICS = NO;
  2044. HEADER_SEARCH_PATHS = ../lib/libSBRenc/include;
  2045. PRODUCT_NAME = "FDK-AAC";
  2046. };
  2047. name = Release;
  2048. };
  2049. /* End XCBuildConfiguration section */
  2050. /* Begin XCConfigurationList section */
  2051. 0BDA9CD0121EE51C00ED5E97 /* Build configuration list for PBXNativeTarget "iOS" */ = {
  2052. isa = XCConfigurationList;
  2053. buildConfigurations = (
  2054. 0BDA9CC7121EE4C400ED5E97 /* Release */,
  2055. 0B96A71F1304843300CDC521 /* Debug */,
  2056. );
  2057. defaultConfigurationIsVisible = 0;
  2058. defaultConfigurationName = Release;
  2059. };
  2060. 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "Mac" */ = {
  2061. isa = XCConfigurationList;
  2062. buildConfigurations = (
  2063. 1DEB91ED08733DB70010E9CD /* Release */,
  2064. 0B96A71E1304843300CDC521 /* Debug */,
  2065. );
  2066. defaultConfigurationIsVisible = 0;
  2067. defaultConfigurationName = Release;
  2068. };
  2069. 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "FDK-AAC" */ = {
  2070. isa = XCConfigurationList;
  2071. buildConfigurations = (
  2072. 1DEB91F108733DB70010E9CD /* Release */,
  2073. 0B96A71D1304843300CDC521 /* Debug */,
  2074. );
  2075. defaultConfigurationIsVisible = 0;
  2076. defaultConfigurationName = Release;
  2077. };
  2078. /* End XCConfigurationList section */
  2079. };
  2080. rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
  2081. }