Move deprecated functions setID3v2FrameFactory().

This commit is contained in:
Tsuda Kageyu 2017-06-13 09:40:01 +09:00
parent 2075d865cd
commit 81945efdff
6 changed files with 0 additions and 41 deletions

View File

@ -307,11 +307,6 @@ Ogg::XiphComment *FLAC::File::xiphComment(bool create)
return d->tag.access<Ogg::XiphComment>(FlacXiphIndex, create);
}
void FLAC::File::setID3v2FrameFactory(const ID3v2::FrameFactory *factory)
{
d->ID3v2FrameFactory = factory;
}
List<FLAC::Picture *> FLAC::File::pictureList()
{
List<Picture *> pictures;

View File

@ -210,16 +210,6 @@ namespace TagLib {
*/
Ogg::XiphComment *xiphComment(bool create = false);
/*!
* Set the ID3v2::FrameFactory to something other than the default. This
* can be used to specify the way that ID3v2 frames will be interpreted
* when
*
* \see ID3v2FrameFactory
* \deprecated This value should be passed in via the constructor
*/
void setID3v2FrameFactory(const ID3v2::FrameFactory *factory);
/*!
* Returns a list of pictures attached to the FLAC file.
*/

View File

@ -363,11 +363,6 @@ bool MPEG::File::strip(int tags, bool freeMemory)
return true;
}
void MPEG::File::setID3v2FrameFactory(const ID3v2::FrameFactory *factory)
{
d->ID3v2FrameFactory = factory;
}
long long MPEG::File::nextFrameOffset(long long position)
{
ByteVector frameSyncBytes(2, '\0');

View File

@ -270,14 +270,6 @@ namespace TagLib {
// BIC: merge with the method above
bool strip(int tags, bool freeMemory);
/*!
* Set the ID3v2::FrameFactory to something other than the default.
*
* \see ID3v2FrameFactory
* \deprecated This value should be passed in via the constructor
*/
void setID3v2FrameFactory(const ID3v2::FrameFactory *factory);
/*!
* Returns the position in the file of the first MPEG frame.
*/

View File

@ -148,11 +148,6 @@ TrueAudio::AudioProperties *TrueAudio::File::audioProperties() const
return d->properties;
}
void TrueAudio::File::setID3v2FrameFactory(const ID3v2::FrameFactory *factory)
{
d->ID3v2FrameFactory = factory;
}
bool TrueAudio::File::save()
{
if(readOnly()) {

View File

@ -151,14 +151,6 @@ namespace TagLib {
*/
virtual AudioProperties *audioProperties() const;
/*!
* Set the ID3v2::FrameFactory to something other than the default.
*
* \see ID3v2FrameFactory
* \deprecated This value should be passed in via the constructor
*/
void setID3v2FrameFactory(const ID3v2::FrameFactory *factory);
/*!
* Saves the file.
*/