decoder-ogg.c
branchtrunk
changeset 25 887faebaba0a
parent 6 111ef8181229
child 33 65ed49cbc08b
     1.1 --- a/decoder-ogg.c	Wed Feb 04 19:34:25 2009 +0800
     1.2 +++ b/decoder-ogg.c	Thu Feb 12 20:47:23 2009 +0800
     1.3 @@ -1,7 +1,7 @@
     1.4  /*
     1.5   * MP3/MPlayer plugin to VDR (C++)
     1.6   *
     1.7 - * (C) 2001-2005 Stefan Huelswitt <s.huelswitt@gmx.de>
     1.8 + * (C) 2001-2009 Stefan Huelswitt <s.huelswitt@gmx.de>
     1.9   *
    1.10   * This code is free software; you can redistribute it and/or
    1.11   * modify it under the terms of the GNU General Public License
    1.12 @@ -147,6 +147,7 @@
    1.13    cCacheData *dat=InfoCache.Search(file);
    1.14    if(dat) {
    1.15      Set(dat); dat->Unlock();
    1.16 +    ConvertToSys();
    1.17      if(!DecoderID) {
    1.18        DecoderID=DEC_OGG;
    1.19        InfoCache.Cache(this,file);
    1.20 @@ -205,7 +206,8 @@
    1.21  
    1.22    InfoDone();
    1.23    InfoCache.Cache(this,file);
    1.24 -  return Abort(true);  
    1.25 +  ConvertToSys();
    1.26 +  return Abort(true);
    1.27  }
    1.28  
    1.29  // --- cOggDecoder -------------------------------------------------------------