summaryrefslogtreecommitdiffstats
path: root/macosx/HandBrake.xcodeproj/project.pbxproj
blob: d4581b9b59ffab383c2e86238f488ae4db75fb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		226268E01572CC7300477B4E /* libavresample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 226268DF1572CC7300477B4E /* libavresample.a */; };
		226268E11572CC7300477B4E /* libavresample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 226268DF1572CC7300477B4E /* libavresample.a */; };
		22DD2C4A177B94DB00EF50D3 /* libvpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22DD2C49177B94DB00EF50D3 /* libvpx.a */; };
		22DD2C4B177B95DA00EF50D3 /* libvpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22DD2C49177B94DB00EF50D3 /* libvpx.a */; };
		273F202314ADB8650021BE6D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202214ADB8650021BE6D /* IOKit.framework */; };
		273F202614ADB8A40021BE6D /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202514ADB8A40021BE6D /* libz.dylib */; };
		273F202814ADB8BE0021BE6D /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202714ADB8BE0021BE6D /* libbz2.dylib */; };
		273F202A14ADB8D60021BE6D /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202914ADB8D60021BE6D /* libiconv.dylib */; };
		273F203014ADB9790021BE6D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202F14ADB9790021BE6D /* AudioToolbox.framework */; };
		273F203314ADB9F00021BE6D /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F203214ADB9F00021BE6D /* CoreServices.framework */; };
		273F203C14ADBC210021BE6D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F203B14ADBC210021BE6D /* Cocoa.framework */; };
		273F208914ADBE3B0021BE6D /* fakexcode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273F208514ADBE3B0021BE6D /* fakexcode.cpp */; };
		273F208A14ADBE3B0021BE6D /* parsecsv.c in Sources */ = {isa = PBXBuildFile; fileRef = 273F208614ADBE3B0021BE6D /* parsecsv.c */; };
		273F208B14ADBE3B0021BE6D /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = 273F208814ADBE3B0021BE6D /* test.c */; };
		273F20AC14ADBE670021BE6D /* HBController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F208F14ADBE670021BE6D /* HBController.m */; };
		273F20AD14ADBE670021BE6D /* HBAdvancedController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209014ADBE670021BE6D /* HBAdvancedController.m */; };
		273F20AE14ADBE670021BE6D /* HBAudioTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209214ADBE670021BE6D /* HBAudioTrack.m */; };
		273F20AF14ADBE670021BE6D /* HBAudioController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209414ADBE670021BE6D /* HBAudioController.m */; };
		273F20B114ADBE670021BE6D /* HBDVDDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209814ADBE670021BE6D /* HBDVDDetector.m */; };
		273F20B214ADBE670021BE6D /* HBImageAndTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209A14ADBE670021BE6D /* HBImageAndTextCell.m */; };
		273F20B314ADBE670021BE6D /* HBOutputPanelController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209C14ADBE670021BE6D /* HBOutputPanelController.m */; };
		273F20B414ADBE670021BE6D /* HBOutputRedirect.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F209E14ADBE670021BE6D /* HBOutputRedirect.m */; };
		273F20B514ADBE670021BE6D /* HBPreferencesController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F20A014ADBE670021BE6D /* HBPreferencesController.m */; };
		273F20B614ADBE670021BE6D /* HBPresetsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F20A214ADBE670021BE6D /* HBPresetsManager.m */; };
		273F20B714ADBE670021BE6D /* HBPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F20A414ADBE670021BE6D /* HBPreviewController.m */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; };
		273F20BA14ADBE670021BE6D /* HBPictureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 273F20AA14ADBE670021BE6D /* HBPictureController.m */; };
		273F20BE14ADC09F0021BE6D /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 273F20BD14ADC09F0021BE6D /* main.mm */; };
		273F20C314ADC4AE0021BE6D /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202914ADB8D60021BE6D /* libiconv.dylib */; };
		273F20C414ADC4B60021BE6D /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202714ADB8BE0021BE6D /* libbz2.dylib */; };
		273F20C514ADC4BD0021BE6D /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202514ADB8A40021BE6D /* libz.dylib */; };
		273F20C614ADC4F50021BE6D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202214ADB8650021BE6D /* IOKit.framework */; };
		273F20C814ADC4FF0021BE6D /* QTKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F20C714ADC4FF0021BE6D /* QTKit.framework */; };
		273F20C914ADC5150021BE6D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202F14ADB9790021BE6D /* AudioToolbox.framework */; };
		273F20CB14ADC89A0021BE6D /* Growl.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 273F20BF14ADC1250021BE6D /* Growl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		273F20CC14ADC8A10021BE6D /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 273F20C014ADC1250021BE6D /* Sparkle.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		273F214C14ADCBF80021BE6D /* Delete.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212514ADCBF70021BE6D /* Delete.png */; };
		273F214D14ADCBF80021BE6D /* DeleteHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212614ADCBF70021BE6D /* DeleteHighlight.png */; };
		273F214E14ADCBF80021BE6D /* DeleteHighlightPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */; };
		273F214F14ADCBF80021BE6D /* DeletePressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212814ADCBF70021BE6D /* DeletePressed.png */; };
		273F215114ADCBF80021BE6D /* EncodeCanceled.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212A14ADCBF80021BE6D /* EncodeCanceled.png */; };
		273F215314ADCBF80021BE6D /* EncodeWorking0.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212C14ADCBF80021BE6D /* EncodeWorking0.png */; };
		273F215414ADCBF80021BE6D /* EncodeWorking1.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212D14ADCBF80021BE6D /* EncodeWorking1.png */; };
		273F215514ADCBF80021BE6D /* EncodeWorking2.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212E14ADCBF80021BE6D /* EncodeWorking2.png */; };
		273F215614ADCBF80021BE6D /* EncodeWorking3.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212F14ADCBF80021BE6D /* EncodeWorking3.png */; };
		273F215714ADCBF80021BE6D /* EncodeWorking4.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213014ADCBF80021BE6D /* EncodeWorking4.png */; };
		273F215814ADCBF80021BE6D /* EncodeWorking5.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213114ADCBF80021BE6D /* EncodeWorking5.png */; };
		273F216114ADCBF80021BE6D /* JobSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213A14ADCBF80021BE6D /* JobSmall.png */; };
		273F216714ADCBF80021BE6D /* Reveal.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214014ADCBF80021BE6D /* Reveal.png */; };
		273F216814ADCBF80021BE6D /* RevealHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214114ADCBF80021BE6D /* RevealHighlight.png */; };
		273F216914ADCBF80021BE6D /* RevealHighlightPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */; };
		273F216A14ADCBF80021BE6D /* RevealPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214314ADCBF80021BE6D /* RevealPressed.png */; };
		273F218A14ADDDA10021BE6D /* AdvancedView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F217A14ADDDA10021BE6D /* AdvancedView.xib */; };
		273F218B14ADDDA10021BE6D /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 273F217C14ADDDA10021BE6D /* InfoPlist.strings */; };
		273F218C14ADDDA10021BE6D /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F217E14ADDDA10021BE6D /* MainMenu.xib */; };
		273F218D14ADDDA10021BE6D /* OutputPanel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F218014ADDDA10021BE6D /* OutputPanel.xib */; };
		273F218E14ADDDA10021BE6D /* PicturePreview.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F218214ADDDA10021BE6D /* PicturePreview.xib */; };
		273F218F14ADDDA10021BE6D /* PictureSettings.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F218414ADDDA10021BE6D /* PictureSettings.xib */; };
		273F219014ADDDA10021BE6D /* Preferences.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F218614ADDDA10021BE6D /* Preferences.xib */; };
		273F219114ADDDA10021BE6D /* Queue.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F218814ADDDA10021BE6D /* Queue.xib */; };
		273F21C114ADE7A20021BE6D /* Growl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F20BF14ADC1250021BE6D /* Growl.framework */; };
		273F21C214ADE7BC0021BE6D /* Sparkle.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F20C014ADC1250021BE6D /* Sparkle.framework */; };
		27D6C72514B1019100B785E4 /* libhandbrake.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72414B1019100B785E4 /* libhandbrake.a */; };
		27D6C72614B1019100B785E4 /* libhandbrake.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72414B1019100B785E4 /* libhandbrake.a */; };
		27D6C74314B102DA00B785E4 /* libass.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72814B102DA00B785E4 /* libass.a */; };
		27D6C74414B102DA00B785E4 /* libass.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72814B102DA00B785E4 /* libass.a */; };
		27D6C74514B102DA00B785E4 /* libavcodec.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72914B102DA00B785E4 /* libavcodec.a */; };
		27D6C74614B102DA00B785E4 /* libavcodec.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72914B102DA00B785E4 /* libavcodec.a */; };
		27D6C74714B102DA00B785E4 /* libavformat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72A14B102DA00B785E4 /* libavformat.a */; };
		27D6C74814B102DA00B785E4 /* libavformat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72A14B102DA00B785E4 /* libavformat.a */; };
		27D6C74914B102DA00B785E4 /* libavutil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72B14B102DA00B785E4 /* libavutil.a */; };
		27D6C74A14B102DA00B785E4 /* libavutil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72B14B102DA00B785E4 /* libavutil.a */; };
		27D6C74B14B102DA00B785E4 /* libbluray.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72C14B102DA00B785E4 /* libbluray.a */; };
		27D6C74C14B102DA00B785E4 /* libbluray.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72C14B102DA00B785E4 /* libbluray.a */; };
		27D6C74F14B102DA00B785E4 /* libdvdnav.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72E14B102DA00B785E4 /* libdvdnav.a */; };
		27D6C75014B102DA00B785E4 /* libdvdnav.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72E14B102DA00B785E4 /* libdvdnav.a */; };
		27D6C75114B102DA00B785E4 /* libdvdread.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72F14B102DA00B785E4 /* libdvdread.a */; };
		27D6C75214B102DA00B785E4 /* libdvdread.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C72F14B102DA00B785E4 /* libdvdread.a */; };
		27D6C75514B102DA00B785E4 /* libfontconfig.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73114B102DA00B785E4 /* libfontconfig.a */; };
		27D6C75614B102DA00B785E4 /* libfontconfig.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73114B102DA00B785E4 /* libfontconfig.a */; };
		27D6C75714B102DA00B785E4 /* libfreetype.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73214B102DA00B785E4 /* libfreetype.a */; };
		27D6C75814B102DA00B785E4 /* libfreetype.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73214B102DA00B785E4 /* libfreetype.a */; };
		27D6C75914B102DA00B785E4 /* libfribidi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73314B102DA00B785E4 /* libfribidi.a */; };
		27D6C75A14B102DA00B785E4 /* libfribidi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73314B102DA00B785E4 /* libfribidi.a */; };
		27D6C75E14B102DA00B785E4 /* libmp3lame.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73614B102DA00B785E4 /* libmp3lame.a */; };
		27D6C75F14B102DA00B785E4 /* libmp3lame.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73614B102DA00B785E4 /* libmp3lame.a */; };
		27D6C76414B102DA00B785E4 /* libogg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73914B102DA00B785E4 /* libogg.a */; };
		27D6C76514B102DA00B785E4 /* libogg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73914B102DA00B785E4 /* libogg.a */; };
		27D6C76614B102DA00B785E4 /* libsamplerate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73A14B102DA00B785E4 /* libsamplerate.a */; };
		27D6C76714B102DA00B785E4 /* libsamplerate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73A14B102DA00B785E4 /* libsamplerate.a */; };
		27D6C76814B102DA00B785E4 /* libswscale.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73B14B102DA00B785E4 /* libswscale.a */; };
		27D6C76914B102DA00B785E4 /* libswscale.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73B14B102DA00B785E4 /* libswscale.a */; };
		27D6C76A14B102DA00B785E4 /* libtheora.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73C14B102DA00B785E4 /* libtheora.a */; };
		27D6C76B14B102DA00B785E4 /* libtheora.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73C14B102DA00B785E4 /* libtheora.a */; };
		27D6C76C14B102DA00B785E4 /* libvorbis.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73D14B102DA00B785E4 /* libvorbis.a */; };
		27D6C76D14B102DA00B785E4 /* libvorbis.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73D14B102DA00B785E4 /* libvorbis.a */; };
		27D6C76E14B102DA00B785E4 /* libvorbisenc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73E14B102DA00B785E4 /* libvorbisenc.a */; };
		27D6C76F14B102DA00B785E4 /* libvorbisenc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73E14B102DA00B785E4 /* libvorbisenc.a */; };
		27D6C77014B102DA00B785E4 /* libx264.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73F14B102DA00B785E4 /* libx264.a */; };
		27D6C77114B102DA00B785E4 /* libx264.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C73F14B102DA00B785E4 /* libx264.a */; };
		27D6C77214B102DA00B785E4 /* libxml2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C74014B102DA00B785E4 /* libxml2.a */; };
		27D6C77314B102DA00B785E4 /* libxml2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27D6C74014B102DA00B785E4 /* libxml2.a */; };
		3490BCB41614CF8D002A5AD7 /* HandBrake.icns in Resources */ = {isa = PBXBuildFile; fileRef = 3490BCB31614CF8D002A5AD7 /* HandBrake.icns */; };
		46AB433515F98A2B009C0961 /* DockTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 46AB433415F98A2B009C0961 /* DockTextField.m */; };
		A90A0CAF1988D57200DA65CE /* HBAudioTrackPreset.m in Sources */ = {isa = PBXBuildFile; fileRef = A90A0CAE1988D57200DA65CE /* HBAudioTrackPreset.m */; };
		A91017B41A64440A00039BFB /* HBSubtitles.m in Sources */ = {isa = PBXBuildFile; fileRef = A91017B31A64440A00039BFB /* HBSubtitles.m */; };
		A91726E7197291BC00D1AFEF /* HBChapterTitlesController.m in Sources */ = {isa = PBXBuildFile; fileRef = A91726E6197291BC00D1AFEF /* HBChapterTitlesController.m */; };
		A91806711A4807B000FC9BED /* HBRange.m in Sources */ = {isa = PBXBuildFile; fileRef = A91806701A4807B000FC9BED /* HBRange.m */; };
		A91AFD0C1A948827009BECED /* HBOutputFileWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = A91AFD0B1A948827009BECED /* HBOutputFileWriter.m */; };
		A91AFD0F1A949472009BECED /* HBJobOutputFileWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = A91AFD0E1A949472009BECED /* HBJobOutputFileWriter.m */; };
		A91C024D1A16516A00DEA6F3 /* JobSmall@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C024C1A16516A00DEA6F3 /* JobSmall@2x.png */; };
		A91C02521A165EA200DEA6F3 /* EncodeComplete.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02501A165EA200DEA6F3 /* EncodeComplete.png */; };
		A91C02531A165EA200DEA6F3 /* EncodeComplete@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02511A165EA200DEA6F3 /* EncodeComplete@2x.png */; };
		A91C025A1A166BE300DEA6F3 /* EncodeWorking0@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02541A166BE300DEA6F3 /* EncodeWorking0@2x.png */; };
		A91C025B1A166BE300DEA6F3 /* EncodeWorking1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02551A166BE300DEA6F3 /* EncodeWorking1@2x.png */; };
		A91C025C1A166BE300DEA6F3 /* EncodeWorking2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02561A166BE300DEA6F3 /* EncodeWorking2@2x.png */; };
		A91C025D1A166BE300DEA6F3 /* EncodeWorking3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02571A166BE300DEA6F3 /* EncodeWorking3@2x.png */; };
		A91C025E1A166BE300DEA6F3 /* EncodeWorking4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02581A166BE300DEA6F3 /* EncodeWorking4@2x.png */; };
		A91C025F1A166BE300DEA6F3 /* EncodeWorking5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A91C02591A166BE300DEA6F3 /* EncodeWorking5@2x.png */; };
		A9204DC51A16C5AB007CA74C /* Delete@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9204DC21A16C5AB007CA74C /* Delete@2x.png */; };
		A9204DC61A16C5AB007CA74C /* DeleteHighlightPressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9204DC31A16C5AB007CA74C /* DeleteHighlightPressed@2x.png */; };
		A9204DC71A16C5AB007CA74C /* DeletePressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9204DC41A16C5AB007CA74C /* DeletePressed@2x.png */; };
		A92268781A6E555500A8D5C5 /* HBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A92268771A6E555500A8D5C5 /* HBAppDelegate.m */; };
		A922687B1A6E569B00A8D5C5 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = A92268791A6E569B00A8D5C5 /* MainWindow.xib */; };
		A9252C041A17343500B8B7F8 /* DeleteHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9252C031A17343500B8B7F8 /* DeleteHighlight@2x.png */; };
		A9252C091A173D4800B8B7F8 /* Reveal@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9252C051A173D4800B8B7F8 /* Reveal@2x.png */; };
		A9252C0A1A173D4800B8B7F8 /* RevealHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9252C061A173D4800B8B7F8 /* RevealHighlight@2x.png */; };
		A9252C0B1A173D4800B8B7F8 /* RevealHighlightPressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9252C071A173D4800B8B7F8 /* RevealHighlightPressed@2x.png */; };
		A9252C0C1A173D4800B8B7F8 /* RevealPressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A9252C081A173D4800B8B7F8 /* RevealPressed@2x.png */; };
		A932E26C1988334B0047D13E /* AudioDefaults.xib in Resources */ = {isa = PBXBuildFile; fileRef = A932E26A1988334B0047D13E /* AudioDefaults.xib */; };
		A932E26F198833920047D13E /* HBAudioDefaultsController.m in Sources */ = {isa = PBXBuildFile; fileRef = A932E26E198833920047D13E /* HBAudioDefaultsController.m */; };
		A932E273198834130047D13E /* HBAudioDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = A932E272198834130047D13E /* HBAudioDefaults.m */; };
		A93E0ED31972957000FD67FB /* HBVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = A93E0ED11972957000FD67FB /* HBVideoController.m */; };
		A93E0ED71972958C00FD67FB /* Video.xib in Resources */ = {isa = PBXBuildFile; fileRef = A93E0ED51972958C00FD67FB /* Video.xib */; };
		A93FD4751A62ABE800A6AC43 /* HBAudio.m in Sources */ = {isa = PBXBuildFile; fileRef = A93FD4741A62ABE800A6AC43 /* HBAudio.m */; };
		A9523937199A6AAE00588AEF /* HBFilters.m in Sources */ = {isa = PBXBuildFile; fileRef = A9523936199A6AAE00588AEF /* HBFilters.m */; };
		A9537BF01A48A85C00141102 /* HBJob+UIAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9537BEF1A48A85C00141102 /* HBJob+UIAdditions.m */; };
		A9537BF31A48A99500141102 /* HBVideo+UIAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9537BF21A48A99500141102 /* HBVideo+UIAdditions.m */; };
		A9537BF61A48AB6300141102 /* HBPicture+UIAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9537BF51A48AB6300141102 /* HBPicture+UIAdditions.m */; };
		A9537BF91A48AC9000141102 /* HBFilters+UIAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9537BF81A48AC9000141102 /* HBFilters+UIAdditions.m */; };
		A955128A1A320A6F001BFC6F /* libjansson.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A95512881A320A12001BFC6F /* libjansson.a */; };
		A955128B1A320B02001BFC6F /* libjansson.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A95512881A320A12001BFC6F /* libjansson.a */; };
		A9597A2A1A49749D00007771 /* HBRange+UIAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9597A291A49749D00007771 /* HBRange+UIAdditions.m */; };
		A967E4BA1A16768200DF1DFC /* EncodeCanceled@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A967E4B91A16768200DF1DFC /* EncodeCanceled@2x.png */; };
		A971281F1A2C75180088C076 /* HBTitle.m in Sources */ = {isa = PBXBuildFile; fileRef = A971281E1A2C75180088C076 /* HBTitle.m */; };
		A983494F1A9A64B80059CB94 /* presets.plist in Resources */ = {isa = PBXBuildFile; fileRef = A983494E1A9A64B80059CB94 /* presets.plist */; };
		A98C29C41977B10600AF5DED /* HBLanguagesSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = A98C29C31977B10600AF5DED /* HBLanguagesSelection.m */; };
		A9906B2C1A710920001D82D5 /* HBQueueController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9906B2B1A710920001D82D5 /* HBQueueController.m */; };
		A990D9071A64562200139032 /* HBJob+HBJobConversion.m in Sources */ = {isa = PBXBuildFile; fileRef = A990D9061A64562200139032 /* HBJob+HBJobConversion.m */; };
		A9935213196F38A70069C6B7 /* ChaptersTitles.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9935211196F38A70069C6B7 /* ChaptersTitles.xib */; };
		A9AA447A1970664A00D7DEFC /* HBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A9AA44791970664A00D7DEFC /* HBUtilities.m */; };
		A9BB0F2719A0ECE40079F1C1 /* HBHUDButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BB0F2619A0ECE40079F1C1 /* HBHUDButtonCell.m */; };
		A9BC24C91A69293E007DC41A /* HBAttributedStringAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BC24C81A69293E007DC41A /* HBAttributedStringAdditions.m */; };
		A9C0DB85197E7B0000DF55B3 /* SubtitlesDefaults.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9C0DB83197E7B0000DF55B3 /* SubtitlesDefaults.xib */; };
		A9C183961A716B8F00C897C2 /* HBTitleSelectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9C183941A716B8F00C897C2 /* HBTitleSelectionController.m */; };
		A9C1839D1A716BCC00C897C2 /* HBTitleSelection.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9C1839B1A716BCC00C897C2 /* HBTitleSelection.xib */; };
		A9C9F88919A733FE00DC8923 /* HBHUDView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9C9F88819A733FE00DC8923 /* HBHUDView.m */; };
		A9CF25F11990D62C0023F727 /* Presets.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9CF25EF1990D62C0023F727 /* Presets.xib */; };
		A9CF25F41990D64E0023F727 /* HBPreset.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CF25F31990D64E0023F727 /* HBPreset.m */; };
		A9CF25F71990D6820023F727 /* HBPresetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CF25F61990D6820023F727 /* HBPresetsViewController.m */; };
		A9D1E41718262364002F6424 /* HBPreviewGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D1E41618262364002F6424 /* HBPreviewGenerator.m */; };
		A9D488A51996270300E9B1BA /* HBTreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D488A41996270300E9B1BA /* HBTreeNode.m */; };
		A9DC6C52196F04F6002AE6B4 /* HBSubtitlesController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DC6C50196F04F6002AE6B4 /* HBSubtitlesController.m */; };
		A9DC6C56196F0517002AE6B4 /* Subtitles.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9DC6C54196F0517002AE6B4 /* Subtitles.xib */; };
		A9DEC8741A23C87500C79B48 /* HBCore.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DEC8731A23C87500C79B48 /* HBCore.m */; };
		A9DEC8771A23C88D00C79B48 /* HBVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DEC8761A23C88D00C79B48 /* HBVideo.m */; };
		A9DEC87A1A23C89E00C79B48 /* HBPicture.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DEC8791A23C89E00C79B48 /* HBPicture.m */; };
		A9DEC87F1A23DF6F00C79B48 /* HBJob.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DEC87E1A23DF6F00C79B48 /* HBJob.m */; };
		A9E1467B16BC2ABD00C307BC /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A9E1467A16BC2ABD00C307BC /* QuartzCore.framework */; };
		A9E1468016BC2AD800C307BC /* next-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467C16BC2AD800C307BC /* next-p.pdf */; };
		A9E1468116BC2AD800C307BC /* pause-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467D16BC2AD800C307BC /* pause-p.pdf */; };
		A9E1468216BC2AD800C307BC /* play-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467E16BC2AD800C307BC /* play-p.pdf */; };
		A9E1468316BC2AD800C307BC /* prev-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467F16BC2AD800C307BC /* prev-p.pdf */; };
		A9E2FD271A21BC4A000E8D3F /* HBAddPresetController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9E2FD251A21BC4A000E8D3F /* HBAddPresetController.m */; };
		A9E2FD2B1A21BC6F000E8D3F /* AddPreset.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9E2FD291A21BC6F000E8D3F /* AddPreset.xib */; };
		A9E66D701A67A2A8007B641D /* HBDistributedArray.m in Sources */ = {isa = PBXBuildFile; fileRef = A9E66D6F1A67A2A8007B641D /* HBDistributedArray.m */; };
		A9EA43681A2210C400785E95 /* HBQueueOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9EA43671A2210C400785E95 /* HBQueueOutlineView.m */; };
		A9F2EB6F196F12C800066546 /* Audio.xib in Resources */ = {isa = PBXBuildFile; fileRef = A9F2EB6D196F12C800066546 /* Audio.xib */; };
		A9F472891976B7F30009EC65 /* HBSubtitlesDefaultsController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9F472871976B7F30009EC65 /* HBSubtitlesDefaultsController.m */; };
		A9F4728D1976BAA70009EC65 /* HBSubtitlesDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = A9F4728C1976BAA70009EC65 /* HBSubtitlesDefaults.m */; };
		A9F7102619A475EC00F61301 /* HBDockTile.m in Sources */ = {isa = PBXBuildFile; fileRef = A9F7102519A475EC00F61301 /* HBDockTile.m */; };
		D2BCB10916F5152C0084604C /* activity.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F616F515230084604C /* activity.png */; };
		D2BCB10A16F5152C0084604C /* activity@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F716F515230084604C /* activity@2x.png */; };
		D2BCB10B16F5152C0084604C /* addqueue.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F816F515240084604C /* addqueue.png */; };
		D2BCB10C16F5152C0084604C /* addqueue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F916F515240084604C /* addqueue@2x.png */; };
		D2BCB10D16F5152C0084604C /* advanced.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FA16F515250084604C /* advanced.png */; };
		D2BCB10E16F5152C0084604C /* advanced@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FB16F515250084604C /* advanced@2x.png */; };
		D2BCB10F16F5152C0084604C /* audio.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FC16F515260084604C /* audio.png */; };
		D2BCB11016F5152C0084604C /* audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FD16F515260084604C /* audio@2x.png */; };
		D2BCB11116F5152C0084604C /* encode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FE16F515270084604C /* encode.png */; };
		D2BCB11216F5152C0084604C /* encode@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FF16F515270084604C /* encode@2x.png */; };
		D2BCB11316F5152C0084604C /* pauseencode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10016F515280084604C /* pauseencode.png */; };
		D2BCB11416F5152C0084604C /* pauseencode@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10116F515280084604C /* pauseencode@2x.png */; };
		D2BCB11516F5152C0084604C /* picturesettings.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10216F515290084604C /* picturesettings.png */; };
		D2BCB11616F5152C0084604C /* picturesettings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10316F515290084604C /* picturesettings@2x.png */; };
		D2BCB11716F5152C0084604C /* presets.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10416F5152A0084604C /* presets.png */; };
		D2BCB11816F5152C0084604C /* presets@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10516F5152A0084604C /* presets@2x.png */; };
		D2BCB11916F5152C0084604C /* preview.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10616F5152B0084604C /* preview.png */; };
		D2BCB11A16F5152C0084604C /* preview@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10716F5152B0084604C /* preview@2x.png */; };
		D2BCB11B16F5152C0084604C /* settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10816F5152C0084604C /* settings@2x.png */; };
		D2BCB12316F5154E0084604C /* settings.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11C16F5154A0084604C /* settings.png */; };
		D2BCB12416F5154E0084604C /* showqueue.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11D16F5154B0084604C /* showqueue.png */; };
		D2BCB12516F5154E0084604C /* showqueue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11E16F5154B0084604C /* showqueue@2x.png */; };
		D2BCB12616F5154E0084604C /* source.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11F16F5154C0084604C /* source.png */; };
		D2BCB12716F5154E0084604C /* source@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12016F5154C0084604C /* source@2x.png */; };
		D2BCB12816F5154E0084604C /* stopencode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12116F5154D0084604C /* stopencode.png */; };
		D2BCB12916F5154E0084604C /* stopencode@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12216F5154D0084604C /* stopencode@2x.png */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		273F217614ADD2580021BE6D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 273F1FE014AD9DA40021BE6D /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 273F216E14ADD2170021BE6D;
			remoteInfo = external;
		};
		2781697014B02B1B00A28B61 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 273F1FE014AD9DA40021BE6D /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 273F216E14ADD2170021BE6D;
			remoteInfo = external;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		273F1FFD14ADAE950021BE6D /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		273F20CA14ADC86C0021BE6D /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				273F20CB14ADC89A0021BE6D /* Growl.framework in CopyFiles */,
				273F20CC14ADC8A10021BE6D /* Sparkle.framework in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		226268DF1572CC7300477B4E /* libavresample.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavresample.a; path = external/contrib/lib/libavresample.a; sourceTree = BUILT_PRODUCTS_DIR; };
		22CC9E74191EBEA500C69D81 /* libx265.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libx265.a; path = external/contrib/lib/libx265.a; sourceTree = BUILT_PRODUCTS_DIR; };
		22DD2C49177B94DB00EF50D3 /* libvpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libvpx.a; path = external/contrib/lib/libvpx.a; sourceTree = BUILT_PRODUCTS_DIR; };
		271BA4C014B119F800BC1D2C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = external/macosx/Info.plist; sourceTree = BUILT_PRODUCTS_DIR; };
		271E74EF182F260C0077C311 /* osx109.i386.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = osx109.i386.xcconfig; sourceTree = "<group>"; };
		271E74F0182F260C0077C311 /* osx109.x86_64.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = osx109.x86_64.xcconfig; sourceTree = "<group>"; };
		273F1FFF14ADAE950021BE6D /* HandBrakeCLI */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = HandBrakeCLI; sourceTree = BUILT_PRODUCTS_DIR; };
		273F202214ADB8650021BE6D /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
		273F202514ADB8A40021BE6D /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
		273F202714ADB8BE0021BE6D /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
		273F202914ADB8D60021BE6D /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
		273F202F14ADB9790021BE6D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
		273F203214ADB9F00021BE6D /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; };
		273F203914ADBC210021BE6D /* HandBrake.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HandBrake.app; sourceTree = BUILT_PRODUCTS_DIR; };
		273F203B14ADBC210021BE6D /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
		273F203E14ADBC210021BE6D /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
		273F203F14ADBC210021BE6D /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
		273F204014ADBC210021BE6D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		273F208514ADBE3B0021BE6D /* fakexcode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fakexcode.cpp; sourceTree = "<group>"; };
		273F208614ADBE3B0021BE6D /* parsecsv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parsecsv.c; sourceTree = "<group>"; };
		273F208714ADBE3B0021BE6D /* parsecsv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parsecsv.h; sourceTree = "<group>"; };
		273F208814ADBE3B0021BE6D /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = test.c; sourceTree = "<group>"; };
		273F208E14ADBE670021BE6D /* HBController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBController.h; sourceTree = "<group>"; };
		273F208F14ADBE670021BE6D /* HBController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBController.m; sourceTree = "<group>"; };
		273F209014ADBE670021BE6D /* HBAdvancedController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAdvancedController.m; sourceTree = "<group>"; };
		273F209114ADBE670021BE6D /* HBAudioTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudioTrack.h; sourceTree = "<group>"; };
		273F209214ADBE670021BE6D /* HBAudioTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudioTrack.m; sourceTree = "<group>"; };
		273F209314ADBE670021BE6D /* HBAudioController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudioController.h; sourceTree = "<group>"; };
		273F209414ADBE670021BE6D /* HBAudioController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudioController.m; sourceTree = "<group>"; };
		273F209714ADBE670021BE6D /* HBDVDDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBDVDDetector.h; sourceTree = "<group>"; };
		273F209814ADBE670021BE6D /* HBDVDDetector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBDVDDetector.m; sourceTree = "<group>"; };
		273F209914ADBE670021BE6D /* HBImageAndTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBImageAndTextCell.h; sourceTree = "<group>"; };
		273F209A14ADBE670021BE6D /* HBImageAndTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBImageAndTextCell.m; sourceTree = "<group>"; };
		273F209B14ADBE670021BE6D /* HBOutputPanelController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBOutputPanelController.h; sourceTree = "<group>"; };
		273F209C14ADBE670021BE6D /* HBOutputPanelController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBOutputPanelController.m; sourceTree = "<group>"; };
		273F209D14ADBE670021BE6D /* HBOutputRedirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBOutputRedirect.h; sourceTree = "<group>"; };
		273F209E14ADBE670021BE6D /* HBOutputRedirect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBOutputRedirect.m; sourceTree = "<group>"; };
		273F209F14ADBE670021BE6D /* HBPreferencesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPreferencesController.h; sourceTree = "<group>"; };
		273F20A014ADBE670021BE6D /* HBPreferencesController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPreferencesController.m; sourceTree = "<group>"; };
		273F20A114ADBE670021BE6D /* HBPresetsManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPresetsManager.h; sourceTree = "<group>"; };
		273F20A214ADBE670021BE6D /* HBPresetsManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPresetsManager.m; sourceTree = "<group>"; };
		273F20A314ADBE670021BE6D /* HBPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPreviewController.h; sourceTree = "<group>"; };
		273F20A414ADBE670021BE6D /* HBPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPreviewController.m; sourceTree = "<group>"; };
		273F20A914ADBE670021BE6D /* HBPictureController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPictureController.h; sourceTree = "<group>"; };
		273F20AA14ADBE670021BE6D /* HBPictureController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPictureController.m; sourceTree = "<group>"; };
		273F20BD14ADC09F0021BE6D /* main.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = "<group>"; };
		273F20BF14ADC1250021BE6D /* Growl.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Growl.framework; sourceTree = "<group>"; };
		273F20C014ADC1250021BE6D /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = "<group>"; };
		273F20C714ADC4FF0021BE6D /* QTKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
		273F212514ADCBF70021BE6D /* Delete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Delete.png; sourceTree = "<group>"; };
		273F212614ADCBF70021BE6D /* DeleteHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteHighlight.png; sourceTree = "<group>"; };
		273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteHighlightPressed.png; sourceTree = "<group>"; };
		273F212814ADCBF70021BE6D /* DeletePressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeletePressed.png; sourceTree = "<group>"; };
		273F212A14ADCBF80021BE6D /* EncodeCanceled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeCanceled.png; sourceTree = "<group>"; };
		273F212C14ADCBF80021BE6D /* EncodeWorking0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking0.png; sourceTree = "<group>"; };
		273F212D14ADCBF80021BE6D /* EncodeWorking1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking1.png; sourceTree = "<group>"; };
		273F212E14ADCBF80021BE6D /* EncodeWorking2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking2.png; sourceTree = "<group>"; };
		273F212F14ADCBF80021BE6D /* EncodeWorking3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking3.png; sourceTree = "<group>"; };
		273F213014ADCBF80021BE6D /* EncodeWorking4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking4.png; sourceTree = "<group>"; };
		273F213114ADCBF80021BE6D /* EncodeWorking5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking5.png; sourceTree = "<group>"; };
		273F213A14ADCBF80021BE6D /* JobSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobSmall.png; sourceTree = "<group>"; };
		273F214014ADCBF80021BE6D /* Reveal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Reveal.png; sourceTree = "<group>"; };
		273F214114ADCBF80021BE6D /* RevealHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealHighlight.png; sourceTree = "<group>"; };
		273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealHighlightPressed.png; sourceTree = "<group>"; };
		273F214314ADCBF80021BE6D /* RevealPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealPressed.png; sourceTree = "<group>"; };
		273F217B14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = AdvancedView.xib; sourceTree = "<group>"; };
		273F217D14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = InfoPlist.strings; sourceTree = "<group>"; };
		273F217F14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = MainMenu.xib; sourceTree = "<group>"; };
		273F218114ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = OutputPanel.xib; sourceTree = "<group>"; };
		273F218314ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = PicturePreview.xib; sourceTree = "<group>"; };
		273F218514ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = PictureSettings.xib; sourceTree = "<group>"; };
		273F218714ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Preferences.xib; sourceTree = "<group>"; };
		273F218914ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Queue.xib; sourceTree = "<group>"; };
		275916DA14B2AB27007211E9 /* native.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = native.xcconfig; sourceTree = "<group>"; };
		276941FA14B161B70027798C /* osx107.i386.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = osx107.i386.xcconfig; sourceTree = "<group>"; };
		277A3FD014AE84C500A835E4 /* osx106.i386.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx106.i386.xcconfig; sourceTree = "<group>"; };
		277A3FD114AE84C500A835E4 /* osx106.x86_64.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx106.x86_64.xcconfig; sourceTree = "<group>"; };
		277A3FD214AE84C500A835E4 /* osx107.x86_64.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx107.x86_64.xcconfig; sourceTree = "<group>"; };
		277EFE8917ED4F5D001D4A6A /* osx108.i386.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx108.i386.xcconfig; sourceTree = "<group>"; };
		277EFE8B17ED4F63001D4A6A /* osx108.x86_64.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx108.x86_64.xcconfig; sourceTree = "<group>"; };
		277EFE8D17ED5628001D4A6A /* supplemental.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = supplemental.xcconfig; sourceTree = "<group>"; };
		277EFE9217ED799E001D4A6A /* libfdk-aac.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libfdk-aac.a"; path = "external/contrib/lib/libfdk-aac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72414B1019100B785E4 /* libhandbrake.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libhandbrake.a; path = external/libhb/libhandbrake.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72814B102DA00B785E4 /* libass.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libass.a; path = external/contrib/lib/libass.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72914B102DA00B785E4 /* libavcodec.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavcodec.a; path = external/contrib/lib/libavcodec.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72A14B102DA00B785E4 /* libavformat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavformat.a; path = external/contrib/lib/libavformat.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72B14B102DA00B785E4 /* libavutil.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavutil.a; path = external/contrib/lib/libavutil.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72C14B102DA00B785E4 /* libbluray.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libbluray.a; path = external/contrib/lib/libbluray.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72E14B102DA00B785E4 /* libdvdnav.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdvdnav.a; path = external/contrib/lib/libdvdnav.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C72F14B102DA00B785E4 /* libdvdread.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdvdread.a; path = external/contrib/lib/libdvdread.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73114B102DA00B785E4 /* libfontconfig.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfontconfig.a; path = external/contrib/lib/libfontconfig.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73214B102DA00B785E4 /* libfreetype.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfreetype.a; path = external/contrib/lib/libfreetype.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73314B102DA00B785E4 /* libfribidi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfribidi.a; path = external/contrib/lib/libfribidi.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73614B102DA00B785E4 /* libmp3lame.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmp3lame.a; path = external/contrib/lib/libmp3lame.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73914B102DA00B785E4 /* libogg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libogg.a; path = external/contrib/lib/libogg.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73A14B102DA00B785E4 /* libsamplerate.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libsamplerate.a; path = external/contrib/lib/libsamplerate.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73B14B102DA00B785E4 /* libswscale.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libswscale.a; path = external/contrib/lib/libswscale.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73C14B102DA00B785E4 /* libtheora.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libtheora.a; path = external/contrib/lib/libtheora.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73D14B102DA00B785E4 /* libvorbis.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libvorbis.a; path = external/contrib/lib/libvorbis.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73E14B102DA00B785E4 /* libvorbisenc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libvorbisenc.a; path = external/contrib/lib/libvorbisenc.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C73F14B102DA00B785E4 /* libx264.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libx264.a; path = external/contrib/lib/libx264.a; sourceTree = BUILT_PRODUCTS_DIR; };
		27D6C74014B102DA00B785E4 /* libxml2.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libxml2.a; path = external/contrib/lib/libxml2.a; sourceTree = BUILT_PRODUCTS_DIR; };
		3490BCB31614CF8D002A5AD7 /* HandBrake.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = HandBrake.icns; sourceTree = "<group>"; };
		46AB433315F98A2B009C0961 /* DockTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DockTextField.h; sourceTree = "<group>"; };
		46AB433415F98A2B009C0961 /* DockTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DockTextField.m; sourceTree = "<group>"; };
		A90A0CAD1988D57200DA65CE /* HBAudioTrackPreset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudioTrackPreset.h; sourceTree = "<group>"; };
		A90A0CAE1988D57200DA65CE /* HBAudioTrackPreset.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudioTrackPreset.m; sourceTree = "<group>"; };
		A91017B21A64440A00039BFB /* HBSubtitles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBSubtitles.h; sourceTree = "<group>"; };
		A91017B31A64440A00039BFB /* HBSubtitles.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBSubtitles.m; sourceTree = "<group>"; };
		A91726E5197291BC00D1AFEF /* HBChapterTitlesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBChapterTitlesController.h; sourceTree = "<group>"; };
		A91726E6197291BC00D1AFEF /* HBChapterTitlesController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBChapterTitlesController.m; sourceTree = "<group>"; };
		A918066F1A4807B000FC9BED /* HBRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBRange.h; sourceTree = "<group>"; };
		A91806701A4807B000FC9BED /* HBRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBRange.m; sourceTree = "<group>"; };
		A91AFD0A1A948827009BECED /* HBOutputFileWriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBOutputFileWriter.h; sourceTree = "<group>"; };
		A91AFD0B1A948827009BECED /* HBOutputFileWriter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBOutputFileWriter.m; sourceTree = "<group>"; };
		A91AFD0D1A949472009BECED /* HBJobOutputFileWriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBJobOutputFileWriter.h; sourceTree = "<group>"; };
		A91AFD0E1A949472009BECED /* HBJobOutputFileWriter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBJobOutputFileWriter.m; sourceTree = "<group>"; };
		A91C024C1A16516A00DEA6F3 /* JobSmall@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "JobSmall@2x.png"; sourceTree = "<group>"; };
		A91C02501A165EA200DEA6F3 /* EncodeComplete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeComplete.png; sourceTree = "<group>"; };
		A91C02511A165EA200DEA6F3 /* EncodeComplete@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeComplete@2x.png"; sourceTree = "<group>"; };
		A91C02541A166BE300DEA6F3 /* EncodeWorking0@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking0@2x.png"; sourceTree = "<group>"; };
		A91C02551A166BE300DEA6F3 /* EncodeWorking1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking1@2x.png"; sourceTree = "<group>"; };
		A91C02561A166BE300DEA6F3 /* EncodeWorking2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking2@2x.png"; sourceTree = "<group>"; };
		A91C02571A166BE300DEA6F3 /* EncodeWorking3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking3@2x.png"; sourceTree = "<group>"; };
		A91C02581A166BE300DEA6F3 /* EncodeWorking4@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking4@2x.png"; sourceTree = "<group>"; };
		A91C02591A166BE300DEA6F3 /* EncodeWorking5@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeWorking5@2x.png"; sourceTree = "<group>"; };
		A9204DC21A16C5AB007CA74C /* Delete@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Delete@2x.png"; sourceTree = "<group>"; };
		A9204DC31A16C5AB007CA74C /* DeleteHighlightPressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteHighlightPressed@2x.png"; sourceTree = "<group>"; };
		A9204DC41A16C5AB007CA74C /* DeletePressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeletePressed@2x.png"; sourceTree = "<group>"; };
		A92268761A6E555500A8D5C5 /* HBAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAppDelegate.h; sourceTree = "<group>"; };
		A92268771A6E555500A8D5C5 /* HBAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAppDelegate.m; sourceTree = "<group>"; };
		A922687A1A6E569B00A8D5C5 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = MainWindow.xib; sourceTree = "<group>"; };
		A9252C031A17343500B8B7F8 /* DeleteHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteHighlight@2x.png"; sourceTree = "<group>"; };
		A9252C051A173D4800B8B7F8 /* Reveal@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reveal@2x.png"; sourceTree = "<group>"; };
		A9252C061A173D4800B8B7F8 /* RevealHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "RevealHighlight@2x.png"; sourceTree = "<group>"; };
		A9252C071A173D4800B8B7F8 /* RevealHighlightPressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "RevealHighlightPressed@2x.png"; sourceTree = "<group>"; };
		A9252C081A173D4800B8B7F8 /* RevealPressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "RevealPressed@2x.png"; sourceTree = "<group>"; };
		A932E26B1988334B0047D13E /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = AudioDefaults.xib; sourceTree = "<group>"; };
		A932E26D198833920047D13E /* HBAudioDefaultsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudioDefaultsController.h; sourceTree = "<group>"; };
		A932E26E198833920047D13E /* HBAudioDefaultsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudioDefaultsController.m; sourceTree = "<group>"; };
		A932E271198834130047D13E /* HBAudioDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudioDefaults.h; sourceTree = "<group>"; };
		A932E272198834130047D13E /* HBAudioDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudioDefaults.m; sourceTree = "<group>"; };
		A93E0ED01972957000FD67FB /* HBVideoController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBVideoController.h; sourceTree = "<group>"; };
		A93E0ED11972957000FD67FB /* HBVideoController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBVideoController.m; sourceTree = "<group>"; };
		A93E0ED61972958C00FD67FB /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Video.xib; sourceTree = "<group>"; };
		A93FD4731A62ABE800A6AC43 /* HBAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAudio.h; sourceTree = "<group>"; };
		A93FD4741A62ABE800A6AC43 /* HBAudio.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAudio.m; sourceTree = "<group>"; };
		A9523935199A6AAE00588AEF /* HBFilters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBFilters.h; sourceTree = "<group>"; };
		A9523936199A6AAE00588AEF /* HBFilters.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBFilters.m; sourceTree = "<group>"; };
		A9537BEE1A48A85C00141102 /* HBJob+UIAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBJob+UIAdditions.h"; sourceTree = "<group>"; };
		A9537BEF1A48A85C00141102 /* HBJob+UIAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBJob+UIAdditions.m"; sourceTree = "<group>"; };
		A9537BF11A48A99500141102 /* HBVideo+UIAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBVideo+UIAdditions.h"; sourceTree = "<group>"; };
		A9537BF21A48A99500141102 /* HBVideo+UIAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBVideo+UIAdditions.m"; sourceTree = "<group>"; };
		A9537BF41A48AB6300141102 /* HBPicture+UIAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBPicture+UIAdditions.h"; sourceTree = "<group>"; };
		A9537BF51A48AB6300141102 /* HBPicture+UIAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBPicture+UIAdditions.m"; sourceTree = "<group>"; };
		A9537BF71A48AC9000141102 /* HBFilters+UIAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBFilters+UIAdditions.h"; sourceTree = "<group>"; };
		A9537BF81A48AC9000141102 /* HBFilters+UIAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBFilters+UIAdditions.m"; sourceTree = "<group>"; };
		A95512881A320A12001BFC6F /* libjansson.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libjansson.a; path = external/contrib/lib/libjansson.a; sourceTree = BUILT_PRODUCTS_DIR; };
		A9597A281A49749D00007771 /* HBRange+UIAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBRange+UIAdditions.h"; sourceTree = "<group>"; };
		A9597A291A49749D00007771 /* HBRange+UIAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBRange+UIAdditions.m"; sourceTree = "<group>"; };
		A967E4B91A16768200DF1DFC /* EncodeCanceled@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "EncodeCanceled@2x.png"; sourceTree = "<group>"; };
		A971281D1A2C75180088C076 /* HBTitle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBTitle.h; sourceTree = "<group>"; };
		A971281E1A2C75180088C076 /* HBTitle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBTitle.m; sourceTree = "<group>"; };
		A983494E1A9A64B80059CB94 /* presets.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = presets.plist; sourceTree = "<group>"; };
		A98C29C21977B10600AF5DED /* HBLanguagesSelection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBLanguagesSelection.h; sourceTree = "<group>"; };
		A98C29C31977B10600AF5DED /* HBLanguagesSelection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBLanguagesSelection.m; sourceTree = "<group>"; };
		A9906B2B1A710920001D82D5 /* HBQueueController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBQueueController.m; sourceTree = "<group>"; };
		A990D9051A64562200139032 /* HBJob+HBJobConversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HBJob+HBJobConversion.h"; sourceTree = "<group>"; };
		A990D9061A64562200139032 /* HBJob+HBJobConversion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HBJob+HBJobConversion.m"; sourceTree = "<group>"; };
		A9935212196F38A70069C6B7 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = ChaptersTitles.xib; sourceTree = "<group>"; };
		A997D8EB1A4ABB0900E19B6F /* HBPresetCoding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HBPresetCoding.h; sourceTree = "<group>"; };
		A9A2A77F1A4737DD006C219C /* NSCodingMacro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NSCodingMacro.h; sourceTree = "<group>"; };
		A9AA44781970664A00D7DEFC /* HBUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBUtilities.h; sourceTree = "<group>"; };
		A9AA44791970664A00D7DEFC /* HBUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBUtilities.m; sourceTree = "<group>"; };
		A9AA447B1970724D00D7DEFC /* HBAdvancedController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HBAdvancedController.h; sourceTree = "<group>"; };
		A9AA447C1970726500D7DEFC /* HBQueueController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HBQueueController.h; sourceTree = "<group>"; };
		A9AA447D1970729300D7DEFC /* HBPreviewGenerator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HBPreviewGenerator.h; sourceTree = "<group>"; };
		A9B34D74197696FE00871B7D /* DiskArbitration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiskArbitration.framework; path = System/Library/Frameworks/DiskArbitration.framework; sourceTree = SDKROOT; };
		A9BB0F2519A0ECE40079F1C1 /* HBHUDButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBHUDButtonCell.h; sourceTree = "<group>"; };
		A9BB0F2619A0ECE40079F1C1 /* HBHUDButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBHUDButtonCell.m; sourceTree = "<group>"; };
		A9BC24C71A69293E007DC41A /* HBAttributedStringAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAttributedStringAdditions.h; sourceTree = "<group>"; };
		A9BC24C81A69293E007DC41A /* HBAttributedStringAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAttributedStringAdditions.m; sourceTree = "<group>"; };
		A9C0DB84197E7B0000DF55B3 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = SubtitlesDefaults.xib; sourceTree = "<group>"; };
		A9C183931A716B8F00C897C2 /* HBTitleSelectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBTitleSelectionController.h; sourceTree = "<group>"; };
		A9C183941A716B8F00C897C2 /* HBTitleSelectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBTitleSelectionController.m; sourceTree = "<group>"; };
		A9C1839C1A716BCC00C897C2 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = HBTitleSelection.xib; sourceTree = "<group>"; };
		A9C9F88719A733FE00DC8923 /* HBHUDView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBHUDView.h; sourceTree = "<group>"; };
		A9C9F88819A733FE00DC8923 /* HBHUDView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBHUDView.m; sourceTree = "<group>"; };
		A9CF25F01990D62C0023F727 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Presets.xib; sourceTree = "<group>"; };
		A9CF25F21990D64E0023F727 /* HBPreset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPreset.h; sourceTree = "<group>"; };
		A9CF25F31990D64E0023F727 /* HBPreset.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPreset.m; sourceTree = "<group>"; };
		A9CF25F51990D6820023F727 /* HBPresetsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPresetsViewController.h; sourceTree = "<group>"; };
		A9CF25F61990D6820023F727 /* HBPresetsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPresetsViewController.m; sourceTree = "<group>"; };
		A9D1E41618262364002F6424 /* HBPreviewGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPreviewGenerator.m; sourceTree = "<group>"; };
		A9D488A31996270300E9B1BA /* HBTreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBTreeNode.h; sourceTree = "<group>"; };
		A9D488A41996270300E9B1BA /* HBTreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBTreeNode.m; sourceTree = "<group>"; };
		A9DC6C4F196F04F6002AE6B4 /* HBSubtitlesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBSubtitlesController.h; sourceTree = SOURCE_ROOT; };
		A9DC6C50196F04F6002AE6B4 /* HBSubtitlesController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBSubtitlesController.m; sourceTree = SOURCE_ROOT; };
		A9DC6C55196F0517002AE6B4 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Subtitles.xib; sourceTree = "<group>"; };
		A9DEC8721A23C87500C79B48 /* HBCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBCore.h; sourceTree = "<group>"; };
		A9DEC8731A23C87500C79B48 /* HBCore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBCore.m; sourceTree = "<group>"; };
		A9DEC8751A23C88D00C79B48 /* HBVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBVideo.h; sourceTree = "<group>"; };
		A9DEC8761A23C88D00C79B48 /* HBVideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBVideo.m; sourceTree = "<group>"; };
		A9DEC8781A23C89E00C79B48 /* HBPicture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBPicture.h; sourceTree = "<group>"; };
		A9DEC8791A23C89E00C79B48 /* HBPicture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBPicture.m; sourceTree = "<group>"; };
		A9DEC87D1A23DF6F00C79B48 /* HBJob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBJob.h; sourceTree = "<group>"; };
		A9DEC87E1A23DF6F00C79B48 /* HBJob.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBJob.m; sourceTree = "<group>"; };
		A9E1467A16BC2ABD00C307BC /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /System/Library/Frameworks/QuartzCore.framework; sourceTree = "<absolute>"; };
		A9E1467C16BC2AD800C307BC /* next-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "next-p.pdf"; sourceTree = "<group>"; };
		A9E1467D16BC2AD800C307BC /* pause-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "pause-p.pdf"; sourceTree = "<group>"; };
		A9E1467E16BC2AD800C307BC /* play-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "play-p.pdf"; sourceTree = "<group>"; };
		A9E1467F16BC2AD800C307BC /* prev-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "prev-p.pdf"; sourceTree = "<group>"; };
		A9E2FD241A21BC4A000E8D3F /* HBAddPresetController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBAddPresetController.h; sourceTree = "<group>"; };
		A9E2FD251A21BC4A000E8D3F /* HBAddPresetController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBAddPresetController.m; sourceTree = "<group>"; };
		A9E2FD2A1A21BC6F000E8D3F /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = AddPreset.xib; sourceTree = "<group>"; };
		A9E66D6E1A67A2A8007B641D /* HBDistributedArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBDistributedArray.h; sourceTree = "<group>"; };
		A9E66D6F1A67A2A8007B641D /* HBDistributedArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBDistributedArray.m; sourceTree = "<group>"; };
		A9EA43661A2210C400785E95 /* HBQueueOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBQueueOutlineView.h; sourceTree = "<group>"; };
		A9EA43671A2210C400785E95 /* HBQueueOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBQueueOutlineView.m; sourceTree = "<group>"; };
		A9F2EB6E196F12C800066546 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Audio.xib; sourceTree = "<group>"; };
		A9F472861976B7F30009EC65 /* HBSubtitlesDefaultsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBSubtitlesDefaultsController.h; sourceTree = "<group>"; };
		A9F472871976B7F30009EC65 /* HBSubtitlesDefaultsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBSubtitlesDefaultsController.m; sourceTree = "<group>"; };
		A9F4728B1976BAA70009EC65 /* HBSubtitlesDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBSubtitlesDefaults.h; sourceTree = "<group>"; };
		A9F4728C1976BAA70009EC65 /* HBSubtitlesDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBSubtitlesDefaults.m; sourceTree = "<group>"; };
		A9F7102419A475EC00F61301 /* HBDockTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HBDockTile.h; sourceTree = "<group>"; };
		A9F7102519A475EC00F61301 /* HBDockTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HBDockTile.m; sourceTree = "<group>"; };
		D2BCB0F616F515230084604C /* activity.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = activity.png; sourceTree = "<group>"; };
		D2BCB0F716F515230084604C /* activity@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "activity@2x.png"; sourceTree = "<group>"; };
		D2BCB0F816F515240084604C /* addqueue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = addqueue.png; sourceTree = "<group>"; };
		D2BCB0F916F515240084604C /* addqueue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "addqueue@2x.png"; sourceTree = "<group>"; };
		D2BCB0FA16F515250084604C /* advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = advanced.png; sourceTree = "<group>"; };
		D2BCB0FB16F515250084604C /* advanced@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "advanced@2x.png"; sourceTree = "<group>"; };
		D2BCB0FC16F515260084604C /* audio.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audio.png; sourceTree = "<group>"; };
		D2BCB0FD16F515260084604C /* audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audio@2x.png"; sourceTree = "<group>"; };
		D2BCB0FE16F515270084604C /* encode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = encode.png; sourceTree = "<group>"; };
		D2BCB0FF16F515270084604C /* encode@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "encode@2x.png"; sourceTree = "<group>"; };
		D2BCB10016F515280084604C /* pauseencode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseencode.png; sourceTree = "<group>"; };
		D2BCB10116F515280084604C /* pauseencode@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pauseencode@2x.png"; sourceTree = "<group>"; };
		D2BCB10216F515290084604C /* picturesettings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = picturesettings.png; sourceTree = "<group>"; };
		D2BCB10316F515290084604C /* picturesettings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "picturesettings@2x.png"; sourceTree = "<group>"; };
		D2BCB10416F5152A0084604C /* presets.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = presets.png; sourceTree = "<group>"; };
		D2BCB10516F5152A0084604C /* presets@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "presets@2x.png"; sourceTree = "<group>"; };
		D2BCB10616F5152B0084604C /* preview.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = preview.png; sourceTree = "<group>"; };
		D2BCB10716F5152B0084604C /* preview@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "preview@2x.png"; sourceTree = "<group>"; };
		D2BCB10816F5152C0084604C /* settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "settings@2x.png"; sourceTree = "<group>"; };
		D2BCB11C16F5154A0084604C /* settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = settings.png; sourceTree = "<group>"; };
		D2BCB11D16F5154B0084604C /* showqueue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = showqueue.png; sourceTree = "<group>"; };
		D2BCB11E16F5154B0084604C /* showqueue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "showqueue@2x.png"; sourceTree = "<group>"; };
		D2BCB11F16F5154C0084604C /* source.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = source.png; sourceTree = "<group>"; };
		D2BCB12016F5154C0084604C /* source@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "source@2x.png"; sourceTree = "<group>"; };
		D2BCB12116F5154D0084604C /* stopencode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = stopencode.png; sourceTree = "<group>"; };
		D2BCB12216F5154D0084604C /* stopencode@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stopencode@2x.png"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		273F1FFC14ADAE950021BE6D /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				273F203014ADB9790021BE6D /* AudioToolbox.framework in Frameworks */,
				273F203314ADB9F00021BE6D /* CoreServices.framework in Frameworks */,
				273F202314ADB8650021BE6D /* IOKit.framework in Frameworks */,
				273F202814ADB8BE0021BE6D /* libbz2.dylib in Frameworks */,
				273F202A14ADB8D60021BE6D /* libiconv.dylib in Frameworks */,
				273F202614ADB8A40021BE6D /* libz.dylib in Frameworks */,
				27D6C72614B1019100B785E4 /* libhandbrake.a in Frameworks */,
				27D6C74414B102DA00B785E4 /* libass.a in Frameworks */,
				27D6C74614B102DA00B785E4 /* libavcodec.a in Frameworks */,
				27D6C74814B102DA00B785E4 /* libavformat.a in Frameworks */,
				226268E11572CC7300477B4E /* libavresample.a in Frameworks */,
				27D6C74A14B102DA00B785E4 /* libavutil.a in Frameworks */,
				27D6C74C14B102DA00B785E4 /* libbluray.a in Frameworks */,
				27D6C75014B102DA00B785E4 /* libdvdnav.a in Frameworks */,
				27D6C75214B102DA00B785E4 /* libdvdread.a in Frameworks */,
				27D6C75614B102DA00B785E4 /* libfontconfig.a in Frameworks */,
				27D6C75814B102DA00B785E4 /* libfreetype.a in Frameworks */,
				27D6C75A14B102DA00B785E4 /* libfribidi.a in Frameworks */,
				27D6C75F14B102DA00B785E4 /* libmp3lame.a in Frameworks */,
				27D6C76514B102DA00B785E4 /* libogg.a in Frameworks */,
				27D6C76714B102DA00B785E4 /* libsamplerate.a in Frameworks */,
				27D6C76914B102DA00B785E4 /* libswscale.a in Frameworks */,
				27D6C76B14B102DA00B785E4 /* libtheora.a in Frameworks */,
				27D6C76D14B102DA00B785E4 /* libvorbis.a in Frameworks */,
				27D6C76F14B102DA00B785E4 /* libvorbisenc.a in Frameworks */,
				22DD2C4B177B95DA00EF50D3 /* libvpx.a in Frameworks */,
				27D6C77114B102DA00B785E4 /* libx264.a in Frameworks */,
				27D6C77314B102DA00B785E4 /* libxml2.a in Frameworks */,
				A955128B1A320B02001BFC6F /* libjansson.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		273F203614ADBC200021BE6D /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				273F20C914ADC5150021BE6D /* AudioToolbox.framework in Frameworks */,
				273F203C14ADBC210021BE6D /* Cocoa.framework in Frameworks */,
				273F21C114ADE7A20021BE6D /* Growl.framework in Frameworks */,
				273F20C614ADC4F50021BE6D /* IOKit.framework in Frameworks */,
				273F20C814ADC4FF0021BE6D /* QTKit.framework in Frameworks */,
				A9E1467B16BC2ABD00C307BC /* QuartzCore.framework in Frameworks */,
				273F21C214ADE7BC0021BE6D /* Sparkle.framework in Frameworks */,
				273F20C414ADC4B60021BE6D /* libbz2.dylib in Frameworks */,
				273F20C314ADC4AE0021BE6D /* libiconv.dylib in Frameworks */,
				273F20C514ADC4BD0021BE6D /* libz.dylib in Frameworks */,
				27D6C72514B1019100B785E4 /* libhandbrake.a in Frameworks */,
				27D6C74314B102DA00B785E4 /* libass.a in Frameworks */,
				27D6C74514B102DA00B785E4 /* libavcodec.a in Frameworks */,
				27D6C74714B102DA00B785E4 /* libavformat.a in Frameworks */,
				226268E01572CC7300477B4E /* libavresample.a in Frameworks */,
				27D6C74914B102DA00B785E4 /* libavutil.a in Frameworks */,
				27D6C74B14B102DA00B785E4 /* libbluray.a in Frameworks */,
				27D6C74F14B102DA00B785E4 /* libdvdnav.a in Frameworks */,
				27D6C75114B102DA00B785E4 /* libdvdread.a in Frameworks */,
				27D6C75514B102DA00B785E4 /* libfontconfig.a in Frameworks */,
				27D6C75714B102DA00B785E4 /* libfreetype.a in Frameworks */,
				27D6C75914B102DA00B785E4 /* libfribidi.a in Frameworks */,
				27D6C75E14B102DA00B785E4 /* libmp3lame.a in Frameworks */,
				27D6C76414B102DA00B785E4 /* libogg.a in Frameworks */,
				27D6C76614B102DA00B785E4 /* libsamplerate.a in Frameworks */,
				27D6C76814B102DA00B785E4 /* libswscale.a in Frameworks */,
				27D6C76A14B102DA00B785E4 /* libtheora.a in Frameworks */,
				27D6C76C14B102DA00B785E4 /* libvorbis.a in Frameworks */,
				27D6C76E14B102DA00B785E4 /* libvorbisenc.a in Frameworks */,
				22DD2C4A177B94DB00EF50D3 /* libvpx.a in Frameworks */,
				27D6C77014B102DA00B785E4 /* libx264.a in Frameworks */,
				27D6C77214B102DA00B785E4 /* libxml2.a in Frameworks */,
				A955128A1A320A6F001BFC6F /* libjansson.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		271BA4C714B1236D00BC1D2C /* Static Libraries */ = {
			isa = PBXGroup;
			children = (
				27D6C72414B1019100B785E4 /* libhandbrake.a */,
				27D6C72814B102DA00B785E4 /* libass.a */,
				27D6C72914B102DA00B785E4 /* libavcodec.a */,
				27D6C72A14B102DA00B785E4 /* libavformat.a */,
				226268DF1572CC7300477B4E /* libavresample.a */,
				27D6C72B14B102DA00B785E4 /* libavutil.a */,
				27D6C72C14B102DA00B785E4 /* libbluray.a */,
				27D6C72E14B102DA00B785E4 /* libdvdnav.a */,
				27D6C72F14B102DA00B785E4 /* libdvdread.a */,
				27D6C73114B102DA00B785E4 /* libfontconfig.a */,
				27D6C73214B102DA00B785E4 /* libfreetype.a */,
				27D6C73314B102DA00B785E4 /* libfribidi.a */,
				27D6C73614B102DA00B785E4 /* libmp3lame.a */,
				27D6C73914B102DA00B785E4 /* libogg.a */,
				27D6C73A14B102DA00B785E4 /* libsamplerate.a */,
				27D6C73B14B102DA00B785E4 /* libswscale.a */,
				27D6C73C14B102DA00B785E4 /* libtheora.a */,
				27D6C73D14B102DA00B785E4 /* libvorbis.a */,
				27D6C73E14B102DA00B785E4 /* libvorbisenc.a */,
				22DD2C49177B94DB00EF50D3 /* libvpx.a */,
				27D6C73F14B102DA00B785E4 /* libx264.a */,
				27D6C74014B102DA00B785E4 /* libxml2.a */,
				A95512881A320A12001BFC6F /* libjansson.a */,
			);
			name = "Static Libraries";
			sourceTree = "<group>";
		};
		271BA4C914B1238E00BC1D2C /* Support */ = {
			isa = PBXGroup;
			children = (
				271BA4C014B119F800BC1D2C /* Info.plist */,
			);
			name = Support;
			sourceTree = "<group>";
		};
		273F1FDE14AD9DA40021BE6D = {
			isa = PBXGroup;
			children = (
				273F204114ADBC210021BE6D /* HandBrake */,
				273F200214ADAE950021BE6D /* HandBrakeCLI */,
				273F200014ADAE950021BE6D /* Products */,
				27D6C72314B1013400B785E4 /* Products (external) */,
				273F20CD14ADC8E60021BE6D /* Resources */,
				273F219214ADDE440021BE6D /* Resources (unused) */,
				273F203414ADBAC30021BE6D /* Frameworks */,
				273F20CE14ADC9210021BE6D /* Frameworks (bundled) */,
				277A3FCF14AE848400A835E4 /* xcconfig */,
			);
			sourceTree = "<group>";
		};
		273F200014ADAE950021BE6D /* Products */ = {
			isa = PBXGroup;
			children = (
				273F1FFF14ADAE950021BE6D /* HandBrakeCLI */,
				273F203914ADBC210021BE6D /* HandBrake.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		273F200214ADAE950021BE6D /* HandBrakeCLI */ = {
			isa = PBXGroup;
			children = (
				273F208514ADBE3B0021BE6D /* fakexcode.cpp */,
				273F208614ADBE3B0021BE6D /* parsecsv.c */,
				273F208714ADBE3B0021BE6D /* parsecsv.h */,
				273F208814ADBE3B0021BE6D /* test.c */,
			);
			name = HandBrakeCLI;
			path = ../test;
			sourceTree = "<group>";
		};
		273F203414ADBAC30021BE6D /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				A9B34D74197696FE00871B7D /* DiskArbitration.framework */,
				273F202F14ADB9790021BE6D /* AudioToolbox.framework */,
				273F203B14ADBC210021BE6D /* Cocoa.framework */,
				273F203214ADB9F00021BE6D /* CoreServices.framework */,
				273F202214ADB8650021BE6D /* IOKit.framework */,
				273F20C714ADC4FF0021BE6D /* QTKit.framework */,
				A9E1467A16BC2ABD00C307BC /* QuartzCore.framework */,
				273F203D14ADBC210021BE6D /* Other Frameworks */,
				273F202714ADB8BE0021BE6D /* libbz2.dylib */,
				273F202914ADB8D60021BE6D /* libiconv.dylib */,
				273F202514ADB8A40021BE6D /* libz.dylib */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		273F203D14ADBC210021BE6D /* Other Frameworks */ = {
			isa = PBXGroup;
			children = (
				273F203E14ADBC210021BE6D /* AppKit.framework */,
				273F203F14ADBC210021BE6D /* CoreData.framework */,
				273F204014ADBC210021BE6D /* Foundation.framework */,
			);
			name = "Other Frameworks";
			sourceTree = "<group>";
		};
		273F204114ADBC210021BE6D /* HandBrake */ = {
			isa = PBXGroup;
			children = (
				A9B34D6F197683FE00871B7D /* Controllers */,
				A98C29C51977C00000AF5DED /* Core */,
				A952392E199A647F00588AEF /* Presets */,
				A9AA44781970664A00D7DEFC /* HBUtilities.h */,
				A9AA44791970664A00D7DEFC /* HBUtilities.m */,
				A98F00771A972007001C2298 /* Output Redirect */,
				A9E66D6E1A67A2A8007B641D /* HBDistributedArray.h */,
				A9E66D6F1A67A2A8007B641D /* HBDistributedArray.m */,
				A98C29C21977B10600AF5DED /* HBLanguagesSelection.h */,
				A98C29C31977B10600AF5DED /* HBLanguagesSelection.m */,
				A9B34D711976844500871B7D /* UI Views */,
				273F20BD14ADC09F0021BE6D /* main.mm */,
			);
			name = HandBrake;
			sourceTree = "<group>";
		};
		273F20CD14ADC8E60021BE6D /* Resources */ = {
			isa = PBXGroup;
			children = (
				A983494E1A9A64B80059CB94 /* presets.plist */,
				3490BCB31614CF8D002A5AD7 /* HandBrake.icns */,
				273F217914ADDDA10021BE6D /* English.lproj */,
				273F212014ADCBF70021BE6D /* icons */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		273F20CE14ADC9210021BE6D /* Frameworks (bundled) */ = {
			isa = PBXGroup;
			children = (
				273F20BF14ADC1250021BE6D /* Growl.framework */,
				273F20C014ADC1250021BE6D /* Sparkle.framework */,
			);
			name = "Frameworks (bundled)";
			sourceTree = "<group>";
		};
		273F212014ADCBF70021BE6D /* icons */ = {
			isa = PBXGroup;
			children = (
				D2BCB11C16F5154A0084604C /* settings.png */,
				D2BCB11D16F5154B0084604C /* showqueue.png */,
				D2BCB11E16F5154B0084604C /* showqueue@2x.png */,
				D2BCB11F16F5154C0084604C /* source.png */,
				D2BCB12016F5154C0084604C /* source@2x.png */,
				D2BCB12116F5154D0084604C /* stopencode.png */,
				D2BCB12216F5154D0084604C /* stopencode@2x.png */,
				D2BCB0F616F515230084604C /* activity.png */,
				D2BCB0F716F515230084604C /* activity@2x.png */,
				D2BCB0F816F515240084604C /* addqueue.png */,
				D2BCB0F916F515240084604C /* addqueue@2x.png */,
				D2BCB0FA16F515250084604C /* advanced.png */,
				D2BCB0FB16F515250084604C /* advanced@2x.png */,
				D2BCB0FC16F515260084604C /* audio.png */,
				D2BCB0FD16F515260084604C /* audio@2x.png */,
				D2BCB0FE16F515270084604C /* encode.png */,
				D2BCB0FF16F515270084604C /* encode@2x.png */,
				D2BCB10016F515280084604C /* pauseencode.png */,
				D2BCB10116F515280084604C /* pauseencode@2x.png */,
				D2BCB10216F515290084604C /* picturesettings.png */,
				D2BCB10316F515290084604C /* picturesettings@2x.png */,
				D2BCB10416F5152A0084604C /* presets.png */,
				D2BCB10516F5152A0084604C /* presets@2x.png */,
				D2BCB10616F5152B0084604C /* preview.png */,
				D2BCB10716F5152B0084604C /* preview@2x.png */,
				D2BCB10816F5152C0084604C /* settings@2x.png */,
				A9E1467C16BC2AD800C307BC /* next-p.pdf */,
				A9E1467D16BC2AD800C307BC /* pause-p.pdf */,
				A9E1467E16BC2AD800C307BC /* play-p.pdf */,
				A9E1467F16BC2AD800C307BC /* prev-p.pdf */,
				A9204DC21A16C5AB007CA74C /* Delete@2x.png */,
				A9252C031A17343500B8B7F8 /* DeleteHighlight@2x.png */,
				A9204DC31A16C5AB007CA74C /* DeleteHighlightPressed@2x.png */,
				A9204DC41A16C5AB007CA74C /* DeletePressed@2x.png */,
				273F212514ADCBF70021BE6D /* Delete.png */,
				273F212614ADCBF70021BE6D /* DeleteHighlight.png */,
				273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */,
				273F212814ADCBF70021BE6D /* DeletePressed.png */,
				273F212A14ADCBF80021BE6D /* EncodeCanceled.png */,
				A967E4B91A16768200DF1DFC /* EncodeCanceled@2x.png */,
				A91C02501A165EA200DEA6F3 /* EncodeComplete.png */,
				A91C02511A165EA200DEA6F3 /* EncodeComplete@2x.png */,
				273F212C14ADCBF80021BE6D /* EncodeWorking0.png */,
				273F212D14ADCBF80021BE6D /* EncodeWorking1.png */,
				273F212E14ADCBF80021BE6D /* EncodeWorking2.png */,
				273F212F14ADCBF80021BE6D /* EncodeWorking3.png */,
				273F213014ADCBF80021BE6D /* EncodeWorking4.png */,
				273F213114ADCBF80021BE6D /* EncodeWorking5.png */,
				A91C02541A166BE300DEA6F3 /* EncodeWorking0@2x.png */,
				A91C02551A166BE300DEA6F3 /* EncodeWorking1@2x.png */,
				A91C02561A166BE300DEA6F3 /* EncodeWorking2@2x.png */,
				A91C02571A166BE300DEA6F3 /* EncodeWorking3@2x.png */,
				A91C02581A166BE300DEA6F3 /* EncodeWorking4@2x.png */,
				A91C02591A166BE300DEA6F3 /* EncodeWorking5@2x.png */,
				273F213A14ADCBF80021BE6D /* JobSmall.png */,
				A91C024C1A16516A00DEA6F3 /* JobSmall@2x.png */,
				A9252C051A173D4800B8B7F8 /* Reveal@2x.png */,
				A9252C061A173D4800B8B7F8 /* RevealHighlight@2x.png */,
				A9252C071A173D4800B8B7F8 /* RevealHighlightPressed@2x.png */,
				A9252C081A173D4800B8B7F8 /* RevealPressed@2x.png */,
				273F214014ADCBF80021BE6D /* Reveal.png */,
				273F214114ADCBF80021BE6D /* RevealHighlight.png */,
				273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */,
				273F214314ADCBF80021BE6D /* RevealPressed.png */,
			);
			path = icons;
			sourceTree = "<group>";
		};
		273F217914ADDDA10021BE6D /* English.lproj */ = {
			isa = PBXGroup;
			children = (
				273F217C14ADDDA10021BE6D /* InfoPlist.strings */,
				273F217E14ADDDA10021BE6D /* MainMenu.xib */,
				A92268791A6E569B00A8D5C5 /* MainWindow.xib */,
				A9C1839B1A716BCC00C897C2 /* HBTitleSelection.xib */,
				A9CF25EF1990D62C0023F727 /* Presets.xib */,
				A9E2FD291A21BC6F000E8D3F /* AddPreset.xib */,
				A93E0ED51972958C00FD67FB /* Video.xib */,
				A9F2EB6D196F12C800066546 /* Audio.xib */,
				A932E26A1988334B0047D13E /* AudioDefaults.xib */,
				A9DC6C54196F0517002AE6B4 /* Subtitles.xib */,
				A9C0DB83197E7B0000DF55B3 /* SubtitlesDefaults.xib */,
				273F217A14ADDDA10021BE6D /* AdvancedView.xib */,
				A9935211196F38A70069C6B7 /* ChaptersTitles.xib */,
				273F218014ADDDA10021BE6D /* OutputPanel.xib */,
				273F218214ADDDA10021BE6D /* PicturePreview.xib */,
				273F218414ADDDA10021BE6D /* PictureSettings.xib */,
				273F218614ADDDA10021BE6D /* Preferences.xib */,
				273F218814ADDDA10021BE6D /* Queue.xib */,
			);
			path = English.lproj;
			sourceTree = "<group>";
		};
		273F219214ADDE440021BE6D /* Resources (unused) */ = {
			isa = PBXGroup;
			children = (
				273F219314ADDE9A0021BE6D /* icons */,
			);
			name = "Resources (unused)";
			sourceTree = "<group>";
		};
		273F219314ADDE9A0021BE6D /* icons */ = {
			isa = PBXGroup;
			children = (
			);
			path = icons;
			sourceTree = "<group>";
		};
		277A3FCF14AE848400A835E4 /* xcconfig */ = {
			isa = PBXGroup;
			children = (
				275916DA14B2AB27007211E9 /* native.xcconfig */,
				277A3FD014AE84C500A835E4 /* osx106.i386.xcconfig */,
				277A3FD114AE84C500A835E4 /* osx106.x86_64.xcconfig */,
				276941FA14B161B70027798C /* osx107.i386.xcconfig */,
				277A3FD214AE84C500A835E4 /* osx107.x86_64.xcconfig */,
				277EFE8917ED4F5D001D4A6A /* osx108.i386.xcconfig */,
				277EFE8B17ED4F63001D4A6A /* osx108.x86_64.xcconfig */,
				271E74EF182F260C0077C311 /* osx109.i386.xcconfig */,
				271E74F0182F260C0077C311 /* osx109.x86_64.xcconfig */,
				277EFE8D17ED5628001D4A6A /* supplemental.xcconfig */,
			);
			path = xcconfig;
			sourceTree = "<group>";
		};
		277EFE8E17ED71A2001D4A6A /* Static Libraries (optional) */ = {
			isa = PBXGroup;
			children = (
				277EFE9217ED799E001D4A6A /* libfdk-aac.a */,
				22CC9E74191EBEA500C69D81 /* libx265.a */,
			);
			name = "Static Libraries (optional)";
			sourceTree = "<group>";
		};
		27D6C72314B1013400B785E4 /* Products (external) */ = {
			isa = PBXGroup;
			children = (
				271BA4C914B1238E00BC1D2C /* Support */,
				271BA4C714B1236D00BC1D2C /* Static Libraries */,
				277EFE8E17ED71A2001D4A6A /* Static Libraries (optional) */,
			);
			name = "Products (external)";
			sourceTree = "<group>";
		};
		A91017B51A64441700039BFB /* Subtitles */ = {
			isa = PBXGroup;
			children = (
				A91017B21A64440A00039BFB /* HBSubtitles.h */,
				A91017B31A64440A00039BFB /* HBSubtitles.m */,
				A9F4728B1976BAA70009EC65 /* HBSubtitlesDefaults.h */,
				A9F4728C1976BAA70009EC65 /* HBSubtitlesDefaults.m */,
			);
			name = Subtitles;
			sourceTree = "<group>";
		};
		A932E270198833960047D13E /* Audio Defaults */ = {
			isa = PBXGroup;
			children = (
				A932E26D198833920047D13E /* HBAudioDefaultsController.h */,
				A932E26E198833920047D13E /* HBAudioDefaultsController.m */,
			);
			name = "Audio Defaults";
			sourceTree = "<group>";
		};
		A952392E199A647F00588AEF /* Presets */ = {
			isa = PBXGroup;
			children = (
				273F20A114ADBE670021BE6D /* HBPresetsManager.h */,
				273F20A214ADBE670021BE6D /* HBPresetsManager.m */,
				A9CF25F21990D64E0023F727 /* HBPreset.h */,
				A9CF25F31990D64E0023F727 /* HBPreset.m */,
				A9D488A31996270300E9B1BA /* HBTreeNode.h */,
				A9D488A41996270300E9B1BA /* HBTreeNode.m */,
			);
			name = Presets;
			sourceTree = "<group>";
		};
		A9537BED1A48A7F900141102 /* UI Bindings Additions */ = {
			isa = PBXGroup;
			children = (
				A9537BEE1A48A85C00141102 /* HBJob+UIAdditions.h */,
				A9537BEF1A48A85C00141102 /* HBJob+UIAdditions.m */,
				A9597A281A49749D00007771 /* HBRange+UIAdditions.h */,
				A9597A291A49749D00007771 /* HBRange+UIAdditions.m */,
				A9537BF11A48A99500141102 /* HBVideo+UIAdditions.h */,
				A9537BF21A48A99500141102 /* HBVideo+UIAdditions.m */,
				A9537BF41A48AB6300141102 /* HBPicture+UIAdditions.h */,
				A9537BF51A48AB6300141102 /* HBPicture+UIAdditions.m */,
				A9537BF71A48AC9000141102 /* HBFilters+UIAdditions.h */,
				A9537BF81A48AC9000141102 /* HBFilters+UIAdditions.m */,
			);
			name = "UI Bindings Additions";
			sourceTree = "<group>";
		};
		A98C29C51977C00000AF5DED /* Core */ = {
			isa = PBXGroup;
			children = (
				A9DEC8721A23C87500C79B48 /* HBCore.h */,
				A9DEC8731A23C87500C79B48 /* HBCore.m */,
				A971281D1A2C75180088C076 /* HBTitle.h */,
				A971281E1A2C75180088C076 /* HBTitle.m */,
				A9DEC87D1A23DF6F00C79B48 /* HBJob.h */,
				A9DEC87E1A23DF6F00C79B48 /* HBJob.m */,
				A990D9051A64562200139032 /* HBJob+HBJobConversion.h */,
				A990D9061A64562200139032 /* HBJob+HBJobConversion.m */,
				A918066F1A4807B000FC9BED /* HBRange.h */,
				A91806701A4807B000FC9BED /* HBRange.m */,
				A9DEC8751A23C88D00C79B48 /* HBVideo.h */,
				A9DEC8761A23C88D00C79B48 /* HBVideo.m */,
				A9DEC8781A23C89E00C79B48 /* HBPicture.h */,
				A9DEC8791A23C89E00C79B48 /* HBPicture.m */,
				A9523935199A6AAE00588AEF /* HBFilters.h */,
				A9523936199A6AAE00588AEF /* HBFilters.m */,
				A996B0F81A62C51C00B64179 /* Audio */,
				A91017B51A64441700039BFB /* Subtitles */,
				A9537BED1A48A7F900141102 /* UI Bindings Additions */,
				273F209714ADBE670021BE6D /* HBDVDDetector.h */,
				273F209814ADBE670021BE6D /* HBDVDDetector.m */,
				A9A2A77F1A4737DD006C219C /* NSCodingMacro.h */,
				A997D8EB1A4ABB0900E19B6F /* HBPresetCoding.h */,
			);
			name = Core;
			sourceTree = "<group>";
		};
		A98F00771A972007001C2298 /* Output Redirect */ = {
			isa = PBXGroup;
			children = (
				273F209D14ADBE670021BE6D /* HBOutputRedirect.h */,
				273F209E14ADBE670021BE6D /* HBOutputRedirect.m */,
				A91AFD0A1A948827009BECED /* HBOutputFileWriter.h */,
				A91AFD0B1A948827009BECED /* HBOutputFileWriter.m */,
				A91AFD0D1A949472009BECED /* HBJobOutputFileWriter.h */,
				A91AFD0E1A949472009BECED /* HBJobOutputFileWriter.m */,
			);
			name = "Output Redirect";
			sourceTree = "<group>";
		};
		A996B0F81A62C51C00B64179 /* Audio */ = {
			isa = PBXGroup;
			children = (
				A93FD4731A62ABE800A6AC43 /* HBAudio.h */,
				A93FD4741A62ABE800A6AC43 /* HBAudio.m */,
				A932E271198834130047D13E /* HBAudioDefaults.h */,
				A932E272198834130047D13E /* HBAudioDefaults.m */,
				273F209114ADBE670021BE6D /* HBAudioTrack.h */,
				273F209214ADBE670021BE6D /* HBAudioTrack.m */,
				A90A0CAD1988D57200DA65CE /* HBAudioTrackPreset.h */,
				A90A0CAE1988D57200DA65CE /* HBAudioTrackPreset.m */,
			);
			name = Audio;
			sourceTree = "<group>";
		};
		A9B34D6F197683FE00871B7D /* Controllers */ = {
			isa = PBXGroup;
			children = (
				A92268761A6E555500A8D5C5 /* HBAppDelegate.h */,
				A92268771A6E555500A8D5C5 /* HBAppDelegate.m */,
				273F208E14ADBE670021BE6D /* HBController.h */,
				273F208F14ADBE670021BE6D /* HBController.m */,
				A9B34D701976841800871B7D /* Main Window View Controllers */,
				A9AA447C1970726500D7DEFC /* HBQueueController.h */,
				A9906B2B1A710920001D82D5 /* HBQueueController.m */,
				A9C183931A716B8F00C897C2 /* HBTitleSelectionController.h */,
				A9C183941A716B8F00C897C2 /* HBTitleSelectionController.m */,
				A9E2FD241A21BC4A000E8D3F /* HBAddPresetController.h */,
				A9E2FD251A21BC4A000E8D3F /* HBAddPresetController.m */,
				273F20A914ADBE670021BE6D /* HBPictureController.h */,
				273F20AA14ADBE670021BE6D /* HBPictureController.m */,
				273F20A314ADBE670021BE6D /* HBPreviewController.h */,
				273F20A414ADBE670021BE6D /* HBPreviewController.m */,
				A9AA447D1970729300D7DEFC /* HBPreviewGenerator.h */,
				A9D1E41618262364002F6424 /* HBPreviewGenerator.m */,
				273F209B14ADBE670021BE6D /* HBOutputPanelController.h */,
				273F209C14ADBE670021BE6D /* HBOutputPanelController.m */,
				273F209F14ADBE670021BE6D /* HBPreferencesController.h */,
				273F20A014ADBE670021BE6D /* HBPreferencesController.m */,
			);
			name = Controllers;
			sourceTree = "<group>";
		};
		A9B34D701976841800871B7D /* Main Window View Controllers */ = {
			isa = PBXGroup;
			children = (
				A9CF25F51990D6820023F727 /* HBPresetsViewController.h */,
				A9CF25F61990D6820023F727 /* HBPresetsViewController.m */,
				A93E0ED01972957000FD67FB /* HBVideoController.h */,
				A93E0ED11972957000FD67FB /* HBVideoController.m */,
				A9AA447B1970724D00D7DEFC /* HBAdvancedController.h */,
				273F209014ADBE670021BE6D /* HBAdvancedController.m */,
				273F209314ADBE670021BE6D /* HBAudioController.h */,
				273F209414ADBE670021BE6D /* HBAudioController.m */,
				A932E270198833960047D13E /* Audio Defaults */,
				A9DC6C4F196F04F6002AE6B4 /* HBSubtitlesController.h */,
				A9DC6C50196F04F6002AE6B4 /* HBSubtitlesController.m */,
				A9F472851976B7AA0009EC65 /* Subtitles Defaults */,
				A91726E5197291BC00D1AFEF /* HBChapterTitlesController.h */,
				A91726E6197291BC00D1AFEF /* HBChapterTitlesController.m */,
			);
			name = "Main Window View Controllers";
			sourceTree = "<group>";
		};
		A9B34D711976844500871B7D /* UI Views */ = {
			isa = PBXGroup;
			children = (
				A9BC24C71A69293E007DC41A /* HBAttributedStringAdditions.h */,
				A9BC24C81A69293E007DC41A /* HBAttributedStringAdditions.m */,
				A9EA43661A2210C400785E95 /* HBQueueOutlineView.h */,
				A9EA43671A2210C400785E95 /* HBQueueOutlineView.m */,
				46AB433315F98A2B009C0961 /* DockTextField.h */,
				46AB433415F98A2B009C0961 /* DockTextField.m */,
				A9F7102419A475EC00F61301 /* HBDockTile.h */,
				A9F7102519A475EC00F61301 /* HBDockTile.m */,
				273F209914ADBE670021BE6D /* HBImageAndTextCell.h */,
				273F209A14ADBE670021BE6D /* HBImageAndTextCell.m */,
				A9BB0F2519A0ECE40079F1C1 /* HBHUDButtonCell.h */,
				A9BB0F2619A0ECE40079F1C1 /* HBHUDButtonCell.m */,
				A9C9F88719A733FE00DC8923 /* HBHUDView.h */,
				A9C9F88819A733FE00DC8923 /* HBHUDView.m */,
			);
			name = "UI Views";
			sourceTree = "<group>";
		};
		A9F472851976B7AA0009EC65 /* Subtitles Defaults */ = {
			isa = PBXGroup;
			children = (
				A9F472861976B7F30009EC65 /* HBSubtitlesDefaultsController.h */,
				A9F472871976B7F30009EC65 /* HBSubtitlesDefaultsController.m */,
			);
			name = "Subtitles Defaults";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXLegacyTarget section */
		273F216E14ADD2170021BE6D /* external */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "\"$EXTERNAL_SRC/make/xcodemake\"";
			buildConfigurationList = 273F217114ADD2170021BE6D /* Build configuration list for PBXLegacyTarget "external" */;
			buildPhases = (
			);
			buildToolPath = /bin/bash;
			buildWorkingDirectory = "";
			dependencies = (
			);
			name = external;
			passBuildSettingsInEnvironment = 1;
			productName = libhandbrake;
		};
/* End PBXLegacyTarget section */

/* Begin PBXNativeTarget section */
		273F1FFE14ADAE950021BE6D /* HandBrakeCLI */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 273F200714ADAE950021BE6D /* Build configuration list for PBXNativeTarget "HandBrakeCLI" */;
			buildPhases = (
				273F1FFB14ADAE950021BE6D /* Sources */,
				273F1FFC14ADAE950021BE6D /* Frameworks */,
				273F1FFD14ADAE950021BE6D /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				273F217714ADD2580021BE6D /* PBXTargetDependency */,
			);
			name = HandBrakeCLI;
			productName = HandBrakeCLI;
			productReference = 273F1FFF14ADAE950021BE6D /* HandBrakeCLI */;
			productType = "com.apple.product-type.tool";
		};
		273F203814ADBC200021BE6D /* HandBrake */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 273F205314ADBC210021BE6D /* Build configuration list for PBXNativeTarget "HandBrake" */;
			buildPhases = (
				273F203514ADBC200021BE6D /* Sources */,
				273F203614ADBC200021BE6D /* Frameworks */,
				273F203714ADBC200021BE6D /* Resources */,
				273F20CA14ADC86C0021BE6D /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				2781697114B02B1B00A28B61 /* PBXTargetDependency */,
			);
			name = HandBrake;
			productName = HandBrake;
			productReference = 273F203914ADBC210021BE6D /* HandBrake.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		273F1FE014AD9DA40021BE6D /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0630;
			};
			buildConfigurationList = 273F1FE314AD9DA40021BE6D /* Build configuration list for PBXProject "HandBrake" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				English,
			);
			mainGroup = 273F1FDE14AD9DA40021BE6D;
			productRefGroup = 273F200014ADAE950021BE6D /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				273F203814ADBC200021BE6D /* HandBrake */,
				273F1FFE14ADAE950021BE6D /* HandBrakeCLI */,
				273F216E14ADD2170021BE6D /* external */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		273F203714ADBC200021BE6D /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				273F214C14ADCBF80021BE6D /* Delete.png in Resources */,
				273F214D14ADCBF80021BE6D /* DeleteHighlight.png in Resources */,
				273F214E14ADCBF80021BE6D /* DeleteHighlightPressed.png in Resources */,
				273F214F14ADCBF80021BE6D /* DeletePressed.png in Resources */,
				A9F2EB6F196F12C800066546 /* Audio.xib in Resources */,
				273F215114ADCBF80021BE6D /* EncodeCanceled.png in Resources */,
				273F215314ADCBF80021BE6D /* EncodeWorking0.png in Resources */,
				A91C025E1A166BE300DEA6F3 /* EncodeWorking4@2x.png in Resources */,
				273F215414ADCBF80021BE6D /* EncodeWorking1.png in Resources */,
				273F215514ADCBF80021BE6D /* EncodeWorking2.png in Resources */,
				273F215614ADCBF80021BE6D /* EncodeWorking3.png in Resources */,
				273F215714ADCBF80021BE6D /* EncodeWorking4.png in Resources */,
				273F215814ADCBF80021BE6D /* EncodeWorking5.png in Resources */,
				A9CF25F11990D62C0023F727 /* Presets.xib in Resources */,
				273F216114ADCBF80021BE6D /* JobSmall.png in Resources */,
				273F216714ADCBF80021BE6D /* Reveal.png in Resources */,
				A9C1839D1A716BCC00C897C2 /* HBTitleSelection.xib in Resources */,
				273F216814ADCBF80021BE6D /* RevealHighlight.png in Resources */,
				A91C02521A165EA200DEA6F3 /* EncodeComplete.png in Resources */,
				273F216914ADCBF80021BE6D /* RevealHighlightPressed.png in Resources */,
				A9E2FD2B1A21BC6F000E8D3F /* AddPreset.xib in Resources */,
				273F216A14ADCBF80021BE6D /* RevealPressed.png in Resources */,
				273F218A14ADDDA10021BE6D /* AdvancedView.xib in Resources */,
				273F218B14ADDDA10021BE6D /* InfoPlist.strings in Resources */,
				A967E4BA1A16768200DF1DFC /* EncodeCanceled@2x.png in Resources */,
				A9252C091A173D4800B8B7F8 /* Reveal@2x.png in Resources */,
				A9204DC61A16C5AB007CA74C /* DeleteHighlightPressed@2x.png in Resources */,
				A932E26C1988334B0047D13E /* AudioDefaults.xib in Resources */,
				273F218C14ADDDA10021BE6D /* MainMenu.xib in Resources */,
				273F218D14ADDDA10021BE6D /* OutputPanel.xib in Resources */,
				273F218E14ADDDA10021BE6D /* PicturePreview.xib in Resources */,
				273F218F14ADDDA10021BE6D /* PictureSettings.xib in Resources */,
				273F219014ADDDA10021BE6D /* Preferences.xib in Resources */,
				A922687B1A6E569B00A8D5C5 /* MainWindow.xib in Resources */,
				273F219114ADDDA10021BE6D /* Queue.xib in Resources */,
				3490BCB41614CF8D002A5AD7 /* HandBrake.icns in Resources */,
				A9E1468016BC2AD800C307BC /* next-p.pdf in Resources */,
				A9E1468116BC2AD800C307BC /* pause-p.pdf in Resources */,
				A9E1468216BC2AD800C307BC /* play-p.pdf in Resources */,
				A9E1468316BC2AD800C307BC /* prev-p.pdf in Resources */,
				D2BCB10916F5152C0084604C /* activity.png in Resources */,
				A91C025D1A166BE300DEA6F3 /* EncodeWorking3@2x.png in Resources */,
				D2BCB10A16F5152C0084604C /* activity@2x.png in Resources */,
				D2BCB10B16F5152C0084604C /* addqueue.png in Resources */,
				D2BCB10C16F5152C0084604C /* addqueue@2x.png in Resources */,
				D2BCB10D16F5152C0084604C /* advanced.png in Resources */,
				A9204DC51A16C5AB007CA74C /* Delete@2x.png in Resources */,
				A9C0DB85197E7B0000DF55B3 /* SubtitlesDefaults.xib in Resources */,
				A91C025A1A166BE300DEA6F3 /* EncodeWorking0@2x.png in Resources */,
				D2BCB10E16F5152C0084604C /* advanced@2x.png in Resources */,
				A91C025B1A166BE300DEA6F3 /* EncodeWorking1@2x.png in Resources */,
				D2BCB10F16F5152C0084604C /* audio.png in Resources */,
				D2BCB11016F5152C0084604C /* audio@2x.png in Resources */,
				D2BCB11116F5152C0084604C /* encode.png in Resources */,
				D2BCB11216F5152C0084604C /* encode@2x.png in Resources */,
				D2BCB11316F5152C0084604C /* pauseencode.png in Resources */,
				A91C02531A165EA200DEA6F3 /* EncodeComplete@2x.png in Resources */,
				A9DC6C56196F0517002AE6B4 /* Subtitles.xib in Resources */,
				D2BCB11416F5152C0084604C /* pauseencode@2x.png in Resources */,
				A9252C0A1A173D4800B8B7F8 /* RevealHighlight@2x.png in Resources */,
				D2BCB11516F5152C0084604C /* picturesettings.png in Resources */,
				A93E0ED71972958C00FD67FB /* Video.xib in Resources */,
				A9252C0B1A173D4800B8B7F8 /* RevealHighlightPressed@2x.png in Resources */,
				D2BCB11616F5152C0084604C /* picturesettings@2x.png in Resources */,
				D2BCB11716F5152C0084604C /* presets.png in Resources */,
				A9252C0C1A173D4800B8B7F8 /* RevealPressed@2x.png in Resources */,
				A9204DC71A16C5AB007CA74C /* DeletePressed@2x.png in Resources */,
				D2BCB11816F5152C0084604C /* presets@2x.png in Resources */,
				A91C025F1A166BE300DEA6F3 /* EncodeWorking5@2x.png in Resources */,
				A91C025C1A166BE300DEA6F3 /* EncodeWorking2@2x.png in Resources */,
				A91C024D1A16516A00DEA6F3 /* JobSmall@2x.png in Resources */,
				D2BCB11916F5152C0084604C /* preview.png in Resources */,
				A9935213196F38A70069C6B7 /* ChaptersTitles.xib in Resources */,
				D2BCB11A16F5152C0084604C /* preview@2x.png in Resources */,
				D2BCB11B16F5152C0084604C /* settings@2x.png in Resources */,
				D2BCB12316F5154E0084604C /* settings.png in Resources */,
				D2BCB12416F5154E0084604C /* showqueue.png in Resources */,
				D2BCB12516F5154E0084604C /* showqueue@2x.png in Resources */,
				D2BCB12616F5154E0084604C /* source.png in Resources */,
				D2BCB12716F5154E0084604C /* source@2x.png in Resources */,
				D2BCB12816F5154E0084604C /* stopencode.png in Resources */,
				A9252C041A17343500B8B7F8 /* DeleteHighlight@2x.png in Resources */,
				D2BCB12916F5154E0084604C /* stopencode@2x.png in Resources */,
				A983494F1A9A64B80059CB94 /* presets.plist in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		273F1FFB14ADAE950021BE6D /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				273F208914ADBE3B0021BE6D /* fakexcode.cpp in Sources */,
				273F208A14ADBE3B0021BE6D /* parsecsv.c in Sources */,
				273F208B14ADBE3B0021BE6D /* test.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		273F203514ADBC200021BE6D /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A9F7102619A475EC00F61301 /* HBDockTile.m in Sources */,
				A98C29C41977B10600AF5DED /* HBLanguagesSelection.m in Sources */,
				A9BB0F2719A0ECE40079F1C1 /* HBHUDButtonCell.m in Sources */,
				A932E273198834130047D13E /* HBAudioDefaults.m in Sources */,
				A92268781A6E555500A8D5C5 /* HBAppDelegate.m in Sources */,
				A91806711A4807B000FC9BED /* HBRange.m in Sources */,
				A9DEC8771A23C88D00C79B48 /* HBVideo.m in Sources */,
				A9523937199A6AAE00588AEF /* HBFilters.m in Sources */,
				A9AA447A1970664A00D7DEFC /* HBUtilities.m in Sources */,
				A9BC24C91A69293E007DC41A /* HBAttributedStringAdditions.m in Sources */,
				273F20AC14ADBE670021BE6D /* HBController.m in Sources */,
				273F20AD14ADBE670021BE6D /* HBAdvancedController.m in Sources */,
				273F20AE14ADBE670021BE6D /* HBAudioTrack.m in Sources */,
				A9DEC87A1A23C89E00C79B48 /* HBPicture.m in Sources */,
				273F20AF14ADBE670021BE6D /* HBAudioController.m in Sources */,
				A9537BF31A48A99500141102 /* HBVideo+UIAdditions.m in Sources */,
				273F20B114ADBE670021BE6D /* HBDVDDetector.m in Sources */,
				273F20B214ADBE670021BE6D /* HBImageAndTextCell.m in Sources */,
				A9537BF61A48AB6300141102 /* HBPicture+UIAdditions.m in Sources */,
				273F20B314ADBE670021BE6D /* HBOutputPanelController.m in Sources */,
				273F20B414ADBE670021BE6D /* HBOutputRedirect.m in Sources */,
				A93FD4751A62ABE800A6AC43 /* HBAudio.m in Sources */,
				A971281F1A2C75180088C076 /* HBTitle.m in Sources */,
				273F20B514ADBE670021BE6D /* HBPreferencesController.m in Sources */,
				A9E66D701A67A2A8007B641D /* HBDistributedArray.m in Sources */,
				A9DC6C52196F04F6002AE6B4 /* HBSubtitlesController.m in Sources */,
				A9F472891976B7F30009EC65 /* HBSubtitlesDefaultsController.m in Sources */,
				A91AFD0C1A948827009BECED /* HBOutputFileWriter.m in Sources */,
				A9906B2C1A710920001D82D5 /* HBQueueController.m in Sources */,
				A9CF25F41990D64E0023F727 /* HBPreset.m in Sources */,
				A9DEC8741A23C87500C79B48 /* HBCore.m in Sources */,
				A9F4728D1976BAA70009EC65 /* HBSubtitlesDefaults.m in Sources */,
				A93E0ED31972957000FD67FB /* HBVideoController.m in Sources */,
				273F20B614ADBE670021BE6D /* HBPresetsManager.m in Sources */,
				273F20B714ADBE670021BE6D /* HBPreviewController.m in Sources */,
				A990D9071A64562200139032 /* HBJob+HBJobConversion.m in Sources */,
				A9D1E41718262364002F6424 /* HBPreviewGenerator.m in Sources */,
				A90A0CAF1988D57200DA65CE /* HBAudioTrackPreset.m in Sources */,
				A91017B41A64440A00039BFB /* HBSubtitles.m in Sources */,
				273F20BA14ADBE670021BE6D /* HBPictureController.m in Sources */,
				A9CF25F71990D6820023F727 /* HBPresetsViewController.m in Sources */,
				A9537BF91A48AC9000141102 /* HBFilters+UIAdditions.m in Sources */,
				273F20BE14ADC09F0021BE6D /* main.mm in Sources */,
				A9537BF01A48A85C00141102 /* HBJob+UIAdditions.m in Sources */,
				A9EA43681A2210C400785E95 /* HBQueueOutlineView.m in Sources */,
				A9C183961A716B8F00C897C2 /* HBTitleSelectionController.m in Sources */,
				A91726E7197291BC00D1AFEF /* HBChapterTitlesController.m in Sources */,
				A9C9F88919A733FE00DC8923 /* HBHUDView.m in Sources */,
				A932E26F198833920047D13E /* HBAudioDefaultsController.m in Sources */,
				A91AFD0F1A949472009BECED /* HBJobOutputFileWriter.m in Sources */,
				46AB433515F98A2B009C0961 /* DockTextField.m in Sources */,
				A9DEC87F1A23DF6F00C79B48 /* HBJob.m in Sources */,
				A9E2FD271A21BC4A000E8D3F /* HBAddPresetController.m in Sources */,
				A9D488A51996270300E9B1BA /* HBTreeNode.m in Sources */,
				A9597A2A1A49749D00007771 /* HBRange+UIAdditions.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		273F217714ADD2580021BE6D /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 273F216E14ADD2170021BE6D /* external */;
			targetProxy = 273F217614ADD2580021BE6D /* PBXContainerItemProxy */;
		};
		2781697114B02B1B00A28B61 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 273F216E14ADD2170021BE6D /* external */;
			targetProxy = 2781697014B02B1B00A28B61 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		273F217A14ADDDA10021BE6D /* AdvancedView.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F217B14ADDDA10021BE6D /* English */,
			);
			name = AdvancedView.xib;
			sourceTree = "<group>";
		};
		273F217C14ADDDA10021BE6D /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				273F217D14ADDDA10021BE6D /* English */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		273F217E14ADDDA10021BE6D /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F217F14ADDDA10021BE6D /* English */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
		273F218014ADDDA10021BE6D /* OutputPanel.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F218114ADDDA10021BE6D /* English */,
			);
			name = OutputPanel.xib;
			sourceTree = "<group>";
		};
		273F218214ADDDA10021BE6D /* PicturePreview.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F218314ADDDA10021BE6D /* English */,
			);
			name = PicturePreview.xib;
			sourceTree = "<group>";
		};
		273F218414ADDDA10021BE6D /* PictureSettings.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F218514ADDDA10021BE6D /* English */,
			);
			name = PictureSettings.xib;
			sourceTree = "<group>";
		};
		273F218614ADDDA10021BE6D /* Preferences.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F218714ADDDA10021BE6D /* English */,
			);
			name = Preferences.xib;
			sourceTree = "<group>";
		};
		273F218814ADDDA10021BE6D /* Queue.xib */ = {
			isa = PBXVariantGroup;
			children = (
				273F218914ADDDA10021BE6D /* English */,
			);
			name = Queue.xib;
			sourceTree = "<group>";
		};
		A92268791A6E569B00A8D5C5 /* MainWindow.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A922687A1A6E569B00A8D5C5 /* English */,
			);
			name = MainWindow.xib;
			sourceTree = "<group>";
		};
		A932E26A1988334B0047D13E /* AudioDefaults.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A932E26B1988334B0047D13E /* English */,
			);
			name = AudioDefaults.xib;
			sourceTree = "<group>";
		};
		A93E0ED51972958C00FD67FB /* Video.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A93E0ED61972958C00FD67FB /* English */,
			);
			name = Video.xib;
			sourceTree = "<group>";
		};
		A9935211196F38A70069C6B7 /* ChaptersTitles.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9935212196F38A70069C6B7 /* English */,
			);
			name = ChaptersTitles.xib;
			sourceTree = "<group>";
		};
		A9C0DB83197E7B0000DF55B3 /* SubtitlesDefaults.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9C0DB84197E7B0000DF55B3 /* English */,
			);
			name = SubtitlesDefaults.xib;
			sourceTree = "<group>";
		};
		A9C1839B1A716BCC00C897C2 /* HBTitleSelection.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9C1839C1A716BCC00C897C2 /* English */,
			);
			name = HBTitleSelection.xib;
			sourceTree = "<group>";
		};
		A9CF25EF1990D62C0023F727 /* Presets.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9CF25F01990D62C0023F727 /* English */,
			);
			name = Presets.xib;
			sourceTree = "<group>";
		};
		A9DC6C54196F0517002AE6B4 /* Subtitles.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9DC6C55196F0517002AE6B4 /* English */,
			);
			name = Subtitles.xib;
			sourceTree = "<group>";
		};
		A9E2FD291A21BC6F000E8D3F /* AddPreset.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9E2FD2A1A21BC6F000E8D3F /* English */,
			);
			name = AddPreset.xib;
			sourceTree = "<group>";
		};
		A9F2EB6D196F12C800066546 /* Audio.xib */ = {
			isa = PBXVariantGroup;
			children = (
				A9F2EB6E196F12C800066546 /* English */,
			);
			name = Audio.xib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		273F1FE614AD9DA40021BE6D /* debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 275916DA14B2AB27007211E9 /* native.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				EXTERNAL_BUILD = "$(CONFIGURATION_BUILD_DIR)/external";
				EXTERNAL_DRIVER = xcode;
				EXTERNAL_JOBS = auto;
				EXTERNAL_SRC = ..;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				OTHER_LDFLAGS = (
					"-filelist",
					"$(EXTERNAL_BUILD)/macosx/osl.filelist.txt",
				);
				SDKROOT = macosx;
				SHARED_PRECOMPS_DIR = "$(CONFIGURATION_TEMP_DIR)/PrecompiledHeaders";
				STRIP_INSTALLED_PRODUCT = NO;
			};
			name = debug;
		};
		273F1FE714AD9DA40021BE6D /* release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 275916DA14B2AB27007211E9 /* native.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				EXTERNAL_BUILD = "$(CONFIGURATION_BUILD_DIR)/external";
				EXTERNAL_DRIVER = xcode;
				EXTERNAL_JOBS = auto;
				EXTERNAL_SRC = ..;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				OTHER_LDFLAGS = (
					"-filelist",
					"$(EXTERNAL_BUILD)/macosx/osl.filelist.txt",
				);
				SDKROOT = macosx;
				SHARED_PRECOMPS_DIR = "$(CONFIGURATION_TEMP_DIR)/PrecompiledHeaders";
				STRIP_INSTALLED_PRODUCT = YES;
			};
			name = release;
		};
		273F200814ADAE950021BE6D /* debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/include\"",
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/lib\"",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = debug;
		};
		273F200914ADAE950021BE6D /* release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/include\"",
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/lib\"",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = release;
		};
		273F205414ADBC210021BE6D /* debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_ARC = YES;
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)\"",
				);
				HEADER_SEARCH_PATHS = (
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/include\"",
				);
				INFOPLIST_FILE = "$(EXTERNAL_BUILD)/macosx/Info.plist";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/lib\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = debug;
		};
		273F205514ADBC210021BE6D /* release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_ARC = YES;
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)\"",
				);
				HEADER_SEARCH_PATHS = (
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/include\"",
				);
				INFOPLIST_FILE = "$(EXTERNAL_BUILD)/macosx/Info.plist";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(EXTERNAL_BUILD)/libhb\"",
					"\"$(EXTERNAL_BUILD)/contrib/lib\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = release;
		};
		273F217214ADD2170021BE6D /* debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = external;
			};
			name = debug;
		};
		273F217314ADD2170021BE6D /* release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = external;
			};
			name = release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		273F1FE314AD9DA40021BE6D /* Build configuration list for PBXProject "HandBrake" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				273F1FE614AD9DA40021BE6D /* debug */,
				273F1FE714AD9DA40021BE6D /* release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = release;
		};
		273F200714ADAE950021BE6D /* Build configuration list for PBXNativeTarget "HandBrakeCLI" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				273F200814ADAE950021BE6D /* debug */,
				273F200914ADAE950021BE6D /* release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = release;
		};
		273F205314ADBC210021BE6D /* Build configuration list for PBXNativeTarget "HandBrake" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				273F205414ADBC210021BE6D /* debug */,
				273F205514ADBC210021BE6D /* release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = release;
		};
		273F217114ADD2170021BE6D /* Build configuration list for PBXLegacyTarget "external" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				273F217214ADD2170021BE6D /* debug */,
				273F217314ADD2170021BE6D /* release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 273F1FE014AD9DA40021BE6D /* Project object */;
}