mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Add default value for addFramingBit to XiphComment::render()
This commit is contained in:
parent
8599c1bd38
commit
5b604f41be
@ -275,11 +275,6 @@ bool Ogg::XiphComment::contains(const String &key) const
|
||||
return d->fieldListMap.contains(key) && !d->fieldListMap[key].isEmpty();
|
||||
}
|
||||
|
||||
ByteVector Ogg::XiphComment::render() const
|
||||
{
|
||||
return render(true);
|
||||
}
|
||||
|
||||
ByteVector Ogg::XiphComment::render(bool addFramingBit) const
|
||||
{
|
||||
ByteVector data;
|
||||
|
@ -191,11 +191,6 @@ namespace TagLib {
|
||||
*/
|
||||
bool contains(const String &key) const;
|
||||
|
||||
/*!
|
||||
* Renders the comment to a ByteVector suitable for inserting into a file.
|
||||
*/
|
||||
ByteVector render() const; // BIC: remove and merge with below
|
||||
|
||||
/*!
|
||||
* Renders the comment to a ByteVector suitable for inserting into a file.
|
||||
*
|
||||
@ -203,7 +198,7 @@ namespace TagLib {
|
||||
* be appended. However some formats (notably FLAC) do not work with this
|
||||
* in place.
|
||||
*/
|
||||
ByteVector render(bool addFramingBit) const;
|
||||
ByteVector render(bool addFramingBit = true) const;
|
||||
|
||||
protected:
|
||||
/*!
|
||||
|
Loading…
x
Reference in New Issue
Block a user