decoder-ogg.c
author nathan
Sat, 24 Oct 2009 11:31:53 +0800
branchtrunk
changeset 32 cea1b4f741be
parent 25 887faebaba0a
child 33 65ed49cbc08b
permissions -rw-r--r--
ignore errors while scaning recursive directories
     1 /*
     2  * MP3/MPlayer plugin to VDR (C++)
     3  *
     4  * (C) 2001-2009 Stefan Huelswitt <s.huelswitt@gmx.de>
     5  *
     6  * This code is free software; you can redistribute it and/or
     7  * modify it under the terms of the GNU General Public License
     8  * as published by the Free Software Foundation; either version 2
     9  * of the License, or (at your option) any later version.
    10  *
    11  * This code is distributed in the hope that it will be useful,
    12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14  * GNU General Public License for more details.
    15  *
    16  * You should have received a copy of the GNU General Public License
    17  * along with this program; if not, write to the Free Software
    18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    19  * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
    20  */
    21 
    22 #ifdef HAVE_VORBISFILE
    23 
    24 #include <stdlib.h>
    25 #include <stdio.h>
    26 #include <errno.h>
    27 
    28 #include "common.h"
    29 #include "decoder-ogg.h"
    30 
    31 // --- cOggFile ----------------------------------------------------------------
    32 
    33 cOggFile::cOggFile(const char *Filename)
    34 :cFileInfo(Filename)
    35 {
    36   canSeek=opened=false;
    37 }
    38 
    39 cOggFile::~cOggFile()
    40 {
    41   Close();
    42 }
    43 
    44 bool cOggFile::Open(bool log)
    45 {
    46   if(opened) {
    47     if(canSeek) return (Seek()>=0);
    48     return true;
    49     }
    50 
    51   if(FileInfo(log)) {
    52     FILE *f=fopen(Filename,"r");
    53     if(f) {
    54       int r=ov_open(f,&vf,0,0);
    55       if(!r) {
    56         canSeek=(ov_seekable(&vf)!=0);
    57         opened=true;
    58         }
    59       else {
    60         fclose(f);
    61         if(log) Error("open",r);
    62         }
    63       }
    64     else if(log) { esyslog("ERROR: failed to open file %s: %s",Filename,strerror(errno)); }
    65     }
    66   return opened;
    67 }
    68 
    69 void cOggFile::Close(void)
    70 {
    71   if(opened) { ov_clear(&vf); opened=false; }
    72 }
    73 
    74 void cOggFile::Error(const char *action, const int err)
    75 {
    76   const char *errstr;
    77   switch(err) {
    78     case OV_FALSE:      errstr="false/no data available"; break;
    79     case OV_EOF:        errstr="EOF"; break;
    80     case OV_HOLE:       errstr="missing or corrupted data"; break;
    81     case OV_EREAD:      errstr="read error"; break;
    82     case OV_EFAULT:     errstr="internal error"; break;
    83     case OV_EIMPL:      errstr="unimplemented feature"; break;
    84     case OV_EINVAL:     errstr="invalid argument"; break;
    85     case OV_ENOTVORBIS: errstr="no Ogg Vorbis stream"; break;
    86     case OV_EBADHEADER: errstr="corrupted Ogg Vorbis stream"; break;
    87     case OV_EVERSION:   errstr="unsupported bitstream version"; break;
    88     case OV_ENOTAUDIO:  errstr="ENOTAUDIO"; break;
    89     case OV_EBADPACKET: errstr="EBADPACKET"; break;
    90     case OV_EBADLINK:   errstr="corrupted link"; break;
    91     case OV_ENOSEEK:    errstr="stream not seekable"; break;
    92     default:            errstr="unspecified error"; break;
    93     }
    94   esyslog("ERROR: vorbisfile %s failed on %s: %s",action,Filename,errstr);
    95 }
    96 
    97 long long cOggFile::IndexMs(void)
    98 {
    99   double p=ov_time_tell(&vf);
   100   if(p<0.0) p=0.0;
   101   return (long long)(p*1000.0);
   102 }
   103 
   104 long long cOggFile::Seek(long long posMs, bool relativ)
   105 {
   106   if(relativ) posMs+=IndexMs();
   107   int r=ov_time_seek(&vf,(double)posMs/1000.0);
   108   if(r) {
   109     Error("seek",r);
   110     return -1;
   111     }
   112   posMs=IndexMs();
   113   return posMs;
   114 }
   115 
   116 int cOggFile::Stream(short *buffer, int samples)
   117 {
   118   int n;
   119   do {
   120     int stream;
   121     n=ov_read(&vf,(char *)buffer,samples*2,0,2,1,&stream);
   122     } while(n==OV_HOLE);
   123   if(n<0) Error("read",n);
   124   return (n/2);
   125 }
   126 
   127 // --- cOggInfo ----------------------------------------------------------------
   128 
   129 cOggInfo::cOggInfo(cOggFile *File)
   130 {
   131   file=File;
   132 }
   133 
   134 bool cOggInfo::Abort(bool result)
   135 {
   136   if(!keepOpen) file->Close();
   137   return result;
   138 }
   139 
   140 bool cOggInfo::DoScan(bool KeepOpen)
   141 {
   142   keepOpen=KeepOpen;
   143   if(!file->Open()) return Abort(false);
   144   if(HasInfo()) return Abort(true);
   145 
   146   // check the infocache
   147   cCacheData *dat=InfoCache.Search(file);
   148   if(dat) {
   149     Set(dat); dat->Unlock();
   150     ConvertToSys();
   151     if(!DecoderID) {
   152       DecoderID=DEC_OGG;
   153       InfoCache.Cache(this,file);
   154       }
   155     return Abort(true);
   156     }
   157 
   158   Clear();
   159 
   160   vorbis_comment *vc=ov_comment(&file->vf,-1);
   161   if(vc) {
   162     for(int i=0 ; i<vc->comments ; i++) {
   163       const char *cc=vc->user_comments[i];
   164       d(printf("ogg: comment%d='%s'\n",i,cc))
   165       char *p=strchr(cc,'=');
   166       if(p) {
   167         const int len=p-cc;
   168         p++;
   169         if(!strncasecmp(cc,"TITLE",len)) {
   170           if(!Title) Title=strdup(p);
   171           }
   172         else if(!strncasecmp(cc,"ARTIST",len)) {
   173           if(!Artist) Artist=strdup(p);
   174           }
   175         else if(!strncasecmp(cc,"ALBUM",len)) {
   176           if(!Album) Album=strdup(p);
   177           }
   178         else if(!strncasecmp(cc,"YEAR",len)) {
   179           if(Year<0) {
   180             Year=atoi(p);
   181             if(Year<1800 || Year>2100) Year=-1;
   182             }
   183           }
   184         }
   185       }
   186     }
   187   if(!Title) FakeTitle(file->Filename);
   188 
   189   vorbis_info *vi=ov_info(&file->vf,-1);
   190   if(!vi) Abort(false);
   191   d(printf("ogg: info ch=%d srate=%ld brate_low=%ld brate_high=%ld brate_avg=%ld\n",
   192             vi->channels,vi->rate,vi->bitrate_lower,vi->bitrate_upper,vi->bitrate_nominal))
   193   Channels=vi->channels;
   194   ChMode=Channels>1 ? 3:0;
   195   SampleFreq=vi->rate;
   196   if(vi->bitrate_upper>0 && vi->bitrate_lower>0) {
   197     Bitrate=vi->bitrate_lower;
   198     MaxBitrate=vi->bitrate_upper;
   199     }
   200   else
   201     Bitrate=vi->bitrate_nominal;
   202 
   203   Total=(int)ov_time_total(&file->vf,-1);
   204   Frames=-1;
   205   DecoderID=DEC_OGG;
   206 
   207   InfoDone();
   208   InfoCache.Cache(this,file);
   209   ConvertToSys();
   210   return Abort(true);
   211 }
   212 
   213 // --- cOggDecoder -------------------------------------------------------------
   214 
   215 cOggDecoder::cOggDecoder(const char *Filename)
   216 :cDecoder(Filename)
   217 ,file(Filename)
   218 ,info(&file)
   219 {
   220   pcm=0;
   221 }
   222 
   223 cOggDecoder::~cOggDecoder()
   224 {
   225   Clean();
   226 }
   227 
   228 bool cOggDecoder::Valid(void)
   229 {
   230   bool res=false;
   231   if(TryLock()) {
   232     if(file.Open(false)) res=true;
   233     Unlock();
   234     }
   235   return res;
   236 }
   237 
   238 cFileInfo *cOggDecoder::FileInfo(void)
   239 {
   240   cFileInfo *fi=0;
   241   if(file.HasInfo()) fi=&file;
   242   else if(TryLock()){
   243     if(file.Open()) { fi=&file; file.Close(); }
   244     Unlock();
   245     }
   246   return fi;
   247 }
   248 
   249 cSongInfo *cOggDecoder::SongInfo(bool get)
   250 {
   251   cSongInfo *si=0;
   252   if(info.HasInfo()) si=&info;
   253   else if(get && TryLock()) {
   254     if(info.DoScan(false)) si=&info;
   255     Unlock();
   256     }
   257   return si;
   258 }
   259 
   260 cPlayInfo *cOggDecoder::PlayInfo(void)
   261 {
   262   if(playing) {
   263     pi.Index=index/1000;
   264     pi.Total=info.Total;
   265     return &pi;
   266     }
   267   return 0;
   268 }
   269 
   270 void cOggDecoder::Init(void)
   271 {
   272   Clean();
   273   pcm=new struct mad_pcm;
   274   index=0;
   275 }
   276 
   277 bool cOggDecoder::Clean(void)
   278 {
   279   playing=false;
   280   delete pcm; pcm=0;
   281   file.Close();
   282   return false;
   283 }
   284 
   285 #define SF_SAMPLES (sizeof(pcm->samples[0])/sizeof(mad_fixed_t))
   286 
   287 bool cOggDecoder::Start(void)
   288 {
   289   Lock(true);
   290   Init(); playing=true;
   291   if(file.Open() && info.DoScan(true)) {
   292     d(printf("ogg: open rate=%d channels=%d seek=%d\n",
   293              info.SampleFreq,info.Channels,file.CanSeek()))
   294     if(info.Channels<=2) {
   295       Unlock();
   296       return true;
   297       }
   298     else esyslog("ERROR: cannot play ogg file %s: more than 2 channels",filename);
   299     }
   300   Clean();
   301   Unlock();
   302   return false;
   303 }
   304 
   305 bool cOggDecoder::Stop(void)
   306 {
   307   Lock();
   308   if(playing) Clean();
   309   Unlock();
   310   return true;
   311 }
   312 
   313 struct Decode *cOggDecoder::Done(eDecodeStatus status)
   314 {
   315   ds.status=status;
   316   ds.index=index;
   317   ds.pcm=pcm;
   318   Unlock(); // release the lock from Decode()
   319   return &ds;
   320 }
   321 
   322 struct Decode *cOggDecoder::Decode(void)
   323 {
   324   Lock(); // this is released in Done()
   325   if(playing) {
   326     short framebuff[2*SF_SAMPLES];
   327     int n=file.Stream(framebuff,SF_SAMPLES);
   328     if(n<0) return Done(dsError);
   329     if(n==0) return Done(dsEof);
   330 
   331     pcm->samplerate=info.SampleFreq;
   332     pcm->channels=info.Channels;
   333     n/=pcm->channels;
   334     pcm->length=n;
   335     index=file.IndexMs();
   336 
   337     short *data=framebuff;
   338     mad_fixed_t *sam0=pcm->samples[0], *sam1=pcm->samples[1]; 
   339     const int s=MAD_F_FRACBITS+1-(sizeof(short)*8); // shift value for mad_fixed conversion
   340     if(pcm->channels>1) {
   341       for(; n>0 ; n--) {
   342         *sam0++=(*data++) << s;
   343         *sam1++=(*data++) << s;
   344         }
   345       }
   346     else {
   347       for(; n>0 ; n--)
   348         *sam0++=(*data++) << s;
   349       }
   350     return Done(dsPlay);
   351     }
   352   return Done(dsError);
   353 }
   354 
   355 bool cOggDecoder::Skip(int Seconds, float bsecs)
   356 {
   357   Lock();
   358   bool res=false;
   359   if(playing && file.CanSeek()) {
   360     float fsecs=(float)Seconds - bsecs;
   361     long long newpos=file.IndexMs()+(long long)(fsecs*1000.0);
   362     if(newpos<0) newpos=0;
   363     d(printf("ogg: skip: secs=%d fsecs=%f current=%lld new=%lld\n",Seconds,fsecs,file.IndexMs(),newpos))
   364 
   365     newpos=file.Seek(newpos,false);
   366     if(newpos>=0) {
   367       index=file.IndexMs();
   368 #ifdef DEBUG
   369       int i=index/1000;
   370       printf("ogg: skipping to %02d:%02d\n",i/60,i%60);
   371 #endif
   372       res=true;
   373       }
   374     }
   375   Unlock();
   376   return res;
   377 }
   378 
   379 #endif //HAVE_VORBISFILE