-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecoder-mp3-stream.c
125 lines (113 loc) · 2.88 KB
/
decoder-mp3-stream.c
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
/*
* MP3/MPlayer plugin to VDR (C++)
*
* (C) 2001-2005 Stefan Huelswitt <[email protected]>
*
* This code is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include "common.h"
#include "decoder-mp3-stream.h"
#include "stream.h"
// --- cNetScanID3 -------------------------------------------------------------
class cNetScanID3 : public cScanID3 {
private:
cNetStream *nstr;
//
void IcyInfo(void);
public:
cNetScanID3(cNetStream *Str, bool *Urgent);
virtual bool DoScan(bool KeepOpen=false);
virtual void InfoHook(struct mad_header *header);
};
cNetScanID3::cNetScanID3(cNetStream *Str, bool *Urgent)
:cScanID3(Str,Urgent)
{
nstr=Str;
}
bool cNetScanID3::DoScan(bool KeepOpen)
{
Clear();
IcyInfo();
if(!Title) FakeTitle(nstr->Filename);
Total=0;
ChMode=3;
DecoderID=DEC_MP3S;
InfoDone();
return true;
}
void cNetScanID3::InfoHook(struct mad_header *header)
{
if(nstr->IcyChanged()) IcyInfo();
SampleFreq=header->samplerate;
Channels=MAD_NCHANNELS(header);
ChMode=header->mode;
int br=header->bitrate;
if(Bitrate<0) Bitrate=br;
else if(Bitrate!=br) {
if(MaxBitrate<0) {
if(Bitrate<br) MaxBitrate=br;
else { MaxBitrate=Bitrate; Bitrate=br; }
}
else {
if(br>MaxBitrate) MaxBitrate=br;
if(br<Bitrate) Bitrate=br;
}
}
}
void cNetScanID3::IcyInfo(void)
{
const char *t=nstr->IcyTitle();
const char *a;
if(t) {
a=nstr->IcyName();
if(!a) a=nstr->IcyUrl();
}
else {
t=nstr->IcyName();
a=nstr->IcyUrl();
}
if(t && (!Title || strcmp(t,Title))) {
free(Title);
Title=strdup(t);
}
if(a && (!Album || strcmp(a,Album))) {
free(Album);
Album=strdup(a);
}
}
// --- cMP3StreamDecoder -------------------------------------------------------
cMP3StreamDecoder::cMP3StreamDecoder(const char *Filename)
:cMP3Decoder(Filename,false)
{
nstr=new cNetStream(filename);
str=nstr;
nscan=new cNetScanID3(nstr,&urgentLock);
scan=nscan;
isStream=true;
}
bool cMP3StreamDecoder::Valid(void)
{
bool res=false;
if(TryLock()) {
if(nstr->Valid()) res=true;
Unlock();
}
return res;
}