]> git.tdb.fi Git - libs/al.git/blob - source/mp3decoder.cpp
Refactor Mp3Decoder a bit
[libs/al.git] / source / mp3decoder.cpp
1 #include <limits>
2 #include <mad.h>
3 #include <msp/strings/format.h>
4 #include "mp3decoder.h"
5
6 using namespace std;
7
8 namespace {
9
10 Msp::Int16 scale(mad_fixed_t sample)
11 {
12         if(sample<=-MAD_F_ONE)
13                 return numeric_limits<Msp::Int16>::min();
14         else if(sample>=MAD_F_ONE)
15                 return numeric_limits<Msp::Int16>::max();
16         else
17                 return (sample + (1<<(MAD_F_FRACBITS-16))) >> (MAD_F_FRACBITS-15);
18 }
19
20 } // namespace
21
22
23 namespace Msp {
24 namespace AL {
25
26 mp3_error::mp3_error(const std::string &func, int err):
27         runtime_error(format("%s: %s", func, get_message(err)))
28 { }
29
30 string mp3_error::get_message(int err)
31 {
32         return format("%d", err);
33 }
34
35
36 struct Mp3Decoder::Private
37 {
38         mad_stream stream;
39         mad_frame frame;
40         mad_synth synth;
41 };
42
43
44 Mp3Decoder::Mp3Decoder(IO::Seekable &io):
45         priv(new Private),
46         in(io),
47         in_buf_size(16384),
48         in_buffer(new char[in_buf_size]),
49         read_pos(0)
50 {
51         mad_stream_init(&priv->stream);
52         mad_frame_init(&priv->frame);
53         mad_synth_init(&priv->synth);
54
55         try
56         {
57                 if(!fill_input() || !decode(false))
58                         throw runtime_error("no mp3 data");
59
60                 format = create_format(2, MAD_NCHANNELS(&priv->frame.header));
61                 freq = priv->frame.header.samplerate;
62         }
63         catch(...)
64         {
65                 delete[] in_buffer;
66                 throw;
67         }
68 }
69
70 Mp3Decoder::~Mp3Decoder()
71 {
72         delete[] in_buffer;
73         mad_synth_finish(&priv->synth);
74         mad_frame_finish(&priv->frame);
75         mad_stream_finish(&priv->stream);
76         delete priv;
77 }
78
79 bool Mp3Decoder::detect(const string &sig)
80 {
81         if(sig.size()>=2 && sig[0]=='\xFF' && (sig[1]&0xE0)==0xE0)
82                 return true;
83
84         static const char id3_sig[] = { 'I', 'D', '3' };
85         if(sig.size()<sizeof(id3_sig))
86                 return false;
87         return !sig.compare(0, sizeof(id3_sig), id3_sig);
88 }
89
90 void Mp3Decoder::rewind()
91 {
92         in.seek(0, IO::S_BEG);
93 }
94
95 unsigned Mp3Decoder::read(char *buf, unsigned len)
96 {
97         unsigned nchan = get_n_channels(format);
98         mad_pcm &pcm = priv->synth.pcm;
99
100         unsigned pos = 0;
101         while(pos+2*nchan<=len)
102         {
103                 if(read_pos>=pcm.length && !decode(true))
104                         break;
105
106                 for(unsigned i=0; i<nchan; ++i)
107                 {
108                         Int16 sample = scale(pcm.samples[i][read_pos]);
109                         buf[pos++] = sample;
110                         buf[pos++] = sample>>8;
111                 }
112
113                 ++read_pos;
114         }
115
116         return pos;
117 }
118
119 bool Mp3Decoder::fill_input()
120 {
121         unsigned in_pos = 0;
122         if(priv->stream.next_frame && priv->stream.next_frame<priv->stream.bufend)
123         {
124                 copy(priv->stream.next_frame, priv->stream.bufend, in_buffer);
125                 in_pos = priv->stream.bufend-priv->stream.next_frame;
126         }
127
128         unsigned len = in.read(in_buffer+in_pos, in_buf_size-in_pos);
129         in_pos += len;
130
131         mad_stream_buffer(&priv->stream, reinterpret_cast<unsigned char *>(in_buffer), in_pos);
132         priv->stream.error = MAD_ERROR_NONE;
133
134         return len;
135 }
136
137 bool Mp3Decoder::try_decode(bool full)
138 {
139         if(full)
140                 return !mad_frame_decode(&priv->frame, &priv->stream);
141         else
142                 return !mad_header_decode(&priv->frame.header, &priv->stream);
143 }
144
145 bool Mp3Decoder::decode(bool full)
146 {
147         while(!try_decode(full))
148         {
149                 if(priv->stream.error==MAD_ERROR_BUFLEN)
150                 {
151                         if(!fill_input())
152                                 return false;
153                 }
154                 else if(!MAD_RECOVERABLE(priv->stream.error))
155                         throw mp3_error("mad_frame_decode", priv->stream.error);
156         }
157
158         if(full)
159         {
160                 read_pos = 0;
161                 mad_synth_frame(&priv->synth, &priv->frame);
162         }
163
164         return true;
165 }
166
167 } // namespace AL
168 } // namespace Msp