FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/MmiMP3Test.h @ 3:93999a60b835
src/aci2, src/condat2: import of g23m/condat source pieces from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 26 Sep 2016 00:29:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c41a534f33c6 | 3:93999a60b835 |
---|---|
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 Nov 14, 2005 REF: OMAPS00044445 xdeepadh | |
36 Description: Implementation of Test Menu for AAC | |
37 Solution: The existing MP3 test Application has been enhanced to support the AAC file testing. | |
38 The interfaces have been made generic to support both MP3 and AAC files. | |
39 | |
40 Sep 27,2005 REF: SPR 34402 xdeepadh | |
41 Bug:Mono option is always highlighted even when Stereo is selected | |
42 Fix:The channel setting will be saved in the FFS, which will be retrieved later | |
43 and the selected channel will be higlighted. | |
44 | |
45 Jul 18, 2005 REF: SPR 31695 xdeepadh | |
46 Bug:Problems with MP3 test application | |
47 Fix:The window handling of MP3 Test Application has been done properly. | |
48 | |
49 $End | |
50 | |
51 *******************************************************************************/ | |
52 EXTERN int mmi_audio_player_set_channel_mono (MfwMnu* m, MfwMnuItem* i); | |
53 EXTERN int mmi_audio_player_set_channel_stereo (MfwMnu* m, MfwMnuItem* i); | |
54 //Jul 18, 2005 REF: SPR 31695 xdeepadh | |
55 EXTERN int mmi_audio_player_files_browse (MfwMnu* m, MfwMnuItem* i); | |
56 GLOBAL int mmi_audio_player_play (MfwMnu* m, MfwMnuItem* i); | |
57 //Sep 27,2005 REF: SPR 34402 xdeepadh | |
58 void mmi_audio_player_set_cur_selected_channels(void); | |
59 | |
60 | |
61 /******************************************************************************* | |
62 | |
63 Include files | |
64 | |
65 *******************************************************************************/ | |
66 | |
67 extern USHORT record_position; | |
68 | |
69 | |
70 | |
71 /******************************************************************************* | |
72 | |
73 Interface constants | |
74 | |
75 *******************************************************************************/ | |
76 | |
77 | |
78 | |
79 | |
80 /******************************************************************************* | |
81 | |
82 Public methods | |
83 | |
84 *******************************************************************************/ | |
85 | |
86 /* pretty standard initialise, execute and exit methods | |
87 */ | |
88 | |
89 | |
90 /******************************************************************************* | |
91 | |
92 End of File | |
93 | |
94 *******************************************************************************/ | |
95 | |
96 #endif | |
97 |