app_process.c
45.8 KB
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
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
#include "os_config.h"
#include "c_def.h"
#include "debug.h"
#include "oem.h"
#include "regmap.h"
//#include "audio_pll.h"
#include "hw_da_pp.h"
#include "hw_pll.h"
#include "mem_reloc.h"
#include "message.h"
#include "app_timer.h"
#include "app_main.h"
#include "app_sdram.h"
#include "audio_com.h"
#include "audio_dec.h"
#include "app_media.h"
#include "app_sdram.h"
#include "app_cmd.h"
#include "key_scan.h"
#include "Id3V2.h"
#include "codec.h"
#include "app_dac.h"
#include "app_lcd.h"
#include "app_string_OEM.h"
#include "app_process.h"
#include "app_gpio_oem.h"
#include "app_flash_program.h"
//U32 pre_ticks = 0;
//U32 pre1_ticks = 0;
#if 1//def MP3CD
U16 guiBusy = 0;
U32 pre_ticks = 0;
U32 pre1_ticks = 0;
//U8 randomAllFinish = 0;
extern U16 gwEntryNum;
extern U16 gwFolderNum;
enum {
NO_SKIP_REQUEST,
SKIP_FORWARD,
SKIP_BACKWARD,
FAST_FORWARD,
FAST_BACKWARD
};
ID3_TAG id3_tag;
extern U16 song_information[];
#define MIN_STREAM_SIZE (4096/2)
/****************************************************************************************
* Song Infomation on LCD *
****************************************************************************************/
void app_copy_song_pathname (U16 index)
{
int j = 0;
song_information[j++] = 'c';
song_information[j++] = 'h';
song_information[j++] = 'e';
song_information[j++] = 'c';
song_information[j++] = 'k';
song_information[j++] = '.';
song_information[j++] = '.';
song_information[j++] = '.';
song_information[j++] = 0x0;
song_information[j++] = 0x0;
}
void app_add_song_id3tag (U16 index)
{
#ifndef STORE_ALL_ID3
#if 1//def PHILIPS_320
if (app_main_data.disp_info == DISP_INFO_ARTIST) {
if (entry_id3_flag == ID3_TAG_PRESENT) {
strcpy ((char *) song_information, (const char *) entry_id3_tag.artist);
}
else {
song_information[0] = 0x0;
}
strAddUnicodeNull ( (U8 *) song_information);
}
else if (app_main_data.disp_info == DISP_INFO_TITLE) {
if (entry_id3_flag == ID3_TAG_PRESENT) {
strcpy ((char *) song_information, (const char *) entry_id3_tag.title);
}
else {
song_information[0] = 0x0;
}
strAddUnicodeNull ( (U8 *) song_information);
}
#else
I16 len;
I16 disp_len, cpylen;
return;
/*copy artist tag*/
if ( wstrlen ((U16 *) id3_tag.artist) > 0 ) {
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
song_information[len] = '-';
disp_len = MAX_DISP_LENTH - (len + 1);
cpylen = wstrlen ((U16 *) STRING_ARTIST);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len+1], (U16 *) STRING_ARTIST,cpylen);
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
disp_len = MAX_DISP_LENTH - (len);
cpylen = wstrlen ((U16 *) id3_tag.artist);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len], (U16 *) id3_tag.artist,cpylen);
}
/*copy title tag*/
if (wstrlen ((U16 *) id3_tag.title) > 0) {
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
song_information[len] = '-';
disp_len = MAX_DISP_LENTH - (len + 1);
cpylen = wstrlen ((U16 *) STRING_TITLE);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len+1], (U16 *) STRING_TITLE,cpylen);
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
disp_len = MAX_DISP_LENTH - (len);
cpylen = wstrlen ((U16 *) id3_tag.title);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len], (U16 *) id3_tag.title,cpylen);
}
/*copy album tag*/
if (wstrlen ((U16 *) id3_tag.album) > 0) {
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
song_information[len] = '-';
disp_len = MAX_DISP_LENTH - (len + 1);
cpylen = wstrlen ((U16 *) STRING_ALBUM);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len+1], (U16 *) STRING_ALBUM,cpylen);
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
disp_len = MAX_DISP_LENTH - (len);
cpylen = wstrlen ((U16 *) id3_tag.album);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len], (U16 *) id3_tag.album,cpylen);
}
#ifdef ID3ALL
/*copy genre tag*/
if (wstrlen ((U16 *) id3_tag.genre) > 0) {
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
song_information[len] = '-';
disp_len = MAX_DISP_LENTH - (len + 1);
cpylen = wstrlen ((U16 *) STRING_GENRE);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len+1], (U16 *) STRING_GENRE,cpylen);
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
disp_len = MAX_DISP_LENTH - (len);
cpylen = wstrlen ((U16 *) id3_tag.genre);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len], (U16 *) id3_tag.genre,cpylen);
}
/*copy year tag*/
if (wstrlen ((U16 *) id3_tag.year) > 0) {
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
song_information[len] = '-';
disp_len = MAX_DISP_LENTH - (len + 1);
cpylen = wstrlen ((U16 *) STRING_YEAR);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len+1], (U16 *) STRING_YEAR,cpylen);
len = wstrlen (song_information);
if (len >= MAX_DISP_LENTH -2) {
return;
}
disp_len = MAX_DISP_LENTH - (len);
cpylen = wstrlen ((U16 *) id3_tag.year);
if (cpylen > disp_len) {
cpylen = disp_len;
}
wstrncpy (&song_information[len], (U16 *) id3_tag.year,cpylen);
}
#endif
#endif //PHILIPS_320
#endif //STORE_ALL_ID3
}
//void app_copy_id3tag (U16 index)
//{
//}
/****************************************************************************************/
BOOL isEnoughData (long margin)
{
long len,wlen,pos;
len = AUDIO_FIFO_STREAM_STREAM_LEN();
wlen = AUDIO_FIFO_STREAM_FIFO_WLEN();
pos = AUDIO_FIFO_STREAM_FIFO_RLEN();
if ( (len == wlen) || ((wlen - pos) >= margin) ) {
return TRUE;
}
else {
return FALSE;
}
}
void app_nav_charge_process (UI_MSG *process_msg)
{
}
void app_nav_poweron_keylock_process (UI_MSG *process_msg)
{
}
void app_nav_mp3_process (UI_MSG *process_msg)
{
#if 1
U16 entry,index;
long len,pos;
long start_addr;
I16 i;
ID3_RETURN id3_result;
U8 skip_mode = NO_SKIP_REQUEST;
U16 tmp;
//DBG_Assert (app_main_data.media == MEDIA_USB_DEVICE);
switch (process_msg->parm1)
{
case UI_STREAM_UNDERFLOW:
if (app_main_data.fast_processing != TRUE) {
app_dac_mute_enable ();
app_main_data.playing_stream_status = STREAM_WAITING_DATA;
}
break;
case UI_STREAM_EOF:
#ifdef SD_ENABLE
if((app_main_data.media == MEDIA_USB_DEVICE)||(app_main_data.media == MEDIA_SDMMC))
#else
if (app_main_data.media == MEDIA_USB_DEVICE)
#endif
{
//can not mute,for process has changed,
#if 0
//for usb device, no need to pre read data
app_media_mute_enable ();
break;
#endif
}
break;
case UI_PCM_OUT_UNDERFLOW:
DBG_Printf ("UI_PCM_OUT_UNDERFLOW\n\r");
{
BOOL stream_end = FALSE;
//how to judge wma decoder end
if ( app_main_data.playing_stream_type == STREAM_WMA )
{
if ( (AUDIO_FIFO_STREAM_FIFO_RLEN() == AUDIO_FIFO_STREAM_STREAM_LEN() ) ||
(wNoMoreFrames == TRUE) )
{
stream_end = TRUE;
}
}
else
{
if (AUDIO_FIFO_STREAM_FIFO_RLEN() == AUDIO_FIFO_STREAM_STREAM_LEN() )
{
stream_end = TRUE;
}
}
if (stream_end == TRUE)
{
app_dac_mute_enable ();
uMsgSend (UI_CD_INTERFACE,UI_DECODE_STREAM_EOF,0);
}
else
{
if (app_main_data.fast_processing)
{
app_dac_mute_enable ();
app_main_data.playing_stream_status = STREAM_WAITING_DATA;
}
else
{
app_dac_mute_enable ();
app_main_data.playing_stream_status = STREAM_WAITING_DATA;
}
}
}
break;
case UI_DECODE_SKIP_F:
DBG_Printf ("UI_DECODE_SKIP_F\n\r");
skip_mode = SKIP_FORWARD;
//no break, continue to next code
case UI_DECODE_STREAM_EOF:
DBG_Printf ("UI_DECODE_STREAM_EOF\n\r");
if ( (app_main_data.fast_processing) && (skip_mode != SKIP_FORWARD) )
{
DBG_Assert(FALSE);
break;
}
app_dac_mute_enable ();
uiDecDecodeFrameExit ();
//write enc stream to usb device may need a lot of time
decode_block_process_timer = TRUE;
app_media_mute_enable();
STREAM_MUTEX_LOCK;
STREAM_MUTEX_UNLOCK;
decode_block_process_timer = FALSE;
entry_id3_flag = ID3_UNKNOWN;
if( (app_main_data.playback_mode == REPEAT_ONE)/* && (skip_mode != SKIP_FORWARD)*/)
{
DBG_Printf ("Repeat One\n\r");
AUDIO_FIFO_STREAM_FLUSH();
//app_nav_mp3_play_track (app_main_data.playing_index);
ukParmSend(app_nav_mp3_play_track,app_main_data.playing_index);
}
else if(app_main_data.playback_mode == REPEAT_DIR)
{
U16 entry = app_file_get_entry_in_folder(app_main_data.playing_index);
U16 folder = app_file_get_folder_of_entry(app_main_data.playing_index);
U16 total = app_file_get_folder_entries(folder);
DBG_Printf ("Repeat Dir\n\r");
if (++entry < total)
{
//app_main_data.playing_index = entry;
app_main_data.playing_index = app_file_get_first_entrie_of_folder(folder) + entry;
}
else
{
app_main_data.playing_index = app_file_get_first_entrie_of_folder(folder);
}
AUDIO_FIFO_STREAM_FLUSH();
//app_nav_mp3_play_track (app_main_data.playing_index);
ukParmSend(app_nav_mp3_play_track,app_main_data.playing_index);
}
else if ( (app_main_data.playback_mode == RANDOM_ALL) || (app_main_data.playback_mode == RANDOM_REPEAT_ALL) )
{
AUDIO_FIFO_STREAM_FLUSH();
app_main_data.random_played_tracks++;
if (app_main_data.random_played_tracks >= playing_info.total_of_playlist)
{
if (app_main_data.playback_mode == RANDOM_ALL)
{
app_main_data.playing_track = 0; //resume start from beginning
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.ui_background = app_nav_dummy_process;
app_main_data.PlayDiscNum = 3;
ukMsgSend (app_nav_mp3_playback_over);
}
else {
//random repeat all
app_main_data.random_played_tracks = 0;
random_set_base (random ());
//app_nav_mp3_play_track ( random_track(playing_info.total_of_playlist) );
ukParmSend(app_nav_mp3_play_track,random_track(playing_info.total_of_playlist));
}
}
else
{
DBG_Printf ("Ramdom play track\n\r");
//app_nav_mp3_play_track (random_track(playing_info.total_of_playlist));
ukParmSend(app_nav_mp3_play_track,random_track(playing_info.total_of_playlist));
}
}
else if ( (app_main_data.playback_mode == RANDOM_IN_DIR) || (app_main_data.playback_mode == RANDOM_IN_DIR_REPEAT_ALL) )
{
U16 start_index, index, tracks, dir;
AUDIO_FIFO_STREAM_FLUSH();
dir = app_list_playlist_dir (app_main_data.playing_index);
tracks = app_list_playlist_tracks_in_dir (dir);
start_index = app_list_playlist_dir_start_index (dir);
DBG_Printf ("dir = %d\n\r", dir);
DBG_Printf ("tracks = %d\n\r", tracks);
DBG_Printf ("start_index = %d\n\r", start_index);
DBG_Printf ("random_tracks = %d\n\r", app_main_data.random_played_tracks);
app_main_data.random_played_tracks++;
if (app_main_data.random_played_tracks >= tracks)
{
if (app_main_data.playback_mode == RANDOM_IN_DIR)
{
app_main_data.playing_track = 0; //resume start from beginning
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.ui_background = app_nav_dummy_process;
ukMsgSend (app_nav_mp3_playback_over);
}
else
{
//random in dir repeat all
app_main_data.random_played_tracks = 0;
random_set_base (random());
}
}
index = random_track (tracks);
DBG_Printf ("index = %d\n\r", index);
//app_nav_mp3_play_track (start_index + index);
ukParmSend(app_nav_mp3_play_track,start_index + index);
}
else if ( /*(app_main_data.playback_mode == REPEAT_DIR) ||*/ (app_main_data.playback_mode == DIR_RANDOM) ||
(app_main_data.playback_mode == DIR_RANDOM_REPEAT_ALL) )
{
#ifdef MULTI_FOLDER_LEVEL
i = app_main_data.playing_index;
i++;
if (i >= playing_info.total_of_playlist)
{
i = 0;
}
if ( app_list_playlist_dir (app_main_data.playing_index) != app_list_playlist_dir (i) )
{
//next track folder is different with current track folder
app_sdram_stream_flush ();
if (app_main_data.playback_mode == REPEAT_DIR)
{
i = app_list_playlist_dir (app_main_data.playing_index);
i = app_list_playlist_dir_start_index (i);
//app_nav_mp3_play_track (i);
ukParmSend(app_nav_mp3_play_track,i);
}
else
{
//dir random
U16 playlist_dirs;
playlist_dirs = app_list_playlist_total_dirs ();
app_main_data.random_played_tracks++;
if (app_main_data.random_played_tracks >= playlist_dirs)
{
if (app_main_data.playback_mode == DIR_RANDOM)
{
app_main_data.playing_track = 0; //resume start from beginning
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.ui_background = app_nav_dummy_process;
ukMsgSend (app_nav_mp3_playback_over);
}
else
{
//rnadom dir repeat all
app_main_data.playing_track = 0; //resume start from beginning
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
i = random_track (playlist_dirs);
i = app_list_playlist_dir_start_index (i);
//app_nav_mp3_play_track (i);
ukParmSend(app_nav_mp3_play_track,i);
}
}
else
{
i = random_track (playlist_dirs);
i = app_list_playlist_dir_start_index (i);
//app_nav_mp3_play_track (i);
ukParmSend(app_nav_mp3_play_track, i);
}
}
}
else
{
//same folder
goto Process_Next_Stream;
}
#endif
}
else
{
Process_Next_Stream:
#if 0
s = app_sdram_stream_get_rstream ();
if ( (s != INVALID_STREAM_ID) ) {
app_sdram_stream_close_rstream (s);
if ( (app_sdram_stream_get_wstream ()) == s) {
app_sdram_stream_close_wstream (s);
app_sdram_stream_flush ();
}
else {
app_sdram_stream_del_stream (s);
}
}
#else
//AUDIO_FIFO_STREAM_FLUSH();
#endif
i = app_main_data.playing_index;
app_main_data.playing_index++;
if (app_main_data.playing_index >= playing_info.total_of_playlist)
{
#ifdef PLAYBACK_CIRCLES_IN_NORMAL_MODE
if ( (app_main_data.playback_mode == REPEAT_ALL) || (skip_mode == SKIP_FORWARD) )
#else
if ( (app_main_data.playback_mode == REPEAT_ALL) )
#endif
{
app_main_data.playing_index = 0;
}
}
if (app_main_data.playing_index >= playing_info.total_of_playlist)
{
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
app_main_data.playing_track = 0; //resume start from beginning
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.ui_background = app_nav_dummy_process;
ukMsgSend (app_nav_mp3_playback_over);
}
else
{
app_main_data.playing_track = app_list_get_list_content(app_main_data.playing_index);
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x07;
#endif
if (1)
{
AUDIO_FIFO_STREAM_FLUSH();
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.ui_background = app_nav_dummy_process;
//app_nav_mp3_play_track (app_main_data.playing_index);
ukParmSend(app_nav_mp3_play_track, app_main_data.playing_index);
}
}
}
break;
case UI_CD_LEAD_OUT:
break;
case UI_WMA_INIT_SUCCESS:
#ifdef PTP_MTP_CLASS
if ( (app_main_data.media == MEDIA_USB_DEVICE) && (usbDevType == enUSBH_DEV_MTP) )
{
app_main_data.resume_jump_request = FALSE; //for usbhost MTP device
}
#endif
ukParmSend(app_audio_clock_freq_setting, app_main_data.playing_stream_sample_rate);
if (app_main_data.resume_jump_request == FALSE)
{
uDecSend (DECODE_FRAME, 0); /*start to decode*/
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
if ( (app_main_data.window == (WINDOW *) &nav_mp3_window ) ||
(app_main_data.window == (WINDOW *) &mp3_mode_window) )
{
app_lcd_disp_mp3_playback_time();
}
}
break;
case UI_WMA_INIT_FAIL:
break;
case UI_WMA_INIT_DRM:
app_nav_window_set(&nav_mp3_prot_window, app_window_data.window_index+1);
break;
case UI_MP3_INIT_SUCCESS:
DBG_Printf("mp3 init success\n\r");
#ifdef PTP_MTP_CLASS
if ( (app_main_data.media == MEDIA_USB_DEVICE) && (usbDevType == enUSBH_DEV_MTP) )
{
app_main_data.resume_jump_request = FALSE; //for usbhost MTP device
}
else
#endif
{
//find mp3 header may cut some off data, need to reloead again
app_main_data.resume_jump_request = FALSE;
}
//ukParmSend(app_audio_clock_freq_setting, app_main_data.playing_stream_sample_rate);
app_main_data.playing_time = 0;
if (app_main_data.resume_jump_request == FALSE)
{
DBG_Puts("codec dec start\n\r");
uDecSend (DECODE_FRAME, 0); //start to decode
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
if ( (app_main_data.window == (WINDOW *) &nav_mp3_window ) ||
(app_main_data.window == (WINDOW *) &mp3_mode_window) )
{
app_lcd_disp_mp3_playback_time();
}
}
break;
case UI_MP3_INIT_FAIL:
DBG_Printf("UI_MP3_INIT_FAIL\r\n");
//DBG_Printf("UI_MP3_INIT_FAIL:%d\r\n", wRequestDecodeFrameExit);
//playing next stream
app_main_data.playing_stream_status = STREAM_IDLE;
if (wRequestDecodeFrameExit == FALSE)
{
//not cuased by key
#ifdef SUPPORT_MESSAGE_DISPLAY
app_nav_window_set(&nav_mp3_prot_window, app_window_data.window_index+1);
#else
uMsgSend (UI_CD_INTERFACE, UI_DECODE_STREAM_EOF, 0);
#endif
}
break;
#if (defined AAC_DEC || defined WAV_DEC || defined FLAC_DEC || defined APE_DEC || defined SBC_DEC)
case UI_DEC_INIT_SUCCESS:
#ifdef PTP_MTP_CLASS
if ( (app_main_data.media == MEDIA_USB_DEVICE) && (usbDevType == enUSBH_DEV_MTP) )
{
app_main_data.resume_jump_request = FALSE; //for usbhost MTP device
}
else
#endif
{
/*find mp3 header may cut some off data, need to reloead again*/
app_main_data.resume_jump_request = FALSE;
}
ukParmSend(app_audio_clock_freq_setting, app_main_data.playing_stream_sample_rate);
app_main_data.playing_time = 0;
if (app_main_data.resume_jump_request == FALSE)
{
uDecSend (DECODE_FRAME, 0); /*start to decode*/
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
if ( (app_main_data.window == (WINDOW *) &nav_mp3_window ) ||
(app_main_data.window == (WINDOW *) &mp3_mode_window) )
{
app_lcd_disp_mp3_playback_time();
}
}
break;
case UI_DEC_INIT_FAIL:
//playing next stream
app_main_data.playing_stream_status = STREAM_IDLE;
if (wRequestDecodeFrameExit == FALSE) {
//not caused by key
uMsgSend (UI_CD_INTERFACE,UI_DECODE_STREAM_EOF,0);
}
break;
#endif //(defined AAC_DEC || defined WAV_DEC || defined FLAC_DEC || defined APE_DEC || defined SBC_DEC)
case UI_FIT_TIMER:
//DBG_Printf ("status:%s\n\r", app_main_data.playing_stream_status);
#ifdef AUDIO_LEVEL_METER
app_lcd_device.display_level(peak_level_L, peak_level_R, 0);
#endif
if (app_main_data.playing_stream_status == STREAM_SEARCH_IDV1)
{
//app_main_data.playing_stream_status = STREAM_SEARCH_IDV2;
}
else if (app_main_data.playing_stream_status == STREAM_SEARCH_IDV2)
{
#if 1//test
U32 wlen;
wlen = AUDIO_FIFO_STREAM_STREAM_LEN();
#ifdef PTP_MTP_CLASS
if ( (wlen >= 0x20000) || (usbDevType != enUSBH_DEV_MTP) )
#endif
{
asm("nop");
//id3 process is changed in mp3 init process
app_main_data.playing_stream_status = STREAM_MP3_INIT;
}
#else
//id3 process is changed in mp3 init process
app_main_data.playing_stream_status = STREAM_MP3_INIT;
#endif
}
else if (app_main_data.playing_stream_status == STREAM_MP3_INIT)
{
if (app_main_data.playback_state == PLAYING_MODE_PLAY) {
//init mp3
uDecSend (DECODE_INIT, 0);
app_main_data.playing_stream_status = STREAM_MP3_INIT_WAIT;
}
}
else if (app_main_data.playing_stream_status == STREAM_MP3_INIT_WAIT) {
//tx_event_flags_set(&event_grop, AUDIO_DECODE_EVENT, TX_OR);
xEventGroupWaitBits(event_grop,AUDIO_DECODE_EVENT, pdTRUE, pdFALSE, portMAX_DELAY);
}
#if 1//(defined AAC_DEC || defined WAV_DEC || defined FLAC_DEC || defined APE_DEC || defined SBC_DEC)
//for new dec such as aac,wav,flac,ape...
else if (app_main_data.playing_stream_status == STREAM_DEC_INIT)
{
U32 wlen;
if (!AUDIO_FIFO_STREAM_IS_VAILD())
{
DBG_Assert (FALSE);
//break;
}
wlen = AUDIO_FIFO_STREAM_DATA_LEN ();
DBG_Printf ("Dec Init Tx\n\r");
//DBG_Printf ("Dec Init Msg Tx0:%d\n\r", wlen);
if ( (app_main_data.playback_state == PLAYING_MODE_PLAY) ||
(app_main_data.playback_state == PLAYING_MODE_PAUSE) )
{
if (app_main_data.playing_stream_type == STREAM_WAV)
{
#ifdef WAV_DEC
#if 1
//if (wlen >= (WAV_STREAM_END - WAV_STREAM_START)/2)
if ( (wlen >= (WAV_STREAM_END - WAV_STREAM_START)/2) ||
(wlen >= app_main_data.pMediaRead->lenth) )
#else
if ( (wlen >= (STREAM_BUF_MAX_SIZE)/2) ||
(wlen >= app_main_data.pMediaRead->lenth) )
#endif
{
DBG_Puts ("Dec Init Tx1\n\r");
uDecSend (DECODE_INIT, 0);
app_main_data.playing_stream_status = STREAM_DEC_INIT_WAIT;
}
#endif
}
else if (app_main_data.playing_stream_type == STREAM_FLAC)
{
#ifdef FLAC_DEC
//if (wlen >= (SDRAM_FLAC_STREAM_END - SDRAM_FLAC_STREAM_START)/2)
if ( (wlen >= (SDRAM_FLAC_STREAM_END - SDRAM_FLAC_STREAM_START)/2) ||
(wlen >= app_main_data.pMediaRead->lenth) )
{
DBG_Puts ("Dec Init Tx2\n\r");
uDecSend (DECODE_INIT, 0);
app_main_data.playing_stream_status = STREAM_DEC_INIT_WAIT;
}
#endif
}
else
{
DBG_Puts ("Dec Init Tx3\n\r");
uDecSend (DECODE_INIT, 0);
app_main_data.playing_stream_status = STREAM_DEC_INIT_WAIT;
}
}
else
{
DBG_Printf ("Dec Init Tx4:%d\n\r", app_main_data.playback_state);
}
}
else if (app_main_data.playing_stream_status == STREAM_DEC_INIT_WAIT)
{
//AUDIO_DECODE_EVENT_SET;
app_main_data.playing_stream_status = STREAM_WAITING_DATA;
}
#endif //(defined AAC_DEC || defined WAV_DEC || defined FLAC_DEC || defined APE_DEC)
else if (app_main_data.playing_stream_status == STREAM_WMA_INIT)
{
if (app_main_data.playback_state == PLAYING_MODE_PLAY)
{
if (!AUDIO_FIFO_STREAM_IS_VAILD())
{
DBG_Assert (FALSE);
break;
}
//len = app_sdram_get_stream_buf_len ();
len = AUDIO_FIFO_STREAM_FIFO_LEN();
{
//init wma, please note wma_init and wma_decoder must be same task
uDecSend (DECODE_INIT, 0);
//waitting for decode init result
app_main_data.playing_stream_status = STREAM_WMA_INIT_WAIT;
}
}
}
else if (app_main_data.playing_stream_status == STREAM_WMA_INIT_WAIT)
{
AUDIO_DECODE_EVENT_GET;
}
else if ( app_main_data.playing_stream_status == STREAM_WAITING_DATA )
{
if (!AUDIO_FIFO_STREAM_IS_VAILD())
{
DBG_Assert (FALSE);
//break;
}
if (app_main_data.fast_processing)
{
len = MIN_STREAM_SIZE;
}
else if (app_main_data.playing_stream_type == STREAM_CDDA)
{
len = MIN_STREAM_SIZE;
}
else
{
//len = app_sdram_get_stream_buf_len () - MIN_STREAM_SIZE; //ff/fb no osund
len = MIN_STREAM_SIZE;
}
if ( isEnoughData (len) )
{
if (app_main_data.playback_state == PLAYING_MODE_PLAY)
{
DBG_Puts ("codec dec start\n\r");
app_main_data.playing_stream_status = STREAM_MEDIA;
uDecSend (DECODE_FRAME, 0); //start to decode
app_dac_mute_disable ();
if ( (app_main_data.window == (WINDOW *) &nav_mp3_window ) ||
(app_main_data.window == (WINDOW *) &mp3_mode_window) )
{
app_lcd_disp_mp3_playback_time();
}
}
}
}
{
//lcd display
if ( (app_main_data.playing_stream_status == STREAM_MEDIA) && (app_main_data.fast_processing == FALSE) &&
(app_main_data.playback_state != PLAYING_MODE_PAUSE) )
{
U16 time;
DBG_Assert (app_main_data.playing_stream_sample_rate != 0);
time = (U16) (app_main_data.playing_stream_pcm_sample / app_main_data.playing_stream_sample_rate);
{
if (time != app_main_data.playing_time)
{
watchdog_time_reset();
app_main_data.fatal_err = 0; //clear
app_main_data.playing_time = time;
#ifdef MP3_MODULE
cEV_Display_Info_Changed = TRUE;
cEV_Display_Info_Changed_Info = 0x01; //time
#endif
if (app_main_data.window == (WINDOW *) &nav_mp3_window )
{
app_lcd_disp_mp3_playback_time();
}
}
}
}
if ( (app_main_data.playing_stream_status == STREAM_MEDIA) &&
(app_main_data.playback_state != PLAYING_MODE_PAUSE) )
{
if (app_main_data.window != (WINDOW *) &volume_window)
{
if (pre1_ticks != (timer_data.ticks / TICK_400ms) )
{
pre1_ticks = (timer_data.ticks / TICK_400ms);
app_lcd_disp_playing();
app_lcd_disp_sleep_icon_flash();
}
}
else
{
if (pre1_ticks != (timer_data.ticks / TICK_400ms) )
{
pre1_ticks = (timer_data.ticks / TICK_400ms);
app_lcd_disp_disc_rotary ();
}
}
}
else
{
if (pre1_ticks != (timer_data.ticks / TICK_400ms) )
{
pre1_ticks = (timer_data.ticks / TICK_400ms);
app_lcd_disp_disc_rotary();
app_lcd_disp_sleep_icon_flash();
}
}
if ( (app_main_data.playback_state == PLAYING_MODE_PLAY) )
{
long no_sound_time;
no_sound_time = app_timer_get_idle_time ();
if (no_sound_time > 30000)
{
app_main_data.fatal_err++;
if (1)
{
if (!(app_main_data.volume == 0))
//if ( !(app_main_data.volume == 0) || (amp_mute_flag) )
{
app_timer_idle_time_reset ();
}
else
{
//skip to next track, ???
uMsgSend (UI_CD_INTERFACE, UI_DECODE_SKIP_F, 0);
}
}
else
{
app_nav_mp3_stop ();
}
}
}
}
break;
default:
break;
}
#endif
}
#endif /* MP3CD */
void app_no_dummy_process (UI_MSG *process_msg)
{
}
void app_nav_dummy_process (UI_MSG *process_msg)
{
#if 1
U32 len;
U32 time;
U32 temp;
switch (process_msg->parm1)
{
case UI_USB_OVERCURRENT:
//app_lcd_disp_overcurrent();
break;
case UI_FIT_TIMER:
temp = (timer_data.ticks / TICK_400ms);
if (pre_ticks != (timer_data.ticks / TICK_500ms) )
{
pre_ticks = (timer_data.ticks / TICK_500ms);
//app_lcd_disp_sleep_icon_flash();
}
break;
default:
break;
}
#endif
}
void app_nav_program_process (UI_MSG *process_msg)
{
}
extern U8 pre_cEV_State;
extern volatile U8 noDiscNum;
void app_nav_usb_read_fs_process (UI_MSG *process_msg)
{
#if (defined SD_ENABLE || defined USB_HOST_ENABLE)
switch (process_msg->parm1)
{
#if 0
case UI_USB_CONNECT:
DBG_Printf ("Detect one usb device\n\r");
app_dac_mute_enable ();
uHddMsgSend (HDD_SEARCH_AUDIO_ENTRY, 0, 0);
app_main_data.ui_background = app_nav_usb_read_fs_process;
DBG_Assert (FALSE);
break;
case UI_USB_DISCONNECT:
DBG_Printf ("Usb device is disconnected\n\r");
app_dac_mute_enable ();
usbmsc_close();
usbmsc_fini();
DBG_Assert (FALSE);
break;
#endif
case UI_NO_DISC:
//ANALOG_MUTE_OFF;
//the no disc nav is used
#ifdef MP3_MODULE
app_main_data.status = enSTATE_NO_DISC;
cEV_State = MSTATE_IDLE;
cEV_Disc_Contents = TRUE;
#endif
app_main_data.ui_background = app_nav_dummy_process;
DBG_Printf ("usb No Disc\n\r");
break;
case UI_FS_SEARCH_END:
#ifdef FOLDER_SWITCH
app_main_data.fold_switch = FALSE;
#endif
app_id3_state_init();
app_main_data.total_tracks = gwEntryNum;
app_main_data.total_folders = gwFolderNum;
{
//SDRAM_STREAM_CONFIG stream_config;
app_dac_mute_enable ();
//app_sdram_stream_flush ();
//stream_config.start_addr = (long) SDRAM_MP3_STREAM_START;
//stream_config.end_addr = (long) SDRAM_MP3_STREAM_END;
//stream_config.overwrite = FALSE;
//app_sdram_stream_open (&stream_config);
AUDIO_FIFO_STREAM_FLUSH();
U8 *pStreamBuf;
U32 size;
#ifdef STREAM_BUFFER_SIZE_UNFIXED
pStreamBuf = MP3_STREAM_START;
size = MP3_STREAM_END - MP3_STREAM_START;
#else
pStreamBuf = stream_buffer;
#ifdef STREAM_BUFFER_USED_POINTER
size = STREAM_BUF_MAX_SIZE;
#else
size = sizeof(stream_buffer);
#endif
#endif
//AUDIO_FIFO_STREAM_OPEN(pStreamBuf, size);
fifo_init(&audio_env.stream_fifo, pStreamBuf, size, TRUE);
//AUDIO_FIFO_STREAM_CREATE(0, STREAM_LENTH_UNKNOWN, 0, 0);
//fifo_create_file_stream(&audio_env.stream_fifo, 0, STREAM_LENTH_UNKNOWN, 0, 0);
}
uDecSend (DECODE_SET, DECODE_NONE);
#ifdef FILE_SYSTEM_ENABLE
#ifdef PTP_MTP_CLASS
if ( (wFileSysPresent == TRUE) && (usbDevType == enUSBH_DEV_MSC) )
#else
#ifdef SD_ENABLE
if (wFileSysPresent || sd1_FileSysPresent)
#else
if (wFileSysPresent)
#endif
#endif
{
MYFILE *fp;
//changing to the System folder, find the "upgrade.bin" file
Fs_change_dir((U16 * ) ROOT_DIR);
if (Fs_change_dir((U16 *) SYSTEM_FOLDER) == TRUE)
{
upgrade_fp = Fs_file_open((U16 *)upgrade_bin, READ_ONLY);
if (upgrade_fp !=NULL)
{
#ifdef UPGRADE_PROJECT_ENABLE
app_nav_upgrade_project();
#else
#ifdef FLASH_PROGRAM_ENABLE
//upgrade in the same project
app_flash_program_init();
app_lcd_disp_upgrade();
app_nav_sleep(1000);
//app_nav_flash_program_text_copy();
app_nav_flash_program();
while (1);
#endif //FLASH_PROGRAM_ENABLE
#endif //UPGRADE_PROJECT_ENABLE
}
}
}
#endif //UPGRADE_ENABLE
if (app_main_data.total_tracks == 0)
{
//no digital songs
#ifdef MP3_MODULE
app_main_data.status = enSTATE_NO_AUDIO_FILES;
cEV_State = MSTATE_IDLE;
cEV_Disc_Contents = TRUE;
#endif
app_main_data.ui_background = app_nav_dummy_process;
app_nav_window_set(&nav_no_songs,0);
}
else
{
app_timer_window_time_set (0);
app_timer_idle_time_reset ();
#ifdef USB_HOST_ENABLE
if (getDeviceVID() == iPOD_VID)
{
}
#ifdef PTP_MTP_CLASS
if (usbDevType == enUSBH_DEV_MSC)
#endif
#endif //USB_HOST_ENABLE
DBG_Printf ("Total Track = %d : Total Folder = %d\n\r", app_main_data.total_tracks, app_main_data.total_folders);
#ifdef PTP_MTP_CLASS
if (usbDevType == enUSBH_DEV_MSC)
#endif
{
}
//the file system data is corrupted, init gain
app_main_data.entry = 0;
app_main_data.fold = 0;
playing_info.total_of_playlist = 0;
#ifdef MP3_PROGRAM_ENABLE
playing_info.total_of_program_list = 0;
#endif
//app_sdram_stream_flush ();
AUDIO_FIFO_STREAM_FLUSH();
app_main_data.playing_stream_status = STREAM_IDLE;
app_main_data.playback_state = PLAYING_MODE_STOP;
#ifdef MP3_MODULE
app_main_data.status = enSTATE_STOP;
app_main_data.status = enSTATE_DISC_READY;
cEV_State = MSTATE_STOP;
cEV_Disc_Contents = TRUE;
app_main_data.disc_content_ready = TRUE;
#endif
//set nav window
app_main_data.ui_background = app_nav_dummy_process;
#if 0//def FOR_ESD_PROTECT
if (resume_trk_info.need_resume_play)
{
//For ESD
DBG_Printf("Resume play\n\r");
//resume_trk_info.need_resume_play = false;
app_list_create_nomral_playlist ();
ukParmSend(app_nav_mp3_play_track,resume_trk_info.resume_playing_index);
app_nav_sleep (250);
ukParmSend(app_cmd_mp3_jump,resume_trk_info.resume_pos);
ukParmSend(app_cmd_set_playtime,resume_trk_info.resume_playback_time);
}
else if (app_main_data.auto_play == AUTO_PLAY_OFF)
{
#else
if (app_main_data.auto_play == AUTO_PLAY_OFF)
{
#endif
//set nav window
app_main_data.ui_background = app_nav_dummy_process;
#ifdef MP3_MODULE
app_nav_mp3_stop_skipf ();
#else
app_nav_window_set(&nav_mp3_stop_window, 0);
#endif
}
else
{
//asm("break 1,1");
app_main_data.auto_play = AUTO_PLAY_OFF;
//show disc info, then play
app_window_prompt_window_init ();
prompt_window.window_time = 1000; //1000ms
prompt_window.draw_region = app_lcd_disp_digital_audio_disc_toc;
prompt_window.time = app_nav_mp3_play;
app_main_data.ui_background = app_nav_dummy_process;
app_nav_window_set(&prompt_window, 0);
}
}
break;
case UI_FS_ERR:
/*no file system*/
DBG_Assert (FALSE);
break;
case UI_FIT_TIMER:
#ifdef LCD_DISP_SEARCH_PROCESS
if (app_main_data.total_tracks != gwEntryNum)
{
app_timer_idle_time_reset ();
app_main_data.total_tracks = gwEntryNum;
app_main_data.total_folders = gwFolderNum + 1;
app_timer_window_time_set (app_main_data.window->window_time);
app_lcd_disp_digital_audio_disc_toc ();
}
#endif
break;
default:
break;
}
#endif
}
#if 1//def PCM_RECEIVE_ENABLE
#if 0
U16 app_nav_adc_wstream_callback (U32 size)
{
if (app_main_data.playing_stream_status == STREAM_CDDA_WAIT_DATA)
{
if (size > EX_AUDIO_STREAM_THRESHOLD)
{
uDecSend (DECODE_FRAME, 0); //start to decode
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
DBG_Puts("AD1 PCM decode start1\n\r");
}
return 0x0; //no action for zero data
}
else
{
if (size > EX_AUDIO_STREAM_THRESHOLD)
{
return 0x02; //discarding zero data
}
else
{
return 0x01; //double filling zero data
}
}
}
#endif
//#define BUFFER_200MS (35*1024) //35kB
void app_nav_ad_pcm_pocess (UI_MSG *process_msg)
{
int wlen, pos;
int ret;
U32 len;
U32 time;
U32 temp;
switch (process_msg->parm1)
{
case UI_FIT_TIMER:
#ifdef AUDIO_LEVEL_METER
// app_lcd_device.display_level(peak_level_L, peak_level_R, 0);
#endif
#if 0//def ADC_RECORD
if (app_main_data.playing_stream_status == STREAM_CDDA_WAIT_DATA)
{
s = app_sdram_stream_get_rstream ();
DBG_Assert ( (s != INVALID_STREAM_ID) );
if( s == INVALID_STREAM_ID ) return;
wlen = app_sdram_stream_get_stream_wlen (s);
pos = app_sdram_stream_get_stream_pos(s);
//if ( (wlen - pos) > EX_AUDIO_STREAM_THRESHOLD )
if ( (wlen - pos) > EX_AUDIO_STREAM_THRESHOLD/2 )
{
uDecSend (DECODE_FRAME, 0); /*start to decode*/
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
DBG_Puts("AD PCM decode start2\n\r");
}
}
#else
if (0)
{
}
#endif
#if 0//def ADC_RECORD
else if ( (app_main_data.media == MEDIA_TUNER) ||
#ifdef MIC_ENABLE
(app_main_data.media == MEDIA_MIC) ||
#endif
(app_main_data.media == MEDIA_AUX) )
{
if (app_main_data.record_status)
{
s = app_sdram_stream_get_wstream ();
DBG_Assert (s != INVALID_STREAM_ID);
len = app_sdram_stream_get_stream_wlen (s);
time = len / (app_main_data.playing_stream_bitrate);
#if 0
//support long time rec
time += record_time_step;
#endif
if (app_main_data.record_time != time)
{
if (app_main_data.window == (WINDOW *) &adc_record_window)
{
if (!app_main_data.Mute)
{
app_main_data.record_time = time;
app_lcd_disp_adc_record_time();
}
else
{
app_lcd_disp_mute();
}
}
}
}
if (app_main_data.window != (WINDOW *) &volume_window)
{
if (pre1_ticks != temp)
{
pre1_ticks = temp;
app_lcd_disp_playing();
}
}
}
#endif //ADC_RECORD
break;
default:
break;
}
}
#endif
extern U32 spdif_frame_rx_cn,spdif_frame_tx_cn;
//U16 app_nav_ex_wstream_callback (U32 size) __INTERNAL_RAM_TEXT;
U16 app_nav_ex_wstream_callback (U32 size)
{
#if 1
int len;
if ( (decode_type == DECODE_DD_AC3) )
{
//len = 1024*10; // if inputting data rate is 640k bps, it is ok
len = 1024*12; // if inputting data rate is 640k bps, it is ok
//len = 1024*13; // if inputting data rate is 640k bps, it is ok
//len = 1024*19; // if inputting data rate is 448k bps, it is ok
//len = 1024*20; // if inputting data rate is 448k bps, it is ok
//len = 1024*29; // if inputting data rate is 224k bps, it is ok
//len = 1024*30; // if inputting data rate is 224k bps, it is ok
}
else
{
len = EX_AUDIO_STREAM_THRESHOLD;
}
if (app_main_data.playing_stream_status == STREAM_CDDA_WAIT_DATA)
{
if (size >= len)
{
//DBG_Printf("spdif dec start\n\r");
//start to count
spdif_frame_rx_cn = 2; //one frame exit
spdif_frame_tx_cn = 0;
#if 1
uDecSend (DECODE_FRAME, FALSE); //start to decode
#else
decode_start();
#endif
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
//AMP_MUTE_OFF;
AMPLIFIER_MUTE_OFF;
}
return 0x0; //no action for zero data
}
else
{
if (size > len)
{
return 0x02; //discarding zero data
}
else
{
return 0x01; //double filling zero data
}
}
#endif
}
#ifdef USB_SPEAKER
void app_nav_usbSpeaker_pocess (UI_MSG *process_msg)
{
STREAM_ID s;
int wlen, pos;
switch (process_msg->parm1) {
case UI_FIT_TIMER:
//app_lcd_device.display_level(peak_level_L,peak_level_R,0);
#if 0
if (app_main_data.playing_stream_status == STREAM_CDDA_WAIT_DATA) {
s = app_sdram_stream_get_rstream ();
DBG_Assert ( (s != INVALID_STREAM_ID) );
if( s == INVALID_STREAM_ID ) return;
wlen = app_sdram_stream_get_stream_wlen (s);
pos = app_sdram_stream_get_stream_pos(s);
if ( (wlen - pos) > IPOD_BUFFER_SIZE ) {
uDecSend (DECODE_FRAME, 0); /*start to decode*/
app_dac_mute_disable ();
app_main_data.playing_stream_status = STREAM_MEDIA;
}
}
#endif //0
break;
case UI_STREAM_UNDERFLOW:
app_dac_mute_enable();
app_main_data.playing_stream_status = STREAM_CDDA_WAIT_DATA;
break;
default:
break;
}
}
#endif
#ifdef USB_HOST_AUDIO_ENABLE
void app_nav_usbhost_audio_pocess (UI_MSG *process_msg)
{
switch (process_msg->parm1)
{
case UI_FIT_TIMER:
break;
default:
break;
}
}
#endif //USB_HOST_AUDIO_ENABLE
#ifdef SPDIF_ENABLE
extern U8 spdif_rx_down_sample; /*0x02 down by 2, 0x04 down by 4*/
extern U16 spdif_rc_frame_cn;
volatile U32 spdif_d;
U8 spdif_waiting_cnt;
U8 spdif_sample_base;
void otk_psm_ui_mute(u8 mute);
U8 spdif_dect_cn;
void apdif_dect_cn_init(void)
{
spdif_dect_cn = 0;
}
void app_nav_spdif_pocess (UI_MSG *process_msg)
{
static U8 count;
STREAM_ID s;
int wlen, pos;
U32 tmp;
U32 tmp1;
U32 tmp2;
U8 detected;
U8 need_to_check_32k;
need_to_check_32k = 0;
detected = 0;
switch (process_msg->parm1)
{
case UI_FIT_TIMER:
//app_lcd_device.display_level(peak_level_L,peak_level_R,0);
/*if (ex_audio_stream_zero == FALSE)
{
app_timer_idle_time_reset();
ex_audio_stream_zero = TRUE;
}*/
if (app_main_data.playing_stream_status == STREAM_SPDIF_SR_DETECT_32k)
{
spdif_dect_cn++;
if (spdif_dect_cn < 4)
{
break;
}
tmp = SPDIF_DEC_SAMPLE_RATE_DETECT;
tmp = (((tmp&0xff) + ((tmp>>8)&0xff))>>2);
if (tmp >= 31)
{
//audio_pll_set (SR_32000_SPDIF_1x);
app_main_data.playing_stream_sample_rate = 32000*1;
hw_audio_pll_clk_fre_set(SF_BASE_32000,SPDIF_SF_1x);
detected = 1;
spdif_rx_down_sample = 1;
DBG_Printf ("SPDIF Sample Rate is 32k\n\r");
}
else
{
detected = 0;
need_to_check_32k = 0;
}
goto detect_enter;
}
else if (app_main_data.playing_stream_status == STREAM_SPDIF_SR_DETECT)
{
spdif_dect_cn++;
if (spdif_dect_cn < 4)
{
break;
}
tmp = SPDIF_DEC_SAMPLE_RATE_DETECT;
tmp = (((tmp&0xff) + ((tmp>>8)&0xff))>>2);
//spdif_d = tmp;
if (tmp < 0x3f-7)
{
DBG_Printf ("spdif 0x%x\n\r", tmp);
}
detected = 0;
spdif_rx_down_sample = 1;
if (tmp == 12 || tmp == 13)
{
//audio_pll_set (SR_48000_SPDIF_2x);
app_main_data.playing_stream_sample_rate = 48000*2;
hw_audio_pll_clk_fre_set(SF_BASE_48000,SPDIF_SF_2x);
//spdif_sample_base = SR_48000_SPDIF_1x;
detected = 1;
spdif_rx_down_sample = 2;
DBG_Printf ("SPDIF Sample Rate is 96k\n\r");
}
else if (tmp == 24 || tmp == 25)
{
//audio_pll_set (SR_48000_SPDIF_1x);
//spdif_sample_base = SR_48000_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 48000*1;
hw_audio_pll_clk_fre_set(SF_BASE_48000,SPDIF_SF_1x);
detected = 1;
spdif_rx_down_sample = 1;
DBG_Printf ("SPDIF Sample Rate is 48k\n\r");
}
else if (tmp == 6 || tmp == 7)
{
//audio_pll_set (SR_48000_SPDIF_4x);
//spdif_sample_base = SR_48000_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 48000*4;
hw_audio_pll_clk_fre_set(SF_BASE_48000,SPDIF_SF_4x);
detected = 1;
spdif_rx_down_sample = 4;
DBG_Printf ("SPDIF Sample Rate is 192k\n\r");
}
else if (tmp == 26 || tmp == 27 || tmp == 28)
{
//audio_pll_set (SR_44100_SPDIF_1x);
//spdif_sample_base = SR_44100_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 44100*1;
hw_audio_pll_clk_fre_set(SF_BASE_44100,SPDIF_SF_1x);
detected = 1;
spdif_rx_down_sample = 1;
DBG_Printf ("SPDIF Sample Rate is 44.1k\n\r");
}
else if (tmp == 14)
{
//audio_pll_set (SR_44100_SPDIF_2x);
//spdif_sample_base = SR_44100_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 44100*2;
hw_audio_pll_clk_fre_set(SF_BASE_44100,SPDIF_SF_2x);
detected = 1;
spdif_rx_down_sample = 2;
DBG_Printf ("SPDIF Sample Rate is 88.2k\n\r");
}
else if (tmp == 8)
{
//audio_pll_set (SR_44100_SPDIF_4x);
//spdif_sample_base = SR_44100_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 44100*4;
hw_audio_pll_clk_fre_set(SF_BASE_44100,SPDIF_SF_4x);
detected = 1;
spdif_rx_down_sample = 4;
DBG_Printf ("SPDIF Sample Rate is 176.4k\n\r");
}
else if (tmp == 31 || tmp == 36)
{
//please note max detect value is 31
need_to_check_32k = 1;
//spdif_rx_down_sample = 1;
DBG_Printf ("Recheck SPDIF Sample Rate is 32k?\n\r");
}
else if (tmp == 18 || tmp == 19)
{
//audio_pll_set (SR_32000_SPDIF_2x);
//spdif_sample_base = SR_32000_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 32000*2;
hw_audio_pll_clk_fre_set(SF_BASE_32000,SPDIF_SF_2x);
detected = 1;
spdif_rx_down_sample = 2;
DBG_Printf ("SPDIF Sample Rate is 64k\n\r");
}
else if (tmp == 9 || tmp == 10)
{
//audio_pll_set (SR_32000_SPDIF_4x);
//spdif_sample_base = SR_32000_SPDIF_1x;
app_main_data.playing_stream_sample_rate = 32000*4;
hw_audio_pll_clk_fre_set(SF_BASE_32000,SPDIF_SF_4x);
detected = 1;
spdif_rx_down_sample = 4;
DBG_Printf ("SPDIF Sample Rate is 128k\n\r");
}
detect_enter:
if(detected == 1)
{
//otk_psm_conn_ready ();
//otk_psm_ui_send_mute(0x0);
//DBG_Printf("SPDIF stream sample rate is 44100Hz/n/r");
app_main_data.playing_stream_status = STREAM_CDDA_WAIT_DATA;
spdif_waiting_cnt = 0;
//audio_pll_set_spdif_bitclk_in (spdif_rx_down_sample);
//spdif_dec_disable (); //reset spdif dec fifo
Spdif_rcv_enable();
//spdif_dec_enable ();
}
else
{
spdif_sr_detect_disable ();
if (need_to_check_32k == 0)
{
app_main_data.playing_stream_status = STREAM_SPDIF_SR_REDETECT;
spdif_detect_level(1); //restart detect high
}
else
{
//audio_pll_set (SR_48000_SPDIF_1x); //detect sample rate
app_main_data.playing_stream_status = STREAM_SPDIF_SR_REDETECT_32k;
spdif_detect_level(0); //restart detect low
}
}
}
else if (app_main_data.playing_stream_status == STREAM_SPDIF_SR_REDETECT)
{
spdif_sr_detect_enable();
apdif_dect_cn_init();
app_main_data.playing_stream_status = STREAM_SPDIF_SR_DETECT;
}
else if(app_main_data.playing_stream_status == STREAM_SPDIF_SR_REDETECT_32k)
{
apdif_dect_cn_init();
spdif_sr_detect_enable();
app_main_data.playing_stream_status = STREAM_SPDIF_SR_DETECT_32k;
}
else if (app_main_data.playing_stream_status == STREAM_CDDA_WAIT_DATA)
{
spdif_waiting_cnt++;
//if (spdif_waiting_cnt > 20) //1s
if (spdif_waiting_cnt > 40) //2s
//if (spdif_waiting_cnt > 80) //4s
//if (spdif_waiting_cnt > 160) //8s
{
//DBG_Printf("SPDIF Underflow 2\n");
//no data input for about x sec
spdif_waiting_cnt = 0;
uMsgSend (UI_SPDIF, UI_SPDIF_STREAM_UNDERFLOW, 0);
}
}
else if (app_main_data.playing_stream_status == STREAM_MEDIA)
{
//checking spdif status
if (spdif_rc_frame_cn == 0)
{
//DBG_Puts("timer out\n\r");
//uMsgSend (UI_SPDIF, UI_SPDIF_STREAM_UNDERFLOW, 0);
}
else
{
spdif_rc_frame_cn = 0;
}
}
break;
case UI_SPDIF_STREAM_UNDERFLOW:
DBG_Puts("under flow\n\r");
case UI_SPDIF_STREAM_OVERFLOW:
DBG_Puts("SPDIF over/under flow\n\r");
AMPLIFIER_MUTE_ON;
//AMP_MUTE_ON;
//break;
//otk_psm_ui_send_mute(0x1);
//audio_pll_set_fnpll_clk_in ();
//audio_pll_set (SR_48000_SPDIF_2x); //detect sample rate
spdif_data_parser_init();
//audio_pll_set (SR_49000_SPDIF); //detect sample rate
hw_audio_pll_clk_fre_set(SF_BASE_DET, SPDIF_SF_4x);
apdif_dect_cn_init();
app_dac_mute_enable();
Spdif_rcv_disable ();
spdif_detect_level(1); //restart detect high
spdif_rx_enable();
//lzs spdif_dec_disable (); //also disable detect
app_cmd_DecoderExit();
Spdif_StreamConfig();
app_main_data.playing_stream_status = STREAM_SPDIF_SR_REDETECT;
need_to_check_32k = 0;
DBG_Printf ("SPDIF stream check\n\r");
break;
default:
break;
}
}
#endif
#ifdef BT_HCI_ENABLE
void app_nav_bt_codec_reinit (void);
void app_nav_bt_hci_process (UI_MSG *process_msg)
{
#if 1
int wlen, pos;
switch (process_msg->parm1)
{
case UI_FIT_TIMER:
break;
case UI_STREAM_UNDERFLOW:
//app_dac_mute_enable();
//app_main_data.playing_stream_status = STREAM_WAITING_DATA;
//ukMsgSend(app_nav_codec_reinit);
//DBG_Assert (FALSE);
DBG_Printf ("SBC buf underflow\n\r");
//DBG_Assert (FALSE);
app_nav_bt_codec_reinit();
break;
default:
break;
}
#endif
}
#endif