Welcome to mirror list, hosted at ThFree Co, Russian Federation.

resource.h « mpc-hc « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b276b919a2f109b76565bab39866c4aa0964375 (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
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by mpc-hc.rc
//
#define IDR_MAINFRAME                   128
#define IDR_POPUP                       130
#define IDR_POPUPMAIN                   133
#define IDB_PLAYERTOOLBAR               201
#define IDB_AUDIOTYPE_NOAUDIO           202
#define IDB_AUDIOTYPE_MONO              203
#define IDB_AUDIOTYPE_STEREO            204
#define IDB_CHECKBOX                    205
#define IDF_LOGO0                       206
#define IDF_LOGO1                       207
#define IDF_LOGO2                       208
#define IDF_LOGO3                       209
#define IDF_TICKCROSS                   210
#define IDB_STREAMTYPES                 215
#define IDB_SHADER_UP                   216
#define IDB_SHADER_DOWN                 217
#define IDB_SHADER_DEL                  218
#define IDB_CHECK_ALL                   219
#define IDB_UNCHECK_ALL                 220
#define IDB_CHECK_AUDIO                 221
#define IDB_CHECK_VIDEO                 222
#define IDI_SINGLE                      300
#define IDI_MULTI                       301
#define IDI_DVD                         302
#define IDI_AUDIOCD                     303
#define IDI_UNKNOWN                     304
#define IDR_AVI_FILECOPY                400
#define IDR_HTML_INFO                   500
#define IDR_HTML_INDEX                  501
#define IDR_HTML_404                    502
#define IDR_HTML_BROWSER                503
#define IDR_HTML_CONTROLS               504
#define IDR_HTML_PLAYER                 505
#define IDF_DEFAULT_CSS                 506
#define IDF_VBR_PNG                     507
#define IDF_VBS_PNG                     508
#define IDF_SLIDERGRIP_PNG              509
#define IDF_1PIX_PNG                    510
#define IDF_SLIDERBACK_PNG              511
#define IDF_HEADERICON_PNG              512
#define IDF_HEADERBACK_PNG              513
#define IDF_HEADERCLOSE_PNG             514
#define IDF_LEFTSIDE_PNG                515
#define IDF_RIGHTSIDE_PNG               516
#define IDF_BOTTOMSIDE_PNG              517
#define IDF_LEFTBOTTOMSIDE_PNG          518
#define IDF_RIGHTBOTTOMSIDE_PNG         519
#define IDF_SEEKBARLEFT_PNG             520
#define IDF_SEEKBARMID_PNG              521
#define IDF_SEEKBARRIGHT_PNG            522
#define IDF_SEEKBARGRIP_PNG             523
#define IDF_CONTROLBACK_PNG             524
#define IDF_CONTROLBUTTONPLAY_PNG       525
#define IDF_CONTROLBUTTONPAUSE_PNG      526
#define IDF_CONTROLBUTTONSTOP_PNG       527
#define IDF_CONTROLBUTTONSKIPBACK_PNG   528
#define IDF_CONTROLBUTTONDECRATE_PNG    529
#define IDF_CONTROLBUTTONINCRATE_PNG    530
#define IDF_CONTROLBUTTONSKIPFORWARD_PNG 531
#define IDF_CONTROLBUTTONSTEP_PNG       532
#define IDF_CONTROLVOLUMEON_PNG         533
#define IDF_CONTROLVOLUMEOFF_PNG        534
#define IDF_CONTROLVOLUMEBAR_PNG        535
#define IDF_CONTROLVOLUMEGRIP_PNG       536
#define IDR_HTML_VARIABLES              537
#define IDF_JAVASCRIPT                  538
#define IDF_FAVICON                     539
#define IDF_SHADER_RESIZER              700
#define IDF_SHADER_EMPTY                701
#define IDF_SHADER_FINAL                702
#define ID_FILE_OPENMEDIA               800
#define ID_FILE_OPENDVDBD               801
#define ID_FILE_OPENDEVICE              802
#define ID_FILE_CLOSEMEDIA              803
#define ID_FILE_CLOSE_AND_RESTORE       804
#define ID_FILE_SAVE_COPY               805
#define ID_FILE_SAVE_IMAGE              806
#define ID_FILE_SAVE_IMAGE_AUTO         807
#define ID_FILE_SAVE_THUMBNAILS         808
#define ID_FILE_LOAD_SUBTITLE           809
#define ID_FILE_SAVE_SUBTITLE           810
#define ID_FILE_ISDB_UPLOAD             811
#define ID_FILE_ISDB_DOWNLOAD           812
#define ID_FILE_ISDB_SEARCH             813
#define ID_FILE_PROPERTIES              814
#define ID_VIEW_OPTIONS                 815
#define ID_FILE_EXIT                    816
#define ID_VIEW_CAPTIONMENU             817
#define ID_VIEW_SEEKER                  818
#define ID_VIEW_CONTROLS                819
#define ID_VIEW_INFORMATION             820
#define ID_VIEW_STATISTICS              821
#define ID_VIEW_STATUS                  822
#define ID_VIEW_SUBRESYNC               823
#define ID_VIEW_PLAYLIST                824
#define ID_VIEW_CAPTURE                 825
#define ID_VIEW_DEBUGSHADERS            826
#define ID_VIEW_PRESETS_MINIMAL         827
#define ID_VIEW_PRESETS_COMPACT         828
#define ID_VIEW_PRESETS_NORMAL          829
#define ID_VIEW_FULLSCREEN              830
#define ID_VIEW_FULLSCREEN_SECONDARY    831
#define ID_VIEW_ZOOM_50                 832
#define ID_VIEW_ZOOM_100                833
#define ID_VIEW_ZOOM_200                834
#define ID_VIEW_VF_HALF                 835
#define ID_VIEW_VF_NORMAL               836
#define ID_VIEW_VF_DOUBLE               837
#define ID_VIEW_VF_STRETCH              838
#define ID_VIEW_VF_FROMINSIDE           839
#define ID_VIEW_VF_FROMOUTSIDE          840
#define ID_VIEW_VF_ZOOM1                841
#define ID_VIEW_VF_ZOOM2                842
#define ID_VIEW_VF_SWITCHZOOM           843
#define ID_VIEW_VF_KEEPASPECTRATIO      844
#define ID_VIEW_VF_COMPMONDESKARDIFF    845
#define ID_VIEW_EDITLISTEDITOR          846
#define ID_EDL_IN                       847
#define ID_EDL_OUT                      848
#define ID_EDL_NEWCLIP                  849
#define ID_ASPECTRATIO_START            850
#define ID_ASPECTRATIO_SOURCE           850
#define ID_ASPECTRATIO_4_3              851
#define ID_ASPECTRATIO_5_4              852
#define ID_ASPECTRATIO_16_9             853
#define ID_ASPECTRATIO_235_100          854
#define ID_ASPECTRATIO_185_100          855
#define ID_ASPECTRATIO_END              858
#define ID_ASPECTRATIO_NEXT             859
#define ID_EDL_SAVE                     860
#define ID_VIEW_RESET                   861
#define ID_VIEW_INCSIZE                 862
#define ID_VIEW_DECSIZE                 863
#define ID_VIEW_INCWIDTH                864
#define ID_VIEW_DECWIDTH                865
#define ID_VIEW_INCHEIGHT               866
#define ID_VIEW_DECHEIGHT               867
#define ID_PANSCAN_MOVELEFT             868
#define ID_PANSCAN_MOVERIGHT            869
#define ID_PANSCAN_MOVEUP               870
#define ID_PANSCAN_MOVEDOWN             871
#define ID_PANSCAN_MOVEUPLEFT           872
#define ID_PANSCAN_MOVEUPRIGHT          873
#define ID_PANSCAN_MOVEDOWNLEFT         874
#define ID_PANSCAN_MOVEDOWNRIGHT        875
#define ID_PANSCAN_CENTER               876
#define ID_PANSCAN_ROTATEXP             877
#define ID_PANSCAN_ROTATEXM             878
#define ID_PANSCAN_ROTATEYP             879
#define ID_PANSCAN_ROTATEYM             880
#define ID_PANSCAN_ROTATEZP             881
#define ID_PANSCAN_ROTATEZM             882
#define ID_ONTOP_DEFAULT                883
#define ID_ONTOP_ALWAYS                 884
#define ID_ONTOP_WHILEPLAYING           885
#define ID_ONTOP_WHILEPLAYINGVIDEO      886
#define ID_PLAY_PLAY                    887
#define ID_PLAY_PAUSE                   888
#define ID_PLAY_PLAYPAUSE               889
#define ID_PLAY_STOP                    890
#define ID_PLAY_FRAMESTEP               891
#define ID_PLAY_FRAMESTEPCANCEL         892
#define ID_NAVIGATE_GOTO                893
#define ID_PLAY_DECRATE                 894
#define ID_PLAY_INCRATE                 895
#define ID_PLAY_RESETRATE               896
#define ID_PLAY_SEEKKEYBACKWARD         897
#define ID_PLAY_SEEKKEYFORWARD          898
#define ID_PLAY_SEEKBACKWARDSMALL       899
#define ID_PLAY_SEEKFORWARDSMALL        900
#define ID_PLAY_SEEKBACKWARDMED         901
#define ID_PLAY_SEEKFORWARDMED          902
#define ID_PLAY_SEEKBACKWARDLARGE       903
#define ID_PLAY_SEEKFORWARDLARGE        904
#define ID_PLAY_INCAUDDELAY             905
#define ID_PLAY_DECAUDDELAY             906
#define ID_VOLUME_UP                    907
#define ID_VOLUME_DOWN                  908
#define ID_VOLUME_MUTE                  909
#define ID_VOLUME_MUTE_ON               910
#define ID_VOLUME_MUTE_DISABLED         911
#define ID_AFTERPLAYBACK_CLOSE          912
#define ID_AFTERPLAYBACK_STANDBY        913
#define ID_AFTERPLAYBACK_HIBERNATE      914
#define ID_AFTERPLAYBACK_SHUTDOWN       915
#define ID_AFTERPLAYBACK_LOGOFF         916
#define ID_AFTERPLAYBACK_LOCK           917
#define ID_AFTERPLAYBACK_MONITOROFF     918
#define ID_NAVIGATE_SKIPBACKFILE        919
#define ID_NAVIGATE_SKIPFORWARDFILE     920
#define ID_NAVIGATE_SKIPBACK            921
#define ID_NAVIGATE_SKIPFORWARD         922
#define ID_NAVIGATE_TITLEMENU           923
#define ID_NAVIGATE_ROOTMENU            924
#define ID_NAVIGATE_SUBPICTUREMENU      925
#define ID_NAVIGATE_AUDIOMENU           926
#define ID_NAVIGATE_ANGLEMENU           927
#define ID_NAVIGATE_CHAPTERMENU         928
#define ID_NAVIGATE_MENU_LEFT           929
#define ID_NAVIGATE_MENU_RIGHT          930
#define ID_NAVIGATE_MENU_UP             931
#define ID_NAVIGATE_MENU_DOWN           932
#define ID_NAVIGATE_MENU_ACTIVATE       933
#define ID_NAVIGATE_MENU_BACK           934
#define ID_NAVIGATE_MENU_LEAVE          935
#define ID_FAVORITES                    936
#define ID_FAVORITES_ORGANIZE           937
#define ID_FAVORITES_ADD                938
#define ID_HELP_HOMEPAGE                939
#define ID_HELP_DONATE                  940
#define ID_HELP_SHOWCOMMANDLINESWITCHES 941
#define ID_HELP_TOOLBARIMAGES           942
#define ID_HELP_ABOUT                   943
#define ID_BOSS                         944
#define ID_DUMMYSEPARATOR               945
#define ID_BUTTONSEP                    946
#define ID_AFTERPLAYBACK_PLAYNEXT       947
#define ID_MENU_PLAYER_SHORT            949
#define ID_MENU_PLAYER_LONG             950
#define ID_MENU_FILTERS                 951
#define ID_STREAM_AUDIO_NEXT            952
#define ID_STREAM_AUDIO_PREV            953
#define ID_STREAM_SUB_NEXT              954
#define ID_STREAM_SUB_PREV              955
#define ID_STREAM_SUB_ONOFF             956
#define ID_OGM_AUDIO_NEXT               957
#define ID_OGM_AUDIO_PREV               958
#define ID_OGM_SUB_NEXT                 959
#define ID_OGM_SUB_PREV                 960
#define ID_DVD_ANGLE_NEXT               961
#define ID_DVD_ANGLE_PREV               962
#define ID_DVD_AUDIO_NEXT               963
#define ID_DVD_AUDIO_PREV               964
#define ID_DVD_SUB_NEXT                 965
#define ID_DVD_SUB_PREV                 966
#define ID_DVD_SUB_ONOFF                967
#define ID_VIEW_ZOOM_AUTOFIT            968
#define ID_FILE_OPENQUICK               969
#define ID_VOLUME_BOOST_INC             970
#define ID_VOLUME_BOOST_DEC             971
#define ID_VOLUME_BOOST_MIN             972
#define ID_VOLUME_BOOST_MAX             973
#define ID_NAVIGATE_TUNERSCAN           974
#define ID_FAVORITES_QUICKADDFAVORITE   975
#define ID_FILE_REOPEN                  976
#define ID_FILTERS                      977
#define ID_AUDIOS                       978
#define ID_SUBTITLES                    979
#define ID_VIDEO_STREAMS                980
#define ID_COLOR_BRIGHTNESS_INC         984
#define ID_COLOR_BRIGHTNESS_DEC         985
#define ID_COLOR_CONTRAST_INC           986
#define ID_COLOR_CONTRAST_DEC           987
#define ID_COLOR_HUE_INC                988
#define ID_COLOR_HUE_DEC                989
#define ID_COLOR_SATURATION_INC         990
#define ID_COLOR_SATURATION_DEC         991
#define ID_COLOR_RESET                  992
#define ID_CUSTOM_CHANNEL_MAPPING       993
#define ID_NORMALIZE                    994
#define ID_REGAIN_VOLUME                995
#define ID_PLAY_SEEKSET                 996
#define ID_FILTERS_COPY_TO_CLIPBOARD    1999
#define ID_FILTERS_SUBITEM_START        2000
#define ID_FILTERS_SUBITEM_END          2099
#define ID_FILTERSTREAMS_SUBITEM_START  2100
#define ID_FILTERSTREAMS_SUBITEM_END    2199
#define ID_AUDIO_SUBITEM_START          2200
#define ID_AUDIO_SUBITEM_END            2299
#define ID_SUBTITLES_SUBITEM_START      2300
#define ID_SUBTITLES_SUBITEM_END        2399
#define ID_VIDEO_STREAMS_SUBITEM_START  2400
#define ID_VIDEO_STREAMS_SUBITEM_END    2499
#define ID_FAVORITES_FILE_START         2800
#define ID_FAVORITES_FILE_END           3799
#define ID_FAVORITES_DVD_START          3800
#define ID_FAVORITES_DVD_END            3899
#define ID_FAVORITES_DEVICE_START       3900
#define ID_FAVORITES_DEVICE_END         3999
#define ID_FILE_OPEN_OPTICAL_DISK_START 4000
#define ID_FILE_OPEN_OPTICAL_DISK_END   4099
#define ID_PANNSCAN_PRESETS_START       4100
#define ID_PANNSCAN_PRESETS_END         4199
#define ID_SHADERS_SELECT               4200
#define ID_SHADERS_PRESETS_START        4201
#define ID_SHADERS_PRESETS_END          4299
#define ID_NAVIGATE_JUMPTO_SUBITEM_START 4300
#define ID_NAVIGATE_JUMPTO_SUBITEM_END  4899
#define ID_VIEW_ZOOM_AUTOFIT_LARGER     4900
// filters
#define IDS_FILTER_SETTINGS_CAPTION     7000
#define IDS_ARS_WASAPI_MODE             7100
#define IDS_ARS_MUTE_FAST_FORWARD       7101
#define IDS_ARS_SOUND_DEVICE            7102
//
#define IDD_OPEN_DLG                    10000
#define IDD_MEDIATYPES_DLG              10002
#define IDD_SAVE_DLG                    10004
#define IDD_SUBTITLEDL_DLG              10005
#define IDD_FILEPROPDETAILS             10010
#define IDD_FILEPROPCLIP                10011
#define IDD_PNSPRESET_DLG               10015
#define IDD_GOTO_DLG                    10016
#define IDD_FAVADD                      10017
#define IDD_FAVORGANIZE                 10018
#define IDD_ABOUTBOX                    10019
#define IDD_PLAYERINFOBAR               10020
#define IDD_PLAYERSTATUSBAR             10021
#define IDD_PLAYERSEEKBAR               10022
#define IDD_PPAGEPLAYBACK               10023
#define IDD_PPAGEPLAYER                 10024
#define IDD_PPAGEDVD                    10025
#define IDD_PPAGESUBTITLES              10026
#define IDD_PPAGEFORMATS                10027
#define IDD_PPAGETWEAKS                 10028
#define IDD_PPAGEAUDIOSWITCHER          10029
#define IDD_PPAGEEXTERNALFILTERS        10030
#define IDD_PPAGESHADERS                10031
#define IDD_PPAGEACCELTBL               10032
#define IDD_PPAGESUBSTYLE               10033
#define IDD_PPAGEINTERNALFILTERS        10036
#define IDD_PPAGELOGO                   10037
#define IDD_PPAGEOUTPUT                 10039
#define IDD_PPAGEWEBSERVER              10040
#define IDD_PPAGESUBDB                  10042
#define IDD_SAVETEXTFILEDIALOGTEMPL     10043
#define IDD_SAVESUBTITLESFILEDIALOGTEMPL 10044
#define IDD_CAPTURE_DLG                 10045
#define IDD_ADDREGFILTER                10046
#define IDD_SELECTMEDIATYPE             10047
#define IDD_COMPROPERTYPAGE             10048
#define IDD_FILEPROPRES                 10049
#define IDD_SAVETHUMBSDIALOGTEMPL       10050
#define IDD_PPAGEMISC                   10052
#define IDD_FILEMEDIAINFO               10053
#define IDD_PPAGECAPTURE                10054
#define IDD_PPAGESYNC                   10055
#define IDD_PPAGEFULLSCREEN             10056
#define IDD_RFS_FILELIST_EXT            10057
#define IDC_COMBO1                      11000
#define IDC_COMBO2                      11001
#define IDC_COMBO3                      11002
#define IDC_COMBO4                      11003
#define IDC_COMBO5                      11004
#define IDC_COMBO6                      11005
#define IDC_COMBO7                      11006
#define IDC_COMBO8                      11007
#define IDC_COMBO9                      11008
#define IDC_COMBO10                     11009
#define IDC_COMBO11                     11010
#define IDC_COMBO12                     11011
#define IDC_COMBO14                     11013
#define IDC_SLIDER1                     11020
#define IDC_SLIDER2                     11021
#define IDC_SLIDER3                     11022
#define IDC_SLIDER4                     11023
#define IDC_SLI_BRIGHTNESS              11025
#define IDC_SLI_HUE                     11026
#define IDC_SLI_SATURATION              11027
#define IDC_RADIO1                      11040
#define IDC_RADIO2                      11041
#define IDC_RADIO3                      11042
#define IDC_RADIO4                      11043
#define IDC_RADIO5                      11044
#define IDC_RADIO6                      11045
#define IDC_RADIO7                      11046
#define IDC_RADIO8                      11047
#define IDC_RADIO9                      11048
#define IDC_RADIO10                     11049
#define IDC_RADIO11                     11050
#define IDC_EDIT1                       11060
#define IDC_EDIT3                       11061
#define IDC_EDIT2                       11062
#define IDC_EDIT4                       11063
#define IDC_EDIT5                       11064
#define IDC_EDIT6                       11065
#define IDC_EDIT7                       11066
#define IDC_EDIT8                       11067
#define IDC_EDIT9                       11068
#define IDC_EDIT10                      11069
#define IDC_WINHOTKEY1                  11070
#define IDC_CHECK1                      11080
#define IDC_CHECK2                      11081
#define IDC_CHECK3                      11082
#define IDC_CHECK4                      11083
#define IDC_CHECK5                      11084
#define IDC_CHECK6                      11085
#define IDC_CHECK7                      11086
#define IDC_CHECK8                      11087
#define IDC_CHECK9                      11088
#define IDC_CHECK10                     11089
#define IDC_CHECK11                     11090
#define IDC_CHECK12                     11091
#define IDC_CHECK13                     11092
#define IDC_CHECK14                     11093
#define IDC_SPIN1                       11100
#define IDC_SPIN2                       11101
#define IDC_SPIN3                       11102
#define IDC_SPIN4                       11103
#define IDC_SPIN5                       11104
#define IDC_SPIN6                       11105
#define IDC_SPIN7                       11106
#define IDC_SPIN8                       11107
#define IDC_SPIN9                       11108
#define IDC_SPIN10                      11109
#define IDC_BUTTON1                     11120
#define IDC_BUTTON2                     11121
#define IDC_BUTTON3                     11122
#define IDC_BUTTON4                     11123
#define IDC_BUTTON5                     11124
#define IDC_BUTTON6                     11125
#define IDC_BUTTON7                     11126
#define IDC_BUTTON8                     11127
#define IDC_BUTTON9                     11128
#define IDC_BUTTON10                    11129
#define IDC_BUTTON11                    11130
#define IDC_BUTTON12                    11131
#define IDC_BUTTON13                    11132
#define IDC_RESET_SETTINGS              11133
#define IDC_EXPORT_SETTINGS             11134
#define IDC_TREE1                       11140
#define IDC_LIST1                       11160
#define IDC_LIST2                       11161
#define IDC_LIST3                       11162
#define IDC_TAB1                        11200
#define IDC_ANIMATE1                    11220
#define IDC_PROGRESS1                   11240
#define IDC_STATIC1                     11260
#define IDC_STATIC2                     11261
#define IDC_STATIC3                     11262
#define IDC_STATIC4                     11263
#define IDC_STATIC5                     11264
#define IDC_STATIC6                     11265
#define IDC_STATIC7                     11266
#define IDC_STATIC8                     11267
#define IDC_STATIC9                     11268
#define IDC_STATIC10                    11269
#define IDC_STATIC_BALANCE              11270
#define IDC_DVDPATH                     12000
#define IDC_SUBRESYNCLIST               12001
#define IDC_PLAYLIST                    12002
#define IDC_COLORPRI                    12003
#define IDC_COLORSEC                    12004
#define IDC_COLOROUTL                   12005
#define IDC_COLORSHAD                   12006
#define IDC_STATICLINK                  12007
#define IDC_STATICLINK2                 12008
#define IDC_DEFAULTICON                 12009
#define IDC_PLACEHOLDER                 12010
#define IDC_REPORT                      12011
#define IDC_FROMTO                      12012
#define IDC_LOGOPREVIEW                 12014
#define IDC_LOGOFILENAME                12016
#define IDC_AUTHOR                      12018
#define IDC_CHECK_RELATIVETO            12019
#define IDC_CHECK_NO_SUB_ANIM           12021
#define IDC_SUBPIC_TO_BUFFER            12022
#define IDC_BUTTON_EXT_SET              12023
#define IDC_OK1                         12024
#define IDC_OK2                         12025
#define IDC_PLAYERSTATUS                12026
#define IDC_PLAYERTIME                  12027
#define IDC_EDITLIST                    12028
#define IDC_CHECK_SUB_AR_COMPENSATION   12029
#define IDC_CHECK_ALLOW_DROPPING_SUBPIC 12030
#define IDC_DSSYSDEF                    12100
#define IDC_DSOLD                       12101
#define IDC_DSOVERLAYMIXER              12102
#define IDC_DSVMR7WIN                   12103
#define IDC_DSVMR9WIN                   12104
#define IDC_DSVMR7REN                   12105
#define IDC_DSVMR9REN                   12106
#define IDC_DSDXR                       12107
#define IDC_DSNULL_COMP                 12108
#define IDC_DSNULL_UNCOMP               12109
#define IDC_DSEVR                       12110
#define IDC_DSEVR_CUSTOM                12111
#define IDC_DSMADVR                     12112
#define IDC_DSSYNC                      12113
#define IDC_RMSYSDEF                    12120
#define IDC_RMDX7                       12121
#define IDC_RMDX9                       12122
#define IDC_QTSYSDEF                    12123
#define IDC_QTDX7                       12124
#define IDC_QTDX9                       12125
#define IDC_REGULARSURF                 12127
#define IDC_TEXTURESURF2D               12128
#define IDC_TEXTURESURF3D               12129
#define IDC_DX9RESIZER_COMBO            12130
#define IDC_DSVMR9LOADMIXER             12131
#define IDC_DX_SURFACE                  12133
#define IDC_DSVMR9YUVMIXER              12134
#define IDC_BUTTON_MI                   12136
#define IDC_MIEDIT                      12137
#define IDC_LISTCHANNELS                12138
#define IDC_STATUSBAR                   12139
#define IDC_PPAGECAPTURE_DESC1          12140
#define IDS_SRC_VTS                     14002
#define IDS_SRC_RFS                     14003
#define IDS_INTERNAL_LAVF               14004
#define IDS_INTERNAL_LAVF_WMV           14005
#define IDS_PLAYLIST_OPEN               14114
#define IDS_PLAYLIST_ADD                14115
#define IDS_PLAYLIST_REMOVE             14116
#define IDS_PLAYLIST_CLEAR              14117
#define IDS_PLAYLIST_COPYTOCLIPBOARD    14118
#define IDS_PLAYLIST_SAVEAS             14119
#define IDS_PLAYLIST_SORTBYLABEL        14120
#define IDS_PLAYLIST_SORTBYPATH         14121
#define IDS_PLAYLIST_RANDOMIZE          14122
#define IDS_PLAYLIST_RESTORE            14123
#define IDS_SUBRESYNC_SEPARATOR         14124
#define IDS_SUBRESYNC_DELETE            14125
#define IDS_SUBRESYNC_DUPLICATE         14126
#define IDS_SUBRESYNC_RESET             14127
#define IDS_SUBRESYNC_ORIGINAL          14128
#define IDS_SUBRESYNC_CURRENT           14129
#define IDS_SUBRESYNC_EDIT              14130
#define IDS_SUBRESYNC_YES               14131
#define IDS_SUBRESYNC_NO                14132
#define IDS_SUBRESYNC_DECREASE          14133
#define IDS_SUBRESYNC_INCREASE          14134
#define IDS_OPTIONS_CAPTION             14135
#define IDS_SHADERS_SELECT              14136
#define IDS_SHADERS_DEBUG               14137
#define IDS_FAVORITES_ADD               14153
#define IDS_FAVORITES_ORGANIZE          14154
#define IDS_PLAYLIST_SHUFFLE            14155
#define IDS_PLAYLIST_SHOWFOLDER         14156
#define IDS_CONTROLS_CLOSING            14157
#define IDS_CONTROLS_PLAYING            14158
#define IDS_CONTROLS_PAUSED             14159
#define IDS_CONTROLS_STOPPED            14160
#define IDS_CONTROLS_BUFFERING          14161
#define IDS_CONTROLS_CAPTURING          14162
#define IDS_CONTROLS_OPENING            14163
#define IDS_CONTROLS_CLOSED             14164
#define IDS_SUBTITLES_OPTIONS           14165
#define IDS_SUBTITLES_STYLES            14166
#define IDS_SUBTITLES_RELOAD            14167
#define IDS_SUBTITLES_ENABLE            14168
#define IDS_PANSCAN_EDIT                14169
#define IDS_INFOBAR_TITLE               14170
#define IDS_INFOBAR_AUTHOR              14171
#define IDS_INFOBAR_COPYRIGHT           14172
#define IDS_INFOBAR_RATING              14173
#define IDS_INFOBAR_DESCRIPTION         14174
#define IDS_INFOBAR_DOMAIN              14175
#define IDS_INFOBAR_LOCATION            14176
#define IDS_INFOBAR_VIDEO               14177
#define IDS_INFOBAR_AUDIO               14178
#define IDS_INFOBAR_SUBTITLES           14179
#define IDS_INFOBAR_CHAPTER             14180
#define IDS_CONTROLS_COMPLETING         14181
#define IDS_AUTOPLAY_PLAYVIDEO          14182
#define IDS_AUTOPLAY_PLAYMUSIC          14183
#define IDS_AUTOPLAY_PLAYAUDIOCD        14184
#define IDS_AUTOPLAY_PLAYDVDMOVIE       14185
#define IDS_PROPSHEET_PROPERTIES        14186
#define IDS_SUBTITLES_DEFAULT_STYLE     14188
#define IDS_FAVFILES                    14190
#define IDS_FAVDVDS                     14191
#define IDS_INFOBAR_CHANNEL             14192
#define IDS_INFOBAR_TIME                14193
#define IDS_STATSBAR_SYNC_OFFSET        14194
#define IDS_STATSBAR_SYNC_OFFSET_FORMAT 14195
#define IDS_STATSBAR_JITTER             14196
#define IDS_STATSBAR_BITRATE            14197
#define IDS_STATSBAR_BITRATE_AVG_CUR    14198
#define IDS_STATSBAR_SIGNAL             14199
#define IDS_STATSBAR_SIGNAL_FORMAT      14200
#define IDS_SUBTITLES_STYLES_CAPTION    14201
#define IDS_TEXT_SUB_RENDERING_TARGET   14202
#define IDD_TUNER_SCAN                  20002
#define IDS_AG_RESET_STATS              20004
#define IDD_NAVIGATION_DLG              20005
#define IDD_PPAGESUBMISC                20006
#define IDS_VIEW_BORDERLESS             20007
#define IDS_VIEW_FRAMEONLY              20008
#define IDS_VIEW_CAPTIONMENU            20009
#define IDS_VIEW_HIDEMENU               20010
#define IDD_UPDATE_DIALOG               20011
#define IDF_WIN7_TOOLBAR                20012
#define IDD_DEBUGSHADERS_DLG            20013
#define IDD_PPAGEADVANCED               20014
#define IDD_SAVEIMAGEDIALOGTEMPL        20015
#define IDD_CMD_LINE_HELP               20016
#define IDC_FULLSCREEN_MONITOR_CHECK    22002
#define IDC_SLI_CONTRAST                22003
#define IDC_RESET                       22004
#define IDC_DVD_POS                     22005
#define IDC_FILE_POS                    22006
#define IDC_EVR_BUFFERS                 22010
#define IDC_VERSION                     22011
#define IDC_SHOW_OSD                    22013
#define IDC_EVR_BUFFERS_TXT             22014
#define IDC_MPC_COMPILER                22015
#define IDC_LAVFILTERS_VERSION          22016
#define IDC_DSVMR9ALTERNATIVEVSYNC      22017
#define IDC_HOMEPAGE_LINK               22018
#define IDC_QUALITY                     22019
#define IDC_PROGRESS                    22020
#define IDC_FREQ_START                  22021
#define IDC_BANDWIDTH                   22022
#define IDC_FREQ_END                    22023
#define IDC_CHANNEL_LIST                22024
#define ID_START                        22025
#define ID_SAVE                         22030
#define IDC_STRENGTH                    22031
#define IDC_SYNCVIDEO                   22032
#define IDC_SYNCDISPLAY                 22033
#define IDC_CYCLEDELTA                  22034
#define IDC_LINEDELTA                   22035
#define IDC_COLUMNDELTA                 22036
#define IDC_TARGETSYNCOFFSET            22037
#define IDC_CONTROLLIMIT                22038
#define IDC_SYNCNEAREST                 22040
#define IDC_D3D9DEVICE                  22041
#define IDC_NAVIGATION_SCAN             22043
#define IDC_D3D9DEVICE_COMBO            22045
#define IDC_NAVIGATION_INFO             22046
#define IDC_NAVIGATION_FILTERSTATIONS   22047
#define IDC_CHECK_OFFSET                22048
#define IDC_OFFSET                      22049
#define IDC_CHECK_IGNORE_ENCRYPTED      22050
#define IDC_UPDATE_DLG_TEXT             22051
#define IDC_UPDATE_ICON                 22052
#define IDC_UPDATE_DL_BUTTON            22053
#define IDC_UPDATE_LATER_BUTTON         22054
#define IDC_UPDATE_IGNORE_BUTTON        22055
#define IDC_AUTHORS_LINK                22056
#define IDC_CHECK_LCD                   22059
#define IDC_VIDRND_COMBO                22060
#define IDC_RMRND_COMBO                 22061
#define IDC_QTRND_COMBO                 22062
#define IDC_AUDRND_COMBO                22063
#define IDC_VIDRND_DXVA_SUPPORT         22064
#define IDC_VIDRND_SHADER_SUPPORT       22065
#define IDC_VIDRND_SUBTITLE_SUPPORT     22066
#define IDC_VIDRND_SAVEIMAGE_SUPPORT    22067
#define IDC_VIDRND_ROTATION_SUPPORT     22068
#define IDC_RMRND_SUBTITLE_SUPPORT      22069
#define IDC_RMRND_SAVEIMAGE_SUPPORT     22070
#define IDC_QTRND_SUBTITLE_SUPPORT      22071
#define IDC_QTRND_SAVEIMAGE_SUPPORT     22072
#define IDC_VOLUMESTEP                  22073
#define IDC_VOLUMESTEP_SPIN             22074
#define IDC_SPEEDSTEP                   22075
#define IDC_SPEEDSTEP_SPIN              22076
#define IDC_EXPORT_KEYS                 22077
#define IDC_PPAGECAPTURE_ST10           22078
#define IDC_PPAGECAPTURE_ST11           22079
#define IDC_PPAGECAPTURE_ST12           22080
#define IDC_FASTSEEK_CHECK              22081
#define IDC_ASSOCIATE_ALL_FORMATS       22082
#define IDC_ASSOCIATE_VIDEO_FORMATS     22083
#define IDC_ASSOCIATE_AUDIO_FORMATS     22084
#define IDC_CLEAR_ALL_ASSOCIATIONS      22085
#define ID_SUB_DELAY_DOWN               24000
#define ID_SUB_DELAY_UP                 24001
#define IDS_MPLAYERC_104                24002
#define IDS_MPLAYERC_105                24003
#define IDS_FILE_SAVE_THUMBNAILS        24005
#define ID_VIEW_FORCEINPUTHIGHCOLORRESOLUTION 24028
#define ID_VIEW_FULLFLOATINGPOINTPROCESSING 24029
#define ID_VIEW_CM_ENABLE               24030
#define ID_VIEW_CM_INPUT_AUTO           24031
#define ID_VIEW_CM_INPUT_HDTV           24032
#define ID_VIEW_CM_INPUT_SDTV_NTSC      24033
#define ID_VIEW_CM_INPUT_SDTV_PAL       24034
#define ID_VIEW_CM_AMBIENTLIGHT_BRIGHT  24035
#define ID_VIEW_CM_AMBIENTLIGHT_DIM     24037
#define ID_VIEW_CM_AMBIENTLIGHT_DARK    24038
#define ID_VIEW_CM_INTENT_PERCEPTUAL    24039
#define ID_VIEW_CM_INTENT_RELATIVECOLORIMETRIC 24040
#define ID_VIEW_CM_INTENT_SATURATION    24041
#define ID_VIEW_CM_INTENT_ABSOLUTECOLORIMETRIC 24042
#define ID_VIEW_HALFFLOATINGPOINTPROCESSING 24043
#define ID_FILE_RECYCLE                 24044
#define ID_VIEW_TEARING_TEST            32769
#define ID_FILE_OPENDISC                32774
#define ID_SHADERS                      32775
#define ID_VIEW_REMAINING_TIME          32778
#define ID_D3DFULLSCREEN_TOGGLE         32779
#define ID_GOTO_PREV_SUB                32780
#define ID_GOTO_NEXT_SUB                32781
#define ID_SHIFT_SUB_DOWN               32782
#define ID_SHIFT_SUB_UP                 32783
#define ID_VIEW_DISPLAYSTATS            32784
#define IDS_AG_CLOSE                    32830
#define IDS_AG_NONE                     32832
#define IDS_AG_COMMAND                  32833
#define IDS_AG_KEY                      32834
#define IDS_AG_MOUSE                    32836
#define IDS_AG_MOUSE_FS                 32837
#define IDS_AG_APP_COMMAND              32838
#define IDS_AG_MEDIAFILES               32871
#define IDS_AG_ALLFILES                 32872
#define IDS_AG_AUDIOFILES               32873
#define IDS_AG_NOT_KNOWN                32876
#define IDS_MPLAYERC_0                  32877
#define IDS_AG_OPEN_FILE                32878
#define IDS_AG_OPEN_DVD                 32879
#define IDS_AG_OPEN_DEVICE              32880
#define IDS_AG_SAVE_AS                  32881
#define IDS_AG_SAVE_IMAGE               32882
#define IDS_MPLAYERC_6                  32883
#define IDS_OSD_IMAGE_SAVED             32884
#define IDS_AG_LOAD_SUBTITLE            32885
#define IDS_AG_SAVE_SUBTITLE            32886
#define IDS_AG_PROPERTIES               32887
#define IDS_AG_EXIT                     32888
#define IDS_AG_PLAYPAUSE                32889
#define IDS_AG_PLAY                     32890
#define IDS_AG_STOP                     32891
#define IDS_AG_FRAMESTEP                32892
#define IDS_MPLAYERC_16                 32893
#define IDS_AG_GO_TO                    32894
#define IDS_AG_INCREASE_RATE            32895
#define IDS_AG_DECREASE_RATE            32896
#define IDS_AG_RESET_RATE               32897
#define IDS_MPLAYERC_21                 32898
#define IDS_MPLAYERC_22                 32899
#define IDS_MPLAYERC_23                 32900
#define IDS_MPLAYERC_24                 32901
#define IDS_MPLAYERC_25                 32902
#define IDS_MPLAYERC_26                 32903
#define IDS_MPLAYERC_27                 32904
#define IDS_MPLAYERC_28                 32905
#define IDS_MPLAYERC_29                 32906
#define IDS_MPLAYERC_30                 32907
#define IDS_AG_NEXT                     32908
#define IDS_AG_PREVIOUS                 32909
#define IDS_AG_NEXT_FILE                32910
#define IDS_AG_PREVIOUS_FILE            32911
#define IDS_AG_VIEW_MINIMAL             32912
#define IDS_AG_VIEW_COMPACT             32913
#define IDS_AG_VIEW_NORMAL              32914
#define IDS_AG_FULLSCREEN               32915
#define IDS_MPLAYERC_39                 32916
#define IDS_AG_ZOOM_AUTO_FIT            32917
#define IDS_AG_VIDFRM_HALF              32918
#define IDS_AG_VIDFRM_NORMAL            32919
#define IDS_AG_VIDFRM_DOUBLE            32920
#define IDS_AG_ALWAYS_ON_TOP            32921
#define IDS_AG_PNS_INC_SIZE             32922
#define IDS_AG_PNS_INC_WIDTH            32923
#define IDS_MPLAYERC_47                 32924
#define IDS_AG_PNS_DEC_SIZE             32925
#define IDS_AG_PNS_DEC_WIDTH            32926
#define IDS_MPLAYERC_50                 32927
#define IDS_AG_PNS_CENTER               32928
#define IDS_AG_PNS_LEFT                 32929
#define IDS_AG_PNS_RIGHT                32930
#define IDS_AG_PNS_UP                   32931
#define IDS_AG_PNS_DOWN                 32932
#define IDS_AG_PNS_UPLEFT               32933
#define IDS_AG_PNS_UPRIGHT              32934
#define IDS_AG_PNS_DOWNLEFT             32935
#define IDS_MPLAYERC_59                 32936
#define IDS_AG_VOLUME_UP                32937
#define IDS_AG_VOLUME_DOWN              32938
#define IDS_AG_VOLUME_MUTE              32939
#define IDS_MPLAYERC_63                 32940
#define IDS_AG_DVD_ROOT_MENU            32941
#define IDS_MPLAYERC_65                 32942
#define IDS_MPLAYERC_66                 32943
#define IDS_MPLAYERC_67                 32944
#define IDS_MPLAYERC_68                 32945
#define IDS_AG_DVD_MENU_LEFT            32946
#define IDS_MPLAYERC_70                 32947
#define IDS_AG_DVD_MENU_UP              32948
#define IDS_AG_DVD_MENU_DOWN            32949
#define IDS_MPLAYERC_73                 32950
#define IDS_AG_DVD_MENU_BACK            32951
#define IDS_MPLAYERC_75                 32952
#define IDS_AG_BOSS_KEY                 32953
#define IDS_MPLAYERC_77                 32954
#define IDS_MPLAYERC_78                 32955
#define IDS_AG_FILTERS_MENU             32956
#define IDS_AG_OPTIONS                  32957
#define IDS_AG_NEXT_AUDIO               32958
#define IDS_AG_PREV_AUDIO               32959
#define IDS_AG_NEXT_SUBTITLE            32960
#define IDS_AG_PREV_SUBTITLE            32961
#define IDS_MPLAYERC_85                 32962
#define IDS_MPLAYERC_86                 32963
#define IDS_MPLAYERC_87                 32964
#define IDS_MPLAYERC_88                 32965
#define IDS_MPLAYERC_89                 32966
#define IDS_MPLAYERC_90                 32967
#define IDS_MPLAYERC_91                 32968
#define IDS_MPLAYERC_92                 32969
#define IDS_MPLAYERC_93                 32970
#define IDS_MPLAYERC_94                 32971
#define IDS_MPLAYERC_95                 32972
#define IDS_MPLAYERC_96                 32973
#define IDS_MPLAYERC_97                 32974
#define IDS_MPLAYERC_98                 32975
#define IDS_MPLAYERC_99                 32976
#define IDS_MPLAYERC_100                32977
#define IDS_MPLAYERC_101                32978
#define IDS_MPLAYERC_102                32979
#define IDS_MPLAYERC_103                32980
#define IDS_AG_DISPLAY_STATS            32981
#define IDS_AG_SEEKSET                  32982
#define IDS_PPAGEWEBSERVER_0            32996
#define IDS_MAINFRM_2                   33014
#define IDS_AG_SUBTITLES_SAVED          33015
#define IDS_MAINFRM_4                   33016
#define IDS_AG_FRAMERATE                33017
#define IDS_MAINFRM_6                   33018
#define IDS_AG_FRAMES                   33019
#define IDS_AG_BUFFERS                  33020
#define IDS_MAINFRM_9                   33021
#define IDS_MAINFRM_10                  33022
#define IDS_MAINFRM_11                  33023
#define IDS_AG_TITLE                    33024
#define IDS_MAINFRM_16                  33025
#define IDS_MAINFRM_17                  33026
#define IDS_MAINFRM_18                  33027
#define IDS_MAINFRM_19                  33028
#define IDS_MAINFRM_20                  33029
#define IDS_MAINFRM_21                  33030
#define IDS_MAINFRM_22                  33031
#define IDS_MAINFRM_23                  33032
#define IDS_AG_ASPECT_RATIO             33045
#define IDS_MAINFRM_37                  33046
#define IDS_MAINFRM_38                  33047
#define IDS_MAINFRM_39                  33048
#define IDS_MAINFRM_40                  33049
#define IDS_MAINFRM_41                  33050
#define IDS_MAINFRM_42                  33051
#define IDS_AG_ERROR                    33052
#define IDS_SUBTITLE_STREAM_OFF         33053
#define IDS_SUBTITLE_STREAM             33054
#define IDS_MAINFRM_46                  33055
#define IDS_SUB_LOADED_SUCCESS          33056
#define IDS_ALL_FILES_FILTER            33057
#define IDS_GETDIB_FAILED               33058
#define IDS_GETCURRENTIMAGE_FAILED      33059
#define IDS_SCREENSHOT_ERROR            33060
#define IDS_THUMBNAILS_NO_DURATION      33061
#define IDS_THUMBNAILS_NO_FRAME_SIZE    33062
#define IDS_OUT_OF_MEMORY               33063
#define IDS_THUMBNAILS_INVALID_FORMAT   33064
#define IDS_THUMBNAILS_INFO_FILESIZE    33065
#define IDS_THUMBNAILS_INFO_HEADER      33066
#define IDS_THUMBNAIL_TOO_SMALL         33067
#define IDS_CANNOT_LOAD_SUB             33068
#define IDS_SUBTITLE_FILES_FILTER       33069
#define IDS_MAINFRM_68                  33075
#define IDS_MAINFRM_69                  33076
#define IDS_MAINFRM_70                  33077
#define IDS_AG_CHAPTER                  33078
#define IDS_AG_OUT_OF_MEMORY            33081
#define IDS_MAINFRM_77                  33082
#define IDS_MAINFRM_78                  33083
#define IDS_MAINFRM_80                  33084
#define IDS_MAINFRM_81                  33085
#define IDS_MAINFRM_82                  33086
#define IDS_MAINFRM_83                  33087
#define IDS_MAINFRM_84                  33088
#define IDS_MAINFRM_86                  33089
#define IDS_MAINFRM_87                  33090
#define IDS_MAINFRM_88                  33091
#define IDS_MAINFRM_89                  33092
#define IDS_MAINFRM_90                  33093
#define IDS_MAINFRM_91                  33094
#define IDS_MAINFRM_92                  33095
#define IDS_MAINFRM_93                  33096
#define IDS_MAINFRM_94                  33097
#define IDS_AG_FAILED                   33098
#define IDS_MAINFRM_96                  33099
#define IDS_MAINFRM_98                  33100
#define IDS_MAINFRM_99                  33101
#define IDS_MAINFRM_108                 33106
#define IDS_AG_SOUND                    33107
#define IDS_MAINFRM_114                 33108
#define IDS_AG_ABORTED                  33109
#define IDS_MAINFRM_116                 33110
#define IDS_MAINFRM_117                 33111
#define IDS_AG_UNKNOWN_STREAM           33112
#define IDS_AG_UNKNOWN                  33113
#define IDS_AG_VSYNC                    33114
#define IDS_MAINFRM_121                 33115
#define IDS_MAINFRM_122                 33116
#define IDS_DVD_SUBTITLES_ENABLE        33117
#define IDS_AG_ANGLE                    33118
#define IDS_AG_VSYNCOFFSET_INCREASE     33119
#define IDS_AG_DISABLED                 33120
#define IDS_AG_VSYNCOFFSET_DECREASE     33121
#define IDS_MAINFRM_136                 33126
#define IDS_MAINFRM_137                 33127
#define IDS_MAINFRM_138                 33128
#define IDS_VOLUME_BOOST_INC            33129
#define IDS_VOLUME_BOOST_DEC            33130
#define IDS_VOLUME_BOOST_MIN            33131
#define IDS_VOLUME_BOOST_MAX            33132
#define IDS_USAGE                       33133
#define IDS_UNKNOWN_SWITCH              33134
#define IDS_ADD_TO_PLAYLIST             33161
#define IDS_OPEN_WITH_MPC               33162
#define IDS_CANNOT_CHANGE_FORMAT        33163
#define IDS_APP_DESCRIPTION             33164
#define IDS_MAINFRM_12                  33165
#define IDS_MAINFRM_13                  33166
#define IDS_D3DFS_WARNING               33190
#define IDS_MAINFRM_139                 33191
#define IDS_AG_TITLE2                   33192
#define IDS_REALVIDEO_INCOMPATIBLE      33193
#define IDS_THUMB_ROWNUMBER             33195
#define IDS_THUMB_COLNUMBER             33196
#define IDS_THUMB_IMAGE_WIDTH           33197
#define IDS_PPSDB_URLCORRECT            33198
#define IDS_PPSDB_PROTOCOLERR           33199
#define IDS_PPSDB_BADURL                33200
#define IDS_AG_CHAPTER2                 33201
#define IDS_VOLUME_OSD                  33202
#define IDS_BOOST_OSD                   33203
#define IDS_BALANCE_OSD                 33204
#define IDS_FULLSCREENMONITOR_CURRENT   33205
#define IDS_MPC_CRASH                   33206
#define IDS_MPC_MINIDUMP_FAIL           33207
#define ID_FILE_OPENDIRECTORY           33208
#define IDS_MAINFRM_DIR_TITLE           33209
#define IDS_MAINFRM_DIR_CHECK           33210
#define IDS_AG_PAUSE                    33212
#define IDS_AG_TOGGLE_CAPTION           33213
#define IDS_AG_TOGGLE_SEEKER            33214
#define IDS_AG_TOGGLE_CONTROLS          33215
#define IDS_AG_TOGGLE_INFO              33216
#define IDS_AG_TOGGLE_STATS             33217
#define IDS_AG_TOGGLE_STATUS            33218
#define IDS_AG_TOGGLE_SUBRESYNC         33219
#define IDS_AG_TOGGLE_PLAYLIST          33220
#define IDS_AG_TOGGLE_CAPTURE           33221
#define IDS_AG_TOGGLE_DEBUGSHADERS      33222
#define IDS_AG_ZOOM_50                  33223
#define IDS_AG_ZOOM_100                 33224
#define IDS_AG_ZOOM_200                 33225
#define IDS_AG_NEXT_AR_PRESET           33226
#define IDS_AG_VIDFRM_STRETCH           33227
#define IDS_AG_VIDFRM_INSIDE            33228
#define IDS_AG_VIDFRM_OUTSIDE           33229
#define IDS_AG_PNS_RESET                33230
#define IDS_AG_PNS_ROTATEX_P            33231
#define IDS_AG_PNS_ROTATEX_M            33232
#define IDS_AG_PNS_ROTATEY_P            33233
#define IDS_AG_PNS_ROTATEY_M            33234
#define IDS_AG_PNS_ROTATEZ_P            33235
#define IDS_AG_PNS_ROTATEZ_M            33236
#define IDS_AG_TEARING_TEST             33237
#define IDS_SCALE_16_9                  33239
#define IDS_SCALE_WIDESCREEN            33240
#define IDS_SCALE_ULTRAWIDE             33241
#define IDS_PLAYLIST_HIDEFS             33242
#define ID_VIEW_VSYNC                   33243
#define ID_VIEW_VSYNCOFFSET             33245
#define ID_VIEW_VSYNCOFFSET_DECREASE    33246
#define ID_VIEW_VSYNCOFFSET_INCREASE    33247
#define IDS_AG_TOGGLE_NAVIGATION        33248
#define ID_VIEW_VSYNCACCURATE           33260
#define IDS_AG_VSYNCACCURATE            33261
#define ID_VIEW_FULLSCREENGUISUPPORT    33263
#define ID_VIEW_HIGHCOLORRESOLUTION     33264
#define ID_VIEW_ENABLEFRAMETIMECORRECTION 33265
#define ID_VIEW_EVROUTPUTRANGE          33269
#define ID_VIEW_EVROUTPUTRANGE_0_255    33273
#define ID_VIEW_EVROUTPUTRANGE_16_235   33274
#define IDS_AG_ENABLEFRAMETIMECORRECTION 33275
#define IDS_AG_TOGGLE_EDITLISTEDITOR    33277
#define IDS_AG_EDL_IN                   33278
#define IDS_AG_EDL_OUT                  33279
#define IDS_AG_EDL_NEW_CLIP             33280
#define ID_RECENT_FILES                 33281
#define ID_RECENT_FILES_CLEAR           33282
#define IDS_RECENT_FILES_CLEAR          33283
#define IDS_RECENT_FILES_QUESTION       33284
#define ID_VIEW_FLUSHGPU_BEFOREVSYNC    33286
#define ID_VIEW_FLUSHGPU_AFTERPRESENT   33287
#define ID_VIEW_FLUSHGPU_WAIT           33288
#define ID_VIEW_D3DFULLSCREEN           33289
#define ID_VIEW_DISABLEDESKTOPCOMPOSITION 33290
#define ID_VIEW_ALTERNATIVEVSYNC        33291
#define ID_VIEW_RESET_DEFAULT           33292
#define ID_VIEW_RESET_OPTIMAL           33293
#define IDS_AG_EDL_SAVE                 33294
#define ID_RECENT_FILE_START            33300
#define ID_RECENT_FILE_END              33399
#define IDC_RESETDEVICE                 33400
#define IDS_NAVIGATE_TUNERSCAN          33401
#define IDS_SUBTITLES_ERROR             33402
#define IDC_CHECK_WIN7                  33403
#define ID_VIEW_RESETSTATS              33405
#define ID_VIEW_SYNCHRONIZEVIDEO        33408
#define ID_VIEW_SYNCHRONIZEDISPLAY      33409
#define ID_VIEW_SYNCHRONIZENEAREST      33410
#define ID_VIEW_NAVIGATION              33415
#define IDS_AG_VIDFRM_ZOOM1             33419
#define IDS_AG_VIDFRM_ZOOM2             33420
#define IDS_AG_VIDFRM_SWITCHZOOM        33422
#define IDS_ENABLE_ALL_FILTERS          33423
#define IDS_DISABLE_ALL_FILTERS         33424
#define IDS_ENABLE_AUDIO_FILTERS        33425
#define IDS_DISABLE_AUDIO_FILTERS       33426
#define IDS_ENABLE_VIDEO_FILTERS        33427
#define IDS_DISABLE_VIDEO_FILTERS       33428
#define IDS_STRETCH_TO_WINDOW           33429
#define IDS_TOUCH_WINDOW_FROM_INSIDE    33430
#define IDS_ZOOM1                       33431
#define IDS_ZOOM2                       33432
#define IDS_TOUCH_WINDOW_FROM_OUTSIDE   33433
#define IDS_AUDIO_STREAM                33434
#define IDS_AG_REOPEN                   33435
#define IDS_TIME_TOOLTIP_ABOVE          33440
#define IDS_TIME_TOOLTIP_BELOW          33441
#define IDS_VIDEO_STREAM                33442
#define IDS_APPLY                       33443
#define IDS_CLEAR                       33444
#define IDS_CANCEL                      33445
#define IDS_THUMB_THUMBNAILS            33446
#define IDS_THUMB_PIXELS                33447
#define IDS_TEXTFILE_ENC                33448
#define IDS_MFMT_AVI                    39001
#define IDS_MFMT_MPEG                   39002
#define IDS_MFMT_MPEGTS                 39003
#define IDS_MFMT_DVDVIDEO               39004
#define IDS_MFMT_MKV                    39005
#define IDS_MFMT_WEBM                   39006
#define IDS_MFMT_MP4                    39007
#define IDS_MFMT_MOV                    39008
#define IDS_MFMT_3GP                    39009
#define IDS_MFMT_3G2                    39010
#define IDS_MFMT_FLV                    39011
#define IDS_MFMT_OGM                    39012
#define IDS_MFMT_RM                     39013
#define IDS_MFMT_RT                     39014
#define IDS_MFMT_WMV                    39015
#define IDS_MFMT_BINK                   39018
#define IDS_MFMT_FLIC                   39019
#define IDS_MFMT_DSM                    39020
#define IDS_MFMT_IVF                    39021
#define IDS_MFMT_OTHER                  39401
#define IDS_MFMT_SWF                    39403
#define IDS_MFMT_OTHER_AUDIO            39404
#define IDS_MFMT_AC3                    39501
#define IDS_MFMT_AIFF                   39502
#define IDS_MFMT_ALAC                   39503
#define IDS_MFMT_AMR                    39504
#define IDS_MFMT_APE                    39505
#define IDS_MFMT_AU                     39506
#define IDS_MFMT_CDA                    39507
#define IDS_MFMT_FLAC                   39508
#define IDS_MFMT_M4A                    39509
#define IDS_MFMT_MIDI                   39510
#define IDS_MFMT_MKA                    39511
#define IDS_MFMT_MP3                    39512
#define IDS_MFMT_MPA                    39513
#define IDS_MFMT_MPC                    39514
#define IDS_MFMT_OFR                    39515
#define IDS_MFMT_OGG                    39516
#define IDS_MFMT_RA                     39517
#define IDS_MFMT_TAK                    39518
#define IDS_MFMT_TTA                    39519
#define IDS_MFMT_WAV                    39520
#define IDS_MFMT_WMA                    39521
#define IDS_MFMT_WV                     39522
#define IDS_MFMT_OPUS                   39523
#define IDS_MFMT_PLS                    39901
#define IDS_MFMT_BDPLS                  39902
#define IDS_MFMT_RAR                    39903
#define IDTB_BUTTON1                    40001
#define IDTB_BUTTON2                    40002
#define IDTB_BUTTON3                    40003
#define IDTB_BUTTON4                    40004
#define IDTB_BUTTON5                    40005
#define IDR_TB_PLAY                     41001
#define IDR_TB_PAUSE                    41002
#define IDR_TB_STOP                     41003
#define IDS_FRONT_LEFT                  41006
#define IDS_FRONT_RIGHT                 41007
#define IDS_FRONT_CENTER                41008
#define IDS_LOW_FREQUENCY               41009
#define IDS_BACK_LEFT                   41010
#define IDS_BACK_RIGHT                  41011
#define IDS_FRONT_LEFT_OF_CENTER        41012
#define IDS_FRONT_RIGHT_OF_CENTER       41013
#define IDS_BACK_CENTER                 41014
#define IDS_SIDE_LEFT                   41015
#define IDS_SIDE_RIGHT                  41016
#define IDS_TOP_CENTER                  41017
#define IDS_TOP_FRONT_LEFT              41018
#define IDS_TOP_FRONT_CENTER            41019
#define IDS_TOP_FRONT_RIGHT             41020
#define IDS_TOP_BACK_LEFT               41021
#define IDS_TOP_BACK_CENTER             41022
#define IDS_TOP_BACK_RIGHT              41023
#define IDS_LOGO_AUTHOR                 41024
#define IDC_RESTORERESCHECK             41025
#define IDS_NO_MORE_MEDIA               41026
#define IDS_FIRST_IN_FOLDER             41027
#define IDS_LAST_IN_FOLDER              41028
#define IDS_FAVORITES_QUICKADDFAVORITE  41105
#define IDS_DVB_CHANNEL_NUMBER          41109
#define IDS_DVB_CHANNEL_NAME            41110
#define IDS_DVB_CHANNEL_FREQUENCY       41111
#define IDS_DVB_CHANNEL_ENCRYPTION      41112
#define IDS_DVB_CHANNEL_ENCRYPTED       41113
#define IDS_DVB_CHANNEL_NOT_ENCRYPTED   41114
#define IDS_DVB_CHANNEL_START_SCAN      41115
#define IDS_DVB_CHANNEL_STOP_SCAN       41116
#define IDS_DVB_TVNAV_SEERADIO          41117
#define IDS_DVB_TVNAV_SEETV             41118
#define IDS_DVB_CHANNEL_FORMAT          41119
#define IDS_DVB_CHANNEL_FPS             41120
#define IDS_DVB_CHANNEL_RESOLUTION      41121
#define IDS_DVB_CHANNEL_ASPECT_RATIO    41122
#define IDS_OSD_RS_VSYNC_ON             41200
#define IDS_OSD_RS_VSYNC_OFF            41201
#define IDS_OSD_RS_ACCURATE_VSYNC_ON    41202
#define IDS_OSD_RS_ACCURATE_VSYNC_OFF   41203
#define IDS_OSD_RS_SYNC_TO_DISPLAY_ON   41204
#define IDS_OSD_RS_SYNC_TO_DISPLAY_OFF  41205
#define IDS_OSD_RS_SYNC_TO_VIDEO_ON     41206
#define IDS_OSD_RS_SYNC_TO_VIDEO_OFF    41207
#define IDS_OSD_RS_PRESENT_NEAREST_ON   41208
#define IDS_OSD_RS_PRESENT_NEAREST_OFF  41209
#define IDS_OSD_RS_COLOR_MANAGEMENT_ON  41210
#define IDS_OSD_RS_COLOR_MANAGEMENT_OFF 41211
#define IDS_OSD_RS_INPUT_TYPE_AUTO      41212
#define IDS_OSD_RS_INPUT_TYPE_HDTV      41213
#define IDS_OSD_RS_INPUT_TYPE_SD_NTSC   41214
#define IDS_OSD_RS_INPUT_TYPE_SD_PAL    41215
#define IDS_OSD_RS_AMBIENT_LIGHT_BRIGHT 41216
#define IDS_OSD_RS_AMBIENT_LIGHT_DIM    41217
#define IDS_OSD_RS_AMBIENT_LIGHT_DARK   41218
#define IDS_OSD_RS_REND_INTENT_PERCEPT  41219
#define IDS_OSD_RS_REND_INTENT_RELATIVE 41220
#define IDS_OSD_RS_REND_INTENT_SATUR    41221
#define IDS_OSD_RS_REND_INTENT_ABSOLUTE 41222
#define IDS_OSD_RS_OUTPUT_RANGE         41223
#define IDS_OSD_RS_FLUSH_BEF_VSYNC_ON   41224
#define IDS_OSD_RS_FLUSH_BEF_VSYNC_OFF  41225
#define IDS_OSD_RS_FLUSH_AFT_PRES_ON    41226
#define IDS_OSD_RS_FLUSH_AFT_PRES_OFF   41227
#define IDS_OSD_RS_WAIT_ON              41228
#define IDS_OSD_RS_WAIT_OFF             41229
#define IDS_OSD_RS_D3D_FULLSCREEN_ON    41230
#define IDS_OSD_RS_D3D_FULLSCREEN_OFF   41231
#define IDS_OSD_RS_NO_DESKTOP_COMP_ON   41232
#define IDS_OSD_RS_NO_DESKTOP_COMP_OFF  41233
#define IDS_OSD_RS_ALT_VSYNC_ON         41234
#define IDS_OSD_RS_ALT_VSYNC_OFF        41235
#define IDS_OSD_RS_RESET_DEFAULT        41236
#define IDS_OSD_RS_RESET_OPTIMAL        41237
#define IDS_OSD_RS_D3D_FS_GUI_SUPP_ON   41238
#define IDS_OSD_RS_D3D_FS_GUI_SUPP_OFF  41239
#define IDS_OSD_RS_10BIT_RBG_OUT_ON     41240
#define IDS_OSD_RS_10BIT_RBG_OUT_OFF    41241
#define IDS_OSD_RS_10BIT_RBG_IN_ON      41242
#define IDS_OSD_RS_10BIT_RBG_IN_OFF     41243
#define IDS_OSD_RS_FULL_FP_PROCESS_ON   41244
#define IDS_OSD_RS_FULL_FP_PROCESS_OFF  41245
#define IDS_OSD_RS_HALF_FP_PROCESS_ON   41246
#define IDS_OSD_RS_HALF_FP_PROCESS_OFF  41247
#define IDS_OSD_RS_FT_CORRECTION_ON     41248
#define IDS_OSD_RS_FT_CORRECTION_OFF    41249
#define IDS_OSD_RS_TARGET_VSYNC_OFFSET  41250
#define IDS_OSD_RS_VSYNC_OFFSET         41251
#define IDS_OSD_SPEED                   41252
#define IDS_OSD_THUMBS_SAVED            41253
#define IDS_MENU_VIDEO_STREAM           41254
#define IDS_MENU_VIDEO_ANGLE            41255
#define IDS_RESET_SETTINGS              41256
#define IDS_RESET_SETTINGS_WARNING      41257
#define IDS_RESET_SETTINGS_MUTEX        41258
#define IDS_EXPORT_SETTINGS             41259
#define IDS_EXPORT_SETTINGS_WARNING     41260
#define IDS_EXPORT_SETTINGS_SUCCESS     41261
#define IDS_EXPORT_SETTINGS_FAILED      41262
#define IDS_BDA_ERROR                   41263
#define IDS_BDA_ERROR_CREATE_TUNER      41264
#define IDS_BDA_ERROR_CREATE_RECEIVER   41265
#define IDS_BDA_ERROR_CONNECT_NW_TUNER  41266
#define IDS_BDA_ERROR_CONNECT_TUNER_REC 41267
#define IDS_BDA_ERROR_CONNECT_TUNER     41268
#define IDS_BDA_ERROR_DEMULTIPLEXER     41269
#define IDS_GOTO_ERROR_PARSING_TIME     41270
#define IDS_GOTO_ERROR_PARSING_TEXT     41271
#define IDS_GOTO_ERROR_PARSING_FPS      41272
#define IDS_FRAME_STEP_ERROR_RENDERER   41273
#define IDS_SCREENSHOT_ERROR_REAL       41274
#define IDS_SCREENSHOT_ERROR_QT         41275
#define IDS_SCREENSHOT_ERROR_SHOCKWAVE  41276
#define IDS_SCREENSHOT_ERROR_OVERLAY    41277
#define IDS_SUBDL_DLG_CONNECT_ERROR     41278
#define IDS_MB_SHOW_EDL_EDITOR          41279
#define IDS_CAPTURE_ERROR               41280
#define IDS_CAPTURE_ERROR_VIDEO         41281
#define IDS_CAPTURE_ERROR_AUDIO         41282
#define IDS_CAPTURE_ERROR_ADD_BUFFER    41283
#define IDS_CAPTURE_ERROR_CONNECT_BUFF  41284
#define IDS_CAPTURE_ERROR_ADD_ENCODER   41285
#define IDS_CAPTURE_ERROR_CONNECT_ENC   41286
#define IDS_CAPTURE_ERROR_COMPRESSION   41287
#define IDS_CAPTURE_ERROR_MULTIPLEXER   41288
#define IDS_CAPTURE_ERROR_VID_CAPT_PIN  41289
#define IDS_CAPTURE_ERROR_AUD_CAPT_PIN  41290
#define IDS_CAPTURE_ERROR_OUT_FILE      41291
#define IDS_CAPTURE_ERROR_AUD_OUT_FILE  41292
#define IDS_SUBRESYNC_TIME_FORMAT       41293
#define IDS_EXTERNAL_FILTERS_ERROR_MT   41294
#define IDS_WEBSERVER_ERROR_TEST        41295
#define IDS_AFTERPLAYBACK_CLOSE         41296
#define IDS_AFTERPLAYBACK_STANDBY       41297
#define IDS_AFTERPLAYBACK_HIBERNATE     41298
#define IDS_AFTERPLAYBACK_SHUTDOWN      41299
#define IDS_AFTERPLAYBACK_LOGOFF        41300
#define IDS_AFTERPLAYBACK_LOCK          41301
#define IDS_AFTERPLAYBACK_MONITOROFF    41302
#define IDS_AFTERPLAYBACK_PLAYNEXT      41303
#define IDS_AFTERPLAYBACK_DONOTHING     41304
#define IDS_OSD_BRIGHTNESS              41305
#define IDS_OSD_CONTRAST                41306
#define IDS_OSD_HUE                     41307
#define IDS_OSD_SATURATION              41308
#define IDS_OSD_RESET_COLOR             41309
#define IDS_OSD_NO_COLORCONTROL         41310
#define IDS_BRIGHTNESS_INC              41311
#define IDS_BRIGHTNESS_DEC              41312
#define IDS_CONTRAST_INC                41313
#define IDS_CONTRAST_DEC                41314
#define IDS_HUE_INC                     41315
#define IDS_HUE_DEC                     41316
#define IDS_SATURATION_INC              41317
#define IDS_SATURATION_DEC              41318
#define IDS_RESET_COLOR                 41319
#define ID_HELP_CHECKFORUPDATE          41321
#define IDS_USING_LATEST_STABLE         41322
#define IDS_USING_NEWER_VERSION         41323
#define IDS_NEW_UPDATE_AVAILABLE        41324
#define IDS_UPDATE_ERROR                41325
#define IDS_UPDATE_CLOSE                41326
#define IDS_OSD_ZOOM                    41327
#define IDS_OSD_ZOOM_AUTO               41328
#define IDS_CUSTOM_CHANNEL_MAPPING      41329
#define IDS_OSD_CUSTOM_CH_MAPPING_ON    41330
#define IDS_OSD_CUSTOM_CH_MAPPING_OFF   41331
#define IDS_NORMALIZE                   41332
#define IDS_OSD_NORMALIZE_ON            41333
#define IDS_OSD_NORMALIZE_OFF           41334
#define IDS_REGAIN_VOLUME               41335
#define IDS_OSD_REGAIN_VOLUME_ON        41336
#define IDS_OSD_REGAIN_VOLUME_OFF       41337
#define IDS_SIZE_UNIT_BYTES             41338
#define IDS_SIZE_UNIT_K                 41339
#define IDS_SIZE_UNIT_M                 41340
#define IDS_SIZE_UNIT_G                 41341
#define IDS_SPEED_UNIT_K                41342
#define IDS_SPEED_UNIT_M                41343
#define IDS_SPEED_UNIT_G                41344
#define IDS_FILE_FAV_ADDED              41345
#define IDS_DVD_FAV_ADDED               41346
#define IDS_CAPTURE_SETTINGS            41347
#define IDS_NAVIGATION_BAR              41348
#define IDS_SUBRESYNC_CAPTION           41350
#define IDS_SUBRESYNC_CLN_TIME          41351
#define IDS_SUBRESYNC_CLN_END           41352
#define IDS_SUBRESYNC_CLN_PREVIEW       41353
#define IDS_SUBRESYNC_CLN_VOB_ID        41354
#define IDS_SUBRESYNC_CLN_CELL_ID       41355
#define IDS_SUBRESYNC_CLN_FORCED        41356
#define IDS_SUBRESYNC_CLN_TEXT          41357
#define IDS_SUBRESYNC_CLN_STYLE         41358
#define IDS_SUBRESYNC_CLN_FONT          41359
#define IDS_SUBRESYNC_CLN_CHARSET       41360
#define IDS_SUBRESYNC_CLN_UNICODE       41361
#define IDS_SUBRESYNC_CLN_LAYER         41362
#define IDS_SUBRESYNC_CLN_ACTOR         41363
#define IDS_SUBRESYNC_CLN_EFFECT        41364
#define IDS_PLAYLIST_CAPTION            41365
#define IDS_PPAGE_FS_CLN_ON_OFF         41366
#define IDS_PPAGE_FS_CLN_FROM_FPS       41367
#define IDS_PPAGE_FS_CLN_TO_FPS         41368
#define IDS_PPAGE_FS_CLN_DISPLAY_MODE   41369
#define IDS_PPAGE_FS_DEFAULT            41370
#define IDS_PPAGE_FS_OTHER              41371
#define IDS_PPAGE_OUTPUT_SYS_DEF        41372
#define IDS_GRAPH_INTERFACES_ERROR      41373
#define IDS_GRAPH_TARGET_WND_ERROR      41374
#define IDS_DVD_NAV_ALL_PINS_ERROR      41375
#define IDS_DVD_NAV_SOME_PINS_ERROR     41376
#define IDS_DVD_INTERFACES_ERROR        41377
#define IDS_CAPTURE_LIVE                41378
#define IDS_CAPTURE_ERROR_VID_FILTER    41379
#define IDS_CAPTURE_ERROR_AUD_FILTER    41380
#define IDS_CAPTURE_ERROR_DEVICE        41381
#define IDS_INVALID_PARAMS_ERROR        41382
#define IDS_EDIT_LIST_EDITOR            41383
#define IDS_GOTO_ERROR_INVALID_TIME     41384
#define IDS_MISSING_ICONS_LIB           41386
#define IDS_SUBDL_DLG_FILENAME_COL      41387
#define IDS_SUBDL_DLG_LANGUAGE_COL      41388
#define IDS_SUBDL_DLG_FORMAT_COL        41389
#define IDS_SUBDL_DLG_DISC_COL          41390
#define IDS_SUBDL_DLG_TITLES_COL        41391
#define IDS_SUBDL_DLG_DOWNLOADING       41392
#define IDS_SUBDL_DLG_PARSING           41393
#define IDS_SUBDL_DLG_NOT_FOUND         41394
#define IDS_SUBDL_DLG_SUBS_AVAIL        41395
#define IDS_UPDATE_CONFIG_AUTO_CHECK    41396
#define IDS_ZOOM_50                     41397
#define IDS_ZOOM_100                    41398
#define IDS_ZOOM_200                    41399
#define IDS_ZOOM_AUTOFIT                41400
#define IDS_ZOOM_AUTOFIT_LARGER         41401
#define IDS_AG_ZOOM_AUTO_FIT_LARGER     41402
#define IDS_OSD_ZOOM_AUTO_LARGER        41403
#define IDS_TOOLTIP_EXPLORE_TO_FILE     41404
#define IDS_TOOLTIP_REMAINING_TIME      41405
#define IDS_UPDATE_DELAY_ERROR_TITLE    41406
#define IDS_UPDATE_DELAY_ERROR_MSG      41407
#define IDS_AUDIOSWITCHER               41408
#define IDS_ICONS_REASSOC_DLG_TITLE     41409
#define IDS_ICONS_REASSOC_DLG_INSTR     41410
#define IDS_ICONS_REASSOC_DLG_CONTENT   41411
#define IDS_PPAGE_OUTPUT_OLDRENDERER    41412
#define IDS_PPAGE_OUTPUT_OVERLAYMIXER   41413
#define IDS_PPAGE_OUTPUT_VMR7WINDOWED   41414
#define IDS_PPAGE_OUTPUT_VMR9WINDOWED   41415
#define IDS_PPAGE_OUTPUT_VMR7RENDERLESS 41416
#define IDS_PPAGE_OUTPUT_VMR9RENDERLESS 41417
#define IDS_PPAGE_OUTPUT_EVR            41418
#define IDS_PPAGE_OUTPUT_EVR_CUSTOM     41419
#define IDS_PPAGE_OUTPUT_DXR            41420
#define IDS_PPAGE_OUTPUT_NULL_COMP      41421
#define IDS_PPAGE_OUTPUT_NULL_UNCOMP    41422
#define IDS_PPAGE_OUTPUT_MADVR          41423
#define IDS_PPAGE_OUTPUT_SYNC           41424
#define IDS_MPC_BUG_REPORT_TITLE        41425
#define IDS_MPC_BUG_REPORT              41426
#define IDS_PPAGE_OUTPUT_SURF_OFFSCREEN 41427
#define IDS_PPAGE_OUTPUT_SURF_2D        41428
#define IDS_PPAGE_OUTPUT_SURF_3D        41429
#define IDS_PPAGE_OUTPUT_RESIZE_NN      41430
#define IDS_PPAGE_OUTPUT_RESIZER_BILIN  41431
#define IDS_PPAGE_OUTPUT_RESIZER_BIL_PS 41432
#define IDS_PPAGE_OUTPUT_RESIZER_BICUB1 41433
#define IDS_PPAGE_OUTPUT_RESIZER_BICUB2 41434
#define IDS_PPAGE_OUTPUT_RESIZER_BICUB3 41435
#define IDS_PPAGE_OUTPUT_UNAVAILABLE    41436
#define IDS_PPAGE_OUTPUT_UNAVAILABLEMSG 41437
#define IDS_PPAGE_OUTPUT_AUD_NULL_COMP  41438
#define IDS_PPAGE_OUTPUT_AUD_NULL_UNCOMP 41439
#define IDS_PPAGE_OUTPUT_AUD_MPC_HC_REND 41440
#define IDS_EMB_RESOURCES_VIEWER_NAME   41441
#define IDS_EMB_RESOURCES_VIEWER_TYPE   41442
#define IDS_EMB_RESOURCES_VIEWER_INFO   41443
#define IDS_DOWNLOAD_SUBS               41444
#define IDS_SUBFILE_DELAY               41448
#define IDS_SPEEDSTEP_AUTO              41449
#define IDS_EXPORT_SETTINGS_NO_KEYS     41450
#define IDS_RFS_NO_FILES                41451
#define IDS_RFS_COMPRESSED              41452
#define IDS_RFS_ENCRYPTED               41453
#define IDS_RFS_MISSING_VOLS            41454
#define IDS_OSD_D3DFS_REMINDER          41455
#define IDS_LANG_PREF_EXAMPLE           41456
#define IDS_OVERRIDE_EXT_SPLITTER_CHOICE 41457
#define IDC_SPLITTER_CONF               41458
#define IDC_VIDEO_DEC_CONF              41459
#define IDC_AUDIO_DEC_CONF              41460
#define IDS_NAVIGATE_BD_PLAYLISTS       41461
#define IDS_NAVIGATE_PLAYLIST           41462
#define IDS_NAVIGATE_CHAPTERS           41463
#define IDS_NAVIGATE_TITLES             41464
#define IDS_NAVIGATE_CHANNELS           41465
#define IDS_PPAGE_CAPTURE_FG0           57345
#define IDS_PPAGE_CAPTURE_FG1           57346
#define IDS_PPAGE_CAPTURE_FG2           57347
#define IDS_PPAGE_CAPTURE_FGDESC0       57348
#define IDS_PPAGE_CAPTURE_FGDESC1       57349
#define IDS_PPAGE_CAPTURE_FGDESC2       57350
#define IDS_PPAGE_CAPTURE_SFG0          57351
#define IDS_PPAGE_CAPTURE_SFG1          57352
#define IDS_PPAGE_CAPTURE_SFG2          57353
#define IDS_INFOBAR_PARENTAL_RATING     57354
#define IDS_PARENTAL_RATING             57355
#define IDS_NO_PARENTAL_RATING          57356
#define IDS_INFOBAR_CONTENT             57357
#define IDS_CONTENT_MOVIE_DRAMA         57358
#define IDS_CONTENT_NEWS_CURRENTAFFAIRS 57359
#define IDS_CONTENT_SHOW_GAMESHOW       57360
#define IDS_CONTENT_SPORTS              57361
#define IDS_CONTENT_CHILDREN_YOUTH_PROG 57362
#define IDS_CONTENT_MUSIC_BALLET_DANCE  57363
#define IDS_CONTENT_MUSIC_ART_CULTURE   57364
#define IDS_CONTENT_SOCIAL_POLITICAL_ECO 57365
#define IDS_CONTENT_LEISURE             57366
#define IDS_FILE_RECYCLE                57367
#define IDS_AG_SAVE_COPY                57368
#define IDS_FASTSEEK_LATEST             57369
#define IDS_FASTSEEK_NEAREST            57370
#define IDS_HOOKS_FAILED                57371
#define IDS_PPAGEFULLSCREEN_SHOWNEVER   57372
#define IDS_PPAGEFULLSCREEN_SHOWMOVED   57373
#define IDS_PPAGEFULLSCREEN_SHOHHOVERED 57374
#define IDS_MAINFRM_PRE_SHADERS_FAILED  57375
#define IDS_MAINFRM_POST_SHADERS_FAILED 57376
#define IDS_MAINFRM_BOTH_SHADERS_FAILED 57377
#define IDS_DEBUGSHADERS_FIRSTRUN_MSG   57378
#define IDS_SHADER_DLL_ERR_0            57379
#define IDS_SHADER_DLL_ERR_1            57380
#define IDS_OSD_SHADERS_PRESET          57381
#define ID_SHADERS_PRESET_NEXT          57382
#define IDS_AG_SHADERS_PRESET_NEXT      57383
#define ID_SHADERS_PRESET_PREV          57384
#define IDS_AG_SHADERS_PRESET_PREV      57385
#define IDS_STRING_COLON                57386
#define IDS_RECORD_START                57387
#define IDS_RECORD_STOP                 57388
#define IDS_BALANCE                     57389
#define IDS_BALANCE_L                   57390
#define IDS_BALANCE_R                   57391
#define IDS_VOLUME                      57392
#define IDS_BOOST                       57393
#define IDS_PLAYLIST_ADDFOLDER          57394
#define IDS_HW_INDICATOR                57395
#define IDS_TOOLTIP_SOFTWARE_DECODING   57396
#define IDS_STATSBAR_PLAYBACK_RATE      57397
#define IDS_FILTERS_COPY_TO_CLIPBOARD   57398
#define IDS_CREDENTIALS_SERVER          57399
#define IDS_CREDENTIALS_CONNECT         57400
#define IDS_SUB_SAVE_EXTERNAL_STYLE_FILE 57401
#define IDS_CONTENT_EDUCATION_SCIENCE   57402
#define IDS_PPAGEADVANCED_HIDE_WINDOWED 57403
#define IDS_PPAGEADVANCED_BLOCK_VSFILTER 57404
#define IDS_PPAGEADVANCED_COL_NAME      57405
#define IDS_PPAGEADVANCED_COL_VALUE     57406
#define IDS_PPAGEADVANCED_RECENT_FILES_NUMBER 57407
#define IDS_PPAGEADVANCED_FILE_POS_LONGER 57408
#define IDS_PPAGEADVANCED_FILE_POS_AUDIO 57409
#define IDS_AFTER_PLAYBACK_DO_NOTHING   57410
#define IDS_AFTER_PLAYBACK_PLAY_NEXT    57411
#define IDS_AFTER_PLAYBACK_REWIND       57412
#define IDS_AFTER_PLAYBACK_CLOSE        57413
#define IDS_AFTER_PLAYBACK_EXIT         57414
#define IDS_AFTER_PLAYBACK_MONITOROFF   57415
#define IDS_IMAGE_JPEG_QUALITY          57416
#define IDS_IMAGE_QUALITY               57417
#define IDS_PPAGEADVANCED_COVER_SIZE_LIMIT 57418
#define IDS_SUBTITLE_DELAY_STEP_TOOLTIP 57419
#define IDS_HOTKEY_NOT_DEFINED          57420
#define IDS_NAVIGATION_WATCH            57421
#define IDS_NAVIGATION_MOVE_UP          57422
#define IDS_NAVIGATION_MOVE_DOWN        57423
#define IDS_NAVIGATION_SORT             57424
#define IDS_NAVIGATION_REMOVE_ALL       57425
#define IDS_REMOVE_CHANNELS_QUESTION    57426
#define IDS_MEDIAINFO_NO_INFO_AVAILABLE 57427
#define IDS_MEDIAINFO_ANALYSIS_IN_PROGRESS 57428
#define IDS_ASPECT_RATIO_FMT            57429

// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        20017
#define _APS_NEXT_COMMAND_VALUE         33449
#define _APS_NEXT_CONTROL_VALUE         22081
#define _APS_NEXT_SYMED_VALUE           24044
#endif
#endif