~ubuntu-branches/debian/jessie/scummvm/jessie

« back to all changes in this revision

Viewing changes to backends/platform/psp/mp3.h

  • Committer: Package Import Robot
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-11-05 10:29:43 UTC
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: package-import@ubuntu.com-20111105102943-zfm3dhlvy5b01u7v
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * along with this program; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 *
21
 
 * $URL$
22
 
 * $Id$
23
 
 *
24
21
 */
25
22
 
26
23
#ifndef SOUND_MP3_PSP_H
27
24
#define SOUND_MP3_PSP_H
28
25
 
 
26
#include "common/ptr.h"
29
27
#include "common/types.h"
30
28
#include "common/scummsys.h"
31
29
 
51
49
        byte _codecInBuffer[3072] __attribute__((aligned(64))); // the codec always needs alignment
52
50
        unsigned long _codecParams[65]__attribute__((aligned(64)));             // TODO: change to struct
53
51
 
54
 
        Common::SeekableReadStream *_inStream;
55
 
        DisposeAfterUse::Flag _disposeAfterUse;
 
52
        Common::DisposablePtr<Common::SeekableReadStream> _inStream;
56
53
 
57
54
        uint32 _pcmLength;              // how many pcm samples we have for this type of file (x2 this for stereo)
58
55