blob: 2011e73cf5ba7154ebf9375b2491f3b499aa01a5 (
plain)
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
|
/*
*
* $Id: k3baudiofile.cpp 619556 2007-01-03 17:38:12Z trueg $
* Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
*
* This file is part of the K3b project.
* Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
*
* 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.
* See the file "COPYING" for the exact licensing terms.
*/
#include "k3baudiofile.h"
#include "k3baudiodoc.h"
#include "k3baudiotrack.h"
#include <k3baudiodecoder.h>
K3bAudioFile::K3bAudioFile( K3bAudioDecoder* dec, K3bAudioDoc* doc )
: K3bAudioDataSource(),
m_doc(doc),
m_decoder(dec),
m_decodedData(0)
{
// FIXME: somehow make it possible to switch docs
doc->increaseDecoderUsage( m_decoder );
}
K3bAudioFile::K3bAudioFile( const K3bAudioFile& file )
: K3bAudioDataSource( file ),
m_doc( file.m_doc ),
m_decoder( file.m_decoder ),
m_decodedData(0)
{
m_doc->increaseDecoderUsage( m_decoder );
}
K3bAudioFile::~K3bAudioFile()
{
m_doc->decreaseDecoderUsage( m_decoder );
}
QString K3bAudioFile::type() const
{
return m_decoder->fileType();
}
QString K3bAudioFile::sourceComment() const
{
return m_decoder->filename().section( "/", -1 );
}
const QString& K3bAudioFile::filename() const
{
return m_decoder->filename();
}
bool K3bAudioFile::isValid() const
{
return m_decoder->isValid();
}
K3b::Msf K3bAudioFile::originalLength() const
{
return m_decoder->length();
}
bool K3bAudioFile::seek( const K3b::Msf& msf )
{
// this is valid once the decoder has been initialized.
if( startOffset() + msf <= lastSector() &&
m_decoder->seek( startOffset() + msf ) ) {
m_decodedData = msf.audioBytes();
return true;
}
else
return false;
}
int K3bAudioFile::read( char* data, unsigned int max )
{
// here we can trust on the decoder to always provide enough data
// see if we decode too much
if( max + m_decodedData > length().audioBytes() )
max = length().audioBytes() - m_decodedData;
int read = m_decoder->decode( data, max );
if( read > 0 )
m_decodedData += read;
return read;
}
K3bAudioDataSource* K3bAudioFile::copy() const
{
return new K3bAudioFile( *this );
}
|