comparison src/ui/bmi/mmiMP3Test.h @ 3:67bfe9f274f6

src/ui: import of src/ui3 from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:33:10 +0000
parents
children
comparison
equal deleted inserted replaced
2:3a14ee9a9843 3:67bfe9f274f6
1 #ifndef _MMIMP3TEST_H_
2 #define _MMIMP3TEST_H_ 1
3
4 /*******************************************************************************
5
6 CONDAT (UK)
7
8 ********************************************************************************
9
10 This software product is the property of Condat (UK) Ltd and may not be
11 disclosed to any third party without the express permission of the owner.
12
13 ********************************************************************************
14
15 $Project name: Basic MMI
16 $Project code: BMI (6349)
17 $Module: MP3Test
18 $File: MmiMP3Test.h
19 $Revision: 1.0
20
21 $Author: Condat(UK)
22 $Date: 18/05/04
23
24 ********************************************************************************
25
26 Description:
27
28 MMI Application to test the different Audio file formats.
29
30 ********************************************************************************
31 $History: MmiMP3Test.h
32
33 18/05/04 Texas Instruments
34
35 Sep 11, 2006 DR: OMAPS00094182 xrashmic
36 Description: midi and mp3 files is not being populated on accessing corresponding menu, but only during bootup
37 Solution: Populate files on accessing the "browse files" list
38
39 Jun 06, 2006 REF: ERT OMAPS00070659 x0039928
40 Bug:MP3 RWD and FWD function - MOT
41 Fix: Forward and Rewind functionalities are handled.
42
43 Nov 14, 2005 REF: OMAPS00044445 xdeepadh
44 Description: Implementation of Test Menu for AAC
45 Solution: The existing MP3 test Application has been enhanced to support the AAC file testing.
46 The interfaces have been made generic to support both MP3 and AAC files.
47
48 Sep 27,2005 REF: SPR 34402 xdeepadh
49 Bug:Mono option is always highlighted even when Stereo is selected
50 Fix:The channel setting will be saved in the FFS, which will be retrieved later
51 and the selected channel will be higlighted.
52
53 Jul 18, 2005 REF: SPR 31695 xdeepadh
54 Bug:Problems with MP3 test application
55 Fix:The window handling of MP3 Test Application has been done properly.
56
57 $End
58
59 *******************************************************************************/
60 EXTERN int mmi_audio_player_set_channel_mono (MfwMnu* m, MfwMnuItem* i);
61 EXTERN int mmi_audio_player_set_channel_stereo (MfwMnu* m, MfwMnuItem* i);
62 //Jul 18, 2005 REF: SPR 31695 xdeepadh
63 EXTERN int mmi_audio_player_files_browse (MfwMnu* m, MfwMnuItem* i);
64 GLOBAL int mmi_audio_player_play (MfwMnu* m, MfwMnuItem* i);
65 //Sep 27,2005 REF: SPR 34402 xdeepadh
66 void mmi_audio_player_set_cur_selected_channels(void);
67 //Sep 11, 2006 DR: OMAPS00094182 xrashmic
68 GLOBAL int mmi_audio_player_Application (MfwMnu* m, MfwMnuItem* i);
69
70 #if (BOARD == 71)
71 // Jun 06, 2006 REF: ERT OMAPS00070659 x0039928
72 int M_exePause (MfwMnu* m, MfwMnuItem* i);
73 int M_exeForward (MfwMnu* m, MfwMnuItem* i);
74 int M_exeRewind (MfwMnu* m, MfwMnuItem* i);
75 #endif
76
77 /*******************************************************************************
78
79 Include files
80
81 *******************************************************************************/
82
83 extern USHORT record_position;
84
85
86
87 /*******************************************************************************
88
89 Interface constants
90
91 *******************************************************************************/
92
93
94
95
96 /*******************************************************************************
97
98 Public methods
99
100 *******************************************************************************/
101
102 /* pretty standard initialise, execute and exit methods
103 */
104
105
106 /*******************************************************************************
107
108 End of File
109
110 *******************************************************************************/
111
112 #endif
113