TDME2 1.9.121
VorbisDecoder.cpp
Go to the documentation of this file.
1// This source code is based on
2/********************************************************************
3 * *
4 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
5 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
6 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
7 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
8 * *
9 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
10 * by the Xiph.Org Foundation http://www.xiph.org/ *
11 * *
12 ********************************************************************/
13
14#include <stdio.h>
15
17
18#include <vorbis/vorbisfile.h>
19
20#include <string>
21
22#include <tdme/tdme.h>
30
31using std::string;
32
39
40size_t VorbisDecoder::oggfiledata_read(void* buffer, size_t size, size_t count, VorbisDecoder::OGGFileData* oggFileData) {
41 size_t bytesRead = 0;
42 for (size_t i = 0; i < size * count; i++) {
43 if (oggFileData->position == oggFileData->data.size()) break;
44 ((uint8_t*)buffer)[i] = oggFileData->data[oggFileData->position];
45 bytesRead++;
47 }
48 return bytesRead;
49}
50
51int VorbisDecoder::oggfiledata_seek(VorbisDecoder::OGGFileData* oggFileData, ogg_int64_t offset, int whence) {
52 switch (whence) {
53 case SEEK_SET:
54 oggFileData->position = offset;
55 return 0;
56 case SEEK_CUR:
57 oggFileData->position+= offset;
58 return 0;
59 case SEEK_END:
60 oggFileData->position = oggFileData->data.size() + offset;
61 return 0;
62 default:
63 return 1;
64 }
65}
66
68 return 0;
69}
70
72 return oggFileData->position;
73}
74
76{
77 section = 0;
78}
79
81{
82 close();
83}
84
85void VorbisDecoder::openFile(const string& pathName, const string& fileName) {
86 // read from file system
88 FileSystem::getInstance()->getContent(pathName, fileName, oggFileData->data);
89 if (oggFileData->data.size() == 0) {
90 throw AudioDecoderException("No input");
91 }
92
93 // set up ogg file callbacks
94 static ov_callbacks oggFileCallbacks = {
95 (size_t (*)(void *, size_t, size_t, void *)) oggfiledata_read,
96 (int (*)(void *, ogg_int64_t, int)) oggfiledata_seek,
97 (int (*)(void *)) oggfiledata_close,
98 (long (*)(void *)) oggfiledata_tell
99 };
100
101 //
102 this->pathName = pathName;
103 this->fileName = fileName;
104 if (ov_open_callbacks(oggFileData, &vf, NULL, 0, oggFileCallbacks) < 0) {
105 throw AudioDecoderException("Input does not appear to be an OGG bitstream");
106 }
107
108 // vorbis info
109 vorbis_info *vi = ov_info(&vf, -1);
110
111 /*
112 // fetch audio stream properties
113 char **ptr = ov_comment(&vf, -1)->user_comments;
114 // Throw the comments plus a few lines about the bitstream we're decoding
115 while (*ptr) {
116 fprintf(stderr, "%s\n", *ptr);
117 ++ptr;
118 }
119 fprintf(stderr, "\nBitstream is %d channel, %ldHz\n", vi->channels, vi->rate);
120 fprintf(stderr, "\nDecoded length: %ld samples\n",(long) ov_pcm_total(&vf, -1));
121 fprintf(stderr, "Encoded by: %s\n\n", ov_comment(&vf, -1)->vendor);
122 */
123
124 // set audio stream properties
125 channels = vi->channels;
126 sampleRate = vi->rate;
127 bitsPerSample = 16;
128 samples = ov_pcm_total(&vf, -1);
129 section = 0;
130}
131
133 close();
135}
136
138 int32_t read = 0;
139 while (read < data->getCapacity()) {
140 long len = ov_read(
141 &vf,
142 (char*)(data->getBuffer() + read),
143 data->getCapacity() - read,
144 // powerpc and powerpc64 are considered to use big endianess for now
145 #if defined(__powerpc__) || defined(__powerpc64__)
146 1,
147 #else
148 0,
149 #endif
150 2,
151 1,
152 &section
153 );
154 if (len <= 0) break;
155 read+= len;
156 }
157 data->setPosition(read);
158 return read;
159}
160
162 if (oggFileData == nullptr) return;
163 if (oggFileData->data.size() > 0) ov_clear(&vf);
164 delete oggFileData;
165 oggFileData = nullptr;
166}
Audio decoder base class.
Definition: AudioDecoder.h:24
OGG/Vorbis audio decoder.
Definition: VorbisDecoder.h:29
virtual void openFile(const string &pathName, const string &fileName)
Open a local file.
static int oggfiledata_close(VorbisDecoder::OGGFileData *oggFileData)
Close OGG file data.
virtual void close()
Closes the audio file.
static int oggfiledata_seek(VorbisDecoder::OGGFileData *oggFileData, ogg_int64_t offset, int whence)
Seek in OGG file data.
static size_t oggfiledata_read(void *buffer, size_t size, size_t count, VorbisDecoder::OGGFileData *oggFileData)
Read from OGG file data.
virtual void reset()
Resets this audio decoder, if a stream was open it will be rewinded.
virtual int32_t readFromStream(ByteBuffer *data)
Read raw PCM data from stream.
static long oggfiledata_tell(VorbisDecoder::OGGFileData *oggFileData)
Tell position of OGG file data.
File system singleton class.
Definition: FileSystem.h:14
uint8_t * getBuffer()
Definition: Buffer.h:131
virtual int32_t getCapacity()
Definition: Buffer.h:77
virtual Buffer * setPosition(int32_t position)
Set position.
Definition: Buffer.h:93
Byte buffer class.
Definition: ByteBuffer.h:24