-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 6ec4583..83c148f 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp | |||
@@ -1,94 +1,93 @@ | |||
1 | /************************************************************************************ | 1 | /************************************************************************************ |
2 | ** | 2 | ** |
3 | ** This file may be distributed and/or modified under the terms of the | 3 | ** This file may be distributed and/or modified under the terms of the |
4 | ** GNU General Public License version 2 as published by the Free Software | 4 | ** GNU General Public License version 2 as published by the Free Software |
5 | ** Foundation and appearing in the file LICENSE.GPL included in the | 5 | ** Foundation and appearing in the file LICENSE.GPL included in the |
6 | ** packaging of this file. | 6 | ** packaging of this file. |
7 | ** | 7 | ** |
8 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 8 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
9 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 9 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
10 | ** | 10 | ** |
11 | ************************************************************************************/ | 11 | ************************************************************************************/ |
12 | // copyright 2002 Jeremy Cowgar <jc@cowgar.com> | 12 | // copyright 2002 Jeremy Cowgar <jc@cowgar.com> |
13 | /* | 13 | /* |
14 | * $Id$ | 14 | * $Id$ |
15 | */ | 15 | */ |
16 | // copyright 2002 and 2003 L.J.Potter <ljp@llornkcor.com> | 16 | // copyright 2002 and 2003 L.J.Potter <ljp@llornkcor.com> |
17 | 17 | ||
18 | extern "C" { | 18 | extern "C" { |
19 | #include "adpcm.h" | 19 | #include "adpcm.h" |
20 | } | 20 | } |
21 | 21 | ||
22 | #include <unistd.h> | 22 | #include <unistd.h> |
23 | #include <stdio.h> | 23 | #include <stdio.h> |
24 | #include <fcntl.h> | 24 | #include <fcntl.h> |
25 | #include <sys/ioctl.h> | 25 | #include <sys/ioctl.h> |
26 | #include <linux/soundcard.h> | 26 | #include <linux/soundcard.h> |
27 | 27 | ||
28 | #include <errno.h> | 28 | #include <errno.h> |
29 | 29 | ||
30 | |||
31 | typedef struct _waveheader { | 30 | typedef struct _waveheader { |
32 | u_long main_chunk; /* 'RIFF' */ | 31 | u_long main_chunk; /* 'RIFF' */ |
33 | u_long length; /* filelen */ | 32 | u_long length; /* filelen */ |
34 | u_long chunk_type; /* 'WAVE' */ | 33 | u_long chunk_type; /* 'WAVE' */ |
35 | u_long sub_chunk; /* 'fmt ' */ | 34 | u_long sub_chunk; /* 'fmt ' */ |
36 | u_long sc_len; /* length of sub_chunk, =16 | 35 | u_long sc_len; /* length of sub_chunk, =16 |
37 | (chunckSize) format len */ | 36 | (chunckSize) format len */ |
38 | u_short format; /* should be 1 for PCM-code (formatTag) */ | 37 | u_short format; /* should be 1 for PCM-code (formatTag) */ |
39 | 38 | ||
40 | u_short modus; /* 1 Mono, 2 Stereo (channels) */ | 39 | u_short modus; /* 1 Mono, 2 Stereo (channels) */ |
41 | u_long sample_fq; /* samples per second (samplesPerSecond) */ | 40 | u_long sample_fq; /* samples per second (samplesPerSecond) */ |
42 | u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */ | 41 | u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */ |
43 | u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */ | 42 | u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */ |
44 | u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */ | 43 | u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */ |
45 | 44 | ||
46 | u_long data_chunk; /* 'data' */ | 45 | u_long data_chunk; /* 'data' */ |
47 | 46 | ||
48 | u_long data_length;/* samplecount */ | 47 | u_long data_length;/* samplecount */ |
49 | } WaveHeader; | 48 | } WaveHeader; |
50 | 49 | ||
51 | #define RIFF 0x46464952 | 50 | #define RIFF 0x46464952 |
52 | #define WAVE 0x45564157 | 51 | #define WAVE 0x45564157 |
53 | #define FMT 0x20746D66 | 52 | #define FMT 0x20746D66 |
54 | #define DATA 0x61746164 | 53 | #define DATA 0x61746164 |
55 | #define PCM_CODE 1 | 54 | #define PCM_CODE 1 |
56 | #define WAVE_MONO 1 | 55 | #define WAVE_MONO 1 |
57 | #define WAVE_STEREO 2 | 56 | #define WAVE_STEREO 2 |
58 | 57 | ||
59 | struct adpcm_state encoder_state; | 58 | struct adpcm_state encoder_state; |
60 | //struct adpcm_state decoder_state; | 59 | //struct adpcm_state decoder_state; |
61 | 60 | ||
62 | #define WAVE_FORMAT_DVI_ADPCM (0x0011) | 61 | #define WAVE_FORMAT_DVI_ADPCM (0x0011) |
63 | #define WAVE_FORMAT_PCM (0x0001) | 62 | #define WAVE_FORMAT_PCM (0x0001) |
64 | 63 | ||
65 | 64 | ||
66 | #include "vmemo.h" | 65 | #include "vmemo.h" |
67 | 66 | ||
68 | #include <qpe/qpeapplication.h> | 67 | #include <qpe/qpeapplication.h> |
69 | #include <qpe/config.h> | 68 | #include <qpe/config.h> |
70 | 69 | ||
71 | #include <qpainter.h> | 70 | #include <qpainter.h> |
72 | #include <qmessagebox.h> | 71 | #include <qmessagebox.h> |
73 | 72 | ||
74 | int seq = 0; | 73 | int seq = 0; |
75 | 74 | ||
76 | /* XPM */ | 75 | /* XPM */ |
77 | static char * vmemo_xpm[] = { | 76 | static char * vmemo_xpm[] = { |
78 | "16 16 102 2", | 77 | "16 16 102 2", |
79 | " c None", | 78 | " c None", |
80 | ". c #60636A", | 79 | ". c #60636A", |
81 | "+ c #6E6E72", | 80 | "+ c #6E6E72", |
82 | "@ c #68696E", | 81 | "@ c #68696E", |
83 | "# c #4D525C", | 82 | "# c #4D525C", |
84 | "$ c #6B6C70", | 83 | "$ c #6B6C70", |
85 | "% c #E3E3E8", | 84 | "% c #E3E3E8", |
86 | "& c #EEEEF2", | 85 | "& c #EEEEF2", |
87 | "* c #EAEAEF", | 86 | "* c #EAEAEF", |
88 | "= c #CACAD0", | 87 | "= c #CACAD0", |
89 | "- c #474A51", | 88 | "- c #474A51", |
90 | "; c #171819", | 89 | "; c #171819", |
91 | "> c #9B9B9F", | 90 | "> c #9B9B9F", |
92 | ", c #EBEBF0", | 91 | ", c #EBEBF0", |
93 | "' c #F4F4F7", | 92 | "' c #F4F4F7", |
94 | ") c #F1F1F5", | 93 | ") c #F1F1F5", |