Small corrections

This commit is contained in:
Peter Kovář 2021-01-26 16:00:00 +01:00
parent f5c6e7595f
commit e19fca6640
2 changed files with 7 additions and 7 deletions

View File

@ -48,7 +48,7 @@ namespace Exiv2
//! @name Creators
//@{
/*!
@brief Constructor to open a ISOBMFF image. Since the
@brief Constructor to open a ISO/IEC BMFF image. Since the
constructor can not return a result, callers should check the
good() method after object construction to determine success
or failure.

View File

@ -49,11 +49,11 @@ namespace Exiv2
EXIV2API bool enableISOBMFF(bool enable)
{
#ifdef EXV_ENABLE_ISOBMFF
#ifdef EXV_ENABLE_ISOBMFF
enabled = enable;
return true;
#endif//EXV_ENABLE_ISOBMFF
enable=false;// unused
#endif // EXV_ENABLE_ISOBMFF
enable = false; // unused
return enable;
}
@ -85,11 +85,11 @@ namespace Exiv2
{
// Todo: implement me!
throw(Error(kerInvalidSettingForImage, "Image comment", "ISO BMFF"));
} // ISOBMFF::setComment
} // BmffImage::setComment
void BmffImage::readMetadata()
{
} // ISOBMFF::readMetadata
} // BmffImage::readMetadata
void BmffImage::printStructure(std::ostream& out, PrintStructureOption option, int depth)
{
@ -105,7 +105,7 @@ namespace Exiv2
UNUSED(out);
UNUSED(option);
UNUSED(depth);
} // ISOBMFF::printStructure
} // BmffImage::printStructure
void BmffImage::writeMetadata()
{