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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/*************************************************************************
VorbisDecoder.cpp - sub decoder for Vorbis in an Ogg container
-------------------
begin : Wed Dec 26 2012
copyright : (C) 2012 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "config.h"
#include <stdlib.h>
#include <ogg/ogg.h>
#include <vorbis/codec.h>
#include <QDate>
#include <QIODevice>
#include <QString>
#include <KLocalizedString>
#include "libkwave/Compression.h"
#include "libkwave/MessageBox.h"
#include "libkwave/MultiWriter.h"
#include "libkwave/Sample.h"
#include "libkwave/SampleArray.h"
#include "libkwave/StandardBitrates.h"
#include "libkwave/Utils.h"
#include "VorbisDecoder.h"
/** bitrate to be used when no bitrate has been decoded */
#define DEFAULT_BITRATE 128000
//***************************************************************************
Kwave::VorbisDecoder::VorbisDecoder(QIODevice *source,
ogg_sync_state &oy,
ogg_stream_state &os,
ogg_page& og,
ogg_packet& op)
:m_source(source), m_stream_start_pos(0), m_samples_written(0),
m_oy(oy), m_os(os), m_og(og), m_op(op)
{
}
//***************************************************************************
void Kwave::VorbisDecoder::parseTag(Kwave::FileInfo &info, const char *tag,
Kwave::FileProperty property)
{
int count = vorbis_comment_query_count(&m_vc, const_cast<char *>(tag));
if (count < 1) return;
QString value;
for (int i = 0; i < count; ++i) {
const char *text = vorbis_comment_query(&m_vc,
const_cast<char *>(tag), i);
if (i) value += _("; ");
value += QString::fromUtf8(text);
}
info.set(property, value);
}
//***************************************************************************
int Kwave::VorbisDecoder::open(QWidget *widget, Kwave::FileInfo &info)
{
// extract the initial header from the first page and verify that the
// Ogg bitstream is in fact Vorbis data
// I handle the initial header first instead of just having the code
// read all three Vorbis headers at once because reading the initial
// header is an easy way to identify a Vorbis bitstream and it's
// useful to see that functionality separated out.
vorbis_info_init(&m_vi);
vorbis_comment_init(&m_vc);
if (vorbis_synthesis_headerin(&m_vi, &m_vc, &m_op) < 0) {
// error case; not a vorbis header
Kwave::MessageBox::error(widget, i18n(
"This Ogg bitstream does not contain any Vorbis audio data."));
return -1;
}
// At this point, we're sure we're Vorbis. We've set up the logical
// (Ogg) bitstream decoder. Get the comment and codebook headers and
// set up the Vorbis decoder
// The next two packets in order are the comment and codebook headers.
// They're likely large and may span multiple pages. Thus we read
// and submit data until we get our two packets, watching that no
// pages are missing. If a page is missing, error out; losing a
// header page is the only place where missing data is fatal. */
unsigned int counter = 0;
while (counter < 2) {
while(counter < 2) {
int result = ogg_sync_pageout(&m_oy, &m_og);
if (result == 0) break; // Need more data
// Don't complain about missing or corrupt data yet. We'll
// catch it at the packet output phase
if (result == 1) {
// we can ignore any errors here
// as they'll also become apparent
// at packetout
ogg_stream_pagein(&m_os, &m_og);
while (counter < 2) {
result = ogg_stream_packetout(&m_os, &m_op);
if (result == 0) break;
if (result < 0) {
// Uh oh; data at some point was corrupted or
// missing! We can't tolerate that in a header.
// Die.
Kwave::MessageBox::error(widget, i18n(
"Corrupt secondary header. Exiting."));
return -1;
}
vorbis_synthesis_headerin(&m_vi, &m_vc, &m_op);
counter++;
}
}
}
// no harm in not checking before adding more
char *buffer = ogg_sync_buffer(&m_oy, 4096);
qint64 bytes = m_source->read(buffer, 4096);
if (!bytes && counter < 2) {
Kwave::MessageBox::error(widget, i18n(
"End of file before finding all Vorbis headers."));
return -1;
}
ogg_sync_wrote(&m_oy, static_cast<long int>(bytes));
}
// OK, got and parsed all three headers. Initialize the Vorbis
// packet->PCM decoder. */
vorbis_synthesis_init(&m_vd, &m_vi); // central decode state
vorbis_block_init(&m_vd, &m_vb); // local state for most of the decode
// so multiple block decodes can
// proceed in parallel. We could init
// multiple vorbis_block structures
// for m_vd here
// get the standard properties
info.setTracks(m_vi.channels);
info.setRate(static_cast<double>(m_vi.rate));
info.set(Kwave::INF_COMPRESSION, Kwave::Compression::OGG_VORBIS);
info.set(Kwave::INF_SOURCE, _(m_vc.vendor));
if ((m_vi.bitrate_nominal > 0) &&
(m_vi.bitrate_nominal < std::numeric_limits<int>::max()))
info.set(Kwave::INF_BITRATE_NOMINAL,
QVariant(Kwave::toInt(m_vi.bitrate_nominal)));
if ((m_vi.bitrate_lower > 0) &&
(m_vi.bitrate_lower < std::numeric_limits<int>::max()))
info.set(Kwave::INF_BITRATE_LOWER,
QVariant(Kwave::toInt(m_vi.bitrate_lower)));
if ((m_vi.bitrate_upper > 0) &&
(m_vi.bitrate_upper < std::numeric_limits<int>::max()))
info.set(Kwave::INF_BITRATE_UPPER,
QVariant(Kwave::toInt(m_vi.bitrate_upper)));
// the first comment sometimes is used for the software version
{
char **ptr = m_vc.user_comments;
QString s = _(*ptr);
if (s.length() && !s.contains(QLatin1Char('='))) {
info.set(Kwave::INF_SOFTWARE, s);
qDebug("Bitstream is %d channel, %ldHz", m_vi.channels, m_vi.rate);
qDebug("Encoded by: %s\n\n", m_vc.vendor);
}
}
/** convert the date property to a QDate */
parseTag(info, "DATE", Kwave::INF_CREATION_DATE);
if (info.contains(Kwave::INF_CREATION_DATE)) {
QString str_date = QVariant(info.get(
Kwave::INF_CREATION_DATE)).toString();
QDate date;
date = QDate::fromString(str_date, Qt::ISODate);
if (!date.isValid()) {
int year = str_date.toInt();
date.setDate(year, 1, 1);
}
if (date.isValid()) info.set(Kwave::INF_CREATION_DATE, date);
}
// parse all other (simple) properties
parseTag(info, "TITLE", Kwave::INF_NAME);
parseTag(info, "VERSION", Kwave::INF_VERSION);
parseTag(info, "ALBUM", Kwave::INF_ALBUM);
parseTag(info, "TRACKNUMBER", Kwave::INF_TRACK);
parseTag(info, "ARTIST", Kwave::INF_AUTHOR);
parseTag(info, "PERFORMER", Kwave::INF_PERFORMER);
parseTag(info, "COPYRIGHT", Kwave::INF_COPYRIGHT);
parseTag(info, "LICENSE", Kwave::INF_LICENSE);
parseTag(info, "ORGANIZATION", Kwave::INF_ORGANIZATION);
parseTag(info, "DESCRIPTION", Kwave::INF_SUBJECT);
parseTag(info, "GENRE", Kwave::INF_GENRE);
parseTag(info, "LOCATION", Kwave::INF_SOURCE);
parseTag(info, "CONTACT", Kwave::INF_CONTACT);
parseTag(info, "ISRC", Kwave::INF_ISRC);
parseTag(info, "ENCODER", Kwave::INF_SOFTWARE);
parseTag(info, "VBR_QUALITY", Kwave::INF_VBR_QUALITY);
// estimate a length
// estimate the length of the file from file size, bitrate, channels
if (!m_source->isSequential()) {
long int br = -1;
if ( (m_vi.bitrate_nominal > 0)) br = m_vi.bitrate_nominal;
if ((br < 0) && (m_vi.bitrate_upper > 0)) br = m_vi.bitrate_upper;
if ((br < 0) && (m_vi.bitrate_lower > 0)) br = m_vi.bitrate_lower;
qint64 file_size = m_source->size();
qreal rate = static_cast<qreal>(m_vi.rate);
qreal seconds = (br >= 8) ?
static_cast<qreal>(file_size / (br / 8)) : DEFAULT_BITRATE;
sample_index_t samples = static_cast<sample_index_t>(seconds * rate);
qDebug(" estimated length: %llu samples", samples);
info.set(Kwave::INF_ESTIMATED_LENGTH, samples);
}
m_stream_start_pos = m_source->pos();
return 1;
}
//***************************************************************************
static inline int decodeFrame(float **pcm, unsigned int size,
Kwave::MultiWriter &dest)
{
const unsigned int tracks = dest.tracks();
// convert floats to 16 bit signed ints
// (host order) and interleave
for (unsigned int track = 0; track < tracks; track++) {
float *mono = pcm[track];
int bout = size;
unsigned int ofs = 0;
Kwave::SampleArray buffer(size);
while (bout--) {
// scale, use some primitive noise shaping + clipping
double noise = (drand48() - double(0.5)) / double(SAMPLE_MAX);
double d = static_cast<double>(*(mono++));
sample_t s = qBound<sample_t>(
SAMPLE_MIN, double2sample(d + noise), SAMPLE_MAX
);
// write the clipped sample to the stream
buffer[ofs++] = s;
}
// write the buffer to the stream
*(dest[track]) << buffer;
}
return size;
}
//***************************************************************************
int Kwave::VorbisDecoder::decode(Kwave::MultiWriter &dst)
{
// we have a packet. Decode it
float **pcm;
int samples;
// test for success!
if (vorbis_synthesis(&m_vb, &m_op) == 0)
vorbis_synthesis_blockin(&m_vd, &m_vb);
// **pcm is a multichannel float vector. In stereo, for example,
// pcm[0] is left, and pcm[1] is right. samples is the size of
// each channel. Convert the float values (-1.<=range<=1.) to
// whatever PCM format and write it out
while ((samples = vorbis_synthesis_pcmout(&m_vd, &pcm)) > 0)
{
int bout = decodeFrame(pcm, samples, dst);
// tell libvorbis how many samples we
// actually consumed
vorbis_synthesis_read(&m_vd, bout);
}
m_samples_written = dst.last();
return 0;
}
//***************************************************************************
void Kwave::VorbisDecoder::reset()
{
// ogg_page and ogg_packet structs always point to storage in
// libvorbis. They're never freed or manipulated directly
vorbis_block_clear(&m_vb);
vorbis_dsp_clear(&m_vd);
vorbis_comment_clear(&m_vc);
vorbis_info_clear(&m_vi); // must be called last
}
//***************************************************************************
void Kwave::VorbisDecoder::close(Kwave::FileInfo &info)
{
if (!info.contains(Kwave::INF_BITRATE_NOMINAL) &&
!info.contains(Kwave::INF_VBR_QUALITY))
{
qWarning("file contains neither nominal bitrate (ABR mode) "
"nor quality (VBR mode)");
int bitrate = DEFAULT_BITRATE;
if (Kwave::toInt(info.rate()) && m_samples_written) {
// guess bitrates from the stream
const qint64 stream_end_pos = m_source->pos();
const qint64 stream_read = stream_end_pos -
m_stream_start_pos + 1;
double bits = static_cast<double>(stream_read) * 8.0;
double seconds = static_cast<double>(m_samples_written) /
static_cast<double>(info.rate());
bitrate = Kwave::toUint(bits / seconds);
// round to nearest standard bitrate
bitrate = Kwave::StandardBitrates::instance().nearest(bitrate);
qDebug("-> using guessed bitrate %d bits/sec", bitrate);
} else {
// guessing not possible -> use default
qDebug("-> using default %d kBits/sec", bitrate);
}
info.set(Kwave::INF_BITRATE_NOMINAL, QVariant(bitrate));
}
}
//***************************************************************************
//***************************************************************************
|