You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
fix grammar error with possessive its and update sample for audio parameter
This commit is contained in:
@@ -31,14 +31,14 @@ using namespace openshot;
|
||||
|
||||
ImageReader::ImageReader(string path) : path(path), is_open(false)
|
||||
{
|
||||
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
|
||||
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
|
||||
Open();
|
||||
Close();
|
||||
}
|
||||
|
||||
ImageReader::ImageReader(string path, bool inspect_reader) : path(path), is_open(false)
|
||||
{
|
||||
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
|
||||
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
|
||||
if (inspect_reader) {
|
||||
Open();
|
||||
Close();
|
||||
@@ -106,7 +106,7 @@ void ImageReader::Close()
|
||||
{
|
||||
// Mark as "closed"
|
||||
is_open = false;
|
||||
|
||||
|
||||
// Delete the image
|
||||
image.reset();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user