summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/splay/mpegAudioInfo.cpp
blob: 981b5bd6964f8e41dfad11f82bde44e88128ccb1 (plain)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/*
  length detection etc.. for mpeg audio
  Copyright (C) 2001  Martin Vogt

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU Library General Public License as published by
  the Free Software Foundation.

  For more information look at the file COPYRIGHT in this package

 */

#ifndef _FROM_SOURCE
#define _FROM_SOURCE 1
#endif
#include "dxHead.h"
#include <string.h>
#include "mpegAudioInfo.h"
#include "mpegAudioHeader.h"
#include "mpegAudioStream.h"
#include "mpegAudioFrame.h"

#include <iostream>

using namespace std;

#define _NEED_LENGTH  1
#define _NEED_ID3     2
#define _NEED_NOTHING 3


MpegAudioInfo::MpegAudioInfo(FileAccess* input) {
  xHeadData=new XHEADDATA();
  xHeadData->toc=new unsigned char[101];
  lXingVBR=false;
  id3=new ID3TAG();
  this->input=input;
  mpegAudioFrame =new MpegAudioFrame();
  mpegAudioStream=new MpegAudioStream();
  mpegAudioHeader=new MpegAudioHeader();
  reset();
}


MpegAudioInfo::~MpegAudioInfo() {
  delete[] (xHeadData->toc);
  delete xHeadData;
  delete id3;
  delete mpegAudioStream;
  delete mpegAudioHeader;
  delete mpegAudioFrame;
}


int MpegAudioInfo::getByteDirect() {
  unsigned char byte;
  if (input->read((char*)&byte,1) != 1) {
    leof=true;
    return -1;
  }
  return (int)byte;
}

void MpegAudioInfo::reset() {
  length=0;
  initState=_NEED_LENGTH;
  lNeedInit=true;
}


int MpegAudioInfo::getNeedInit() {
  return lNeedInit;
}

void MpegAudioInfo::setNeedInit(int lNeedInit) {
  this->lNeedInit=lNeedInit;
}


int MpegAudioInfo::initialize() {
  long fileSize=input->getByteLength();
  switch(initState) {
  case _NEED_NOTHING:
    return true;
    break;
  case _NEED_LENGTH:
    if (initializeLength(fileSize) == true) {
      initState=_NEED_ID3;
    }
    return false;
  case _NEED_ID3:
    if (initializeID3(fileSize) == true) {
      initState=_NEED_NOTHING;
      return true;
    }
    return false;
  default:
    cout << "unknown initState in MpegAudioInfo::initialize"<<endl;
    exit(0);
  }
  // never happens
  return true;
}


int MpegAudioInfo::initializeLength(long fileSize) {
  // if we are streaming don't touch the stream for length detection
  if (fileSize == 0) {
    return true;
  }
  int back=getFrame(mpegAudioFrame);
  if (back != true) {
    return back;
  }
  // found a valid frame (back == true)
  // store information in header.
  if (mpegAudioHeader->parseHeader(mpegAudioFrame->outdata()) == false) {
    cout << "parse header false"<<endl;
    return false;
  }
  calculateLength(fileSize);
  return back;
}

int MpegAudioInfo::initializeID3(long fileSize) {
  int pos=input->getBytePosition();
  if (input->seek(fileSize-128)<0) {
    return true;
  }
  parseID3();
  input->seek(pos);
  return true;
}


long MpegAudioInfo::getLength() {
  return length;
}


void MpegAudioInfo::calculateLength(long fileSize) {
  
  int totalframe=0;
  int framesize=mpegAudioHeader->getFramesize();
  if (framesize > 0) {
    totalframe=fileSize/framesize;
    
    if (parseXing(mpegAudioFrame->outdata(),mpegAudioFrame->len()) == true) {
      lXingVBR=true;
      totalframe=xHeadData->frames;
    }
  }
  
  float pcm=mpegAudioHeader->getpcmperframe();
  float wavfilesize=(totalframe*pcm);
  float frequence=(float)mpegAudioHeader->getFrequencyHz();
  length=0;
  if (frequence != 0) {
    length=(int)(wavfilesize/frequence);
  }
}


int MpegAudioInfo::parseXing(unsigned char* frame,int size) {

  int back=false;
  if (size < 152) {
    return false;
  }
  back=GetXingHeader(xHeadData,(unsigned char*)frame);
  return back;

}



long MpegAudioInfo::getSeekPosition(int second) {
  float length=getLength();
  long fileSize=input->getByteLength();
  long pos=0;
  if (length<1.0) {
    return 0;
  }
  float percent=(float)second/length;
  
  if (lXingVBR) {
    pos=SeekPoint(xHeadData->toc,(int)fileSize,100.0*percent);
    return pos;
  }
  pos=(long)(percent*(float)fileSize);
  return pos;
}


void MpegAudioInfo::parseID3() {
   
  id3->name    [0]=0;
  id3->artist  [0]=0;
  id3->album   [0]=0;
  id3->year    [0]=0;
  id3->comment [0]=0;
  id3->genre      =0;
  
  leof=false;

  while(leof == false) {
    if(getByteDirect()==0x54)
      if(getByteDirect()==0x41)
        if(getByteDirect()==0x47) {
	  input->read((char*)&id3->name    ,30);id3->name[30]=0;
	  input->read((char*)&id3->artist  ,30);id3->artist[30]=0;
	  input->read((char*)&id3->album   ,30);id3->album[30]=0;
	  input->read((char*)&id3->year    , 4);id3->year[4]=0;
	  input->read((char*)&id3->comment ,30);id3->comment[30]=0;
	  input->read((char*)&id3->genre   ,1);
          return;
        }
  }
}



void MpegAudioInfo::print(const char* msg) {
  cout << "MpegAudioInfo:"<<msg<<endl;
  cout << "Length (sec):"<<length<<endl;
  cout << "VBR:"<<lXingVBR<<endl;
  cout << "ID3: Name:"<<id3->name<<endl;
  cout << "ID3: Artist:"<<id3->artist<<endl;
  cout << "ID3: Album:"<<id3->album<<endl;
  cout << "ID3: year:"<<id3->year<<endl;
  cout << "ID3: genre:"<<(int)(id3->genre)<<endl;
  cout << "ID3: comment:"<<id3->comment<<endl;

}


int MpegAudioInfo::getFrame(MpegAudioFrame* frame) {
  int state=frame->getState();
  switch(state) {
  case FRAME_NEED: {
    int bytes=frame->canStore();
    int read=input->read((char*)inputbuffer,bytes);
    if (read <= 0) {
      // read error. reset framer
      frame->reset();
      break;
    }
    frame->store(inputbuffer,bytes);
    break;
  }
  case FRAME_WORK:
    frame->work();
    break;
  case FRAME_HAS:
    return true;
    break;
  default:
    cout << "unknown state in mpeg audio framing"<<endl;
    exit(0);
  }
  return false;
}