Deprecate unused methods in Id3v2Frame

This commit is contained in:
Martchus 2019-02-13 21:44:19 +01:00
parent e93a7c53b3
commit dbce74444a
1 changed files with 4 additions and 0 deletions

View File

@ -977,6 +977,8 @@ void Id3v2Frame::parseComment(const char *buffer, std::size_t dataSize, TagValue
* \param bufferSize Specifies the size of \a buffer.
* \param value Specifies the string to make.
* \param encoding Specifies the encoding of the string to make.
* \deprecated No longer used.
* \todo Remove in v9.
*/
void Id3v2Frame::makeString(std::unique_ptr<char[]> &buffer, uint32 &bufferSize, const std::string &value, TagTextEncoding encoding)
{
@ -990,6 +992,8 @@ void Id3v2Frame::makeString(std::unique_ptr<char[]> &buffer, uint32 &bufferSize,
* \param encoding Specifies the data encoding.
* \param data Specifies the data.
* \param dataSize Specifies size of \a data.
* \deprecated No longer used.
* \todo Remove in v9.
*/
void Id3v2Frame::makeEncodingAndData(
std::unique_ptr<char[]> &buffer, uint32 &bufferSize, TagTextEncoding encoding, const char *data, std::size_t dataSize)