You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
ImageReader/ImageWriter: std:: prefixes
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
|
||||
using namespace openshot;
|
||||
|
||||
ImageWriter::ImageWriter(string path) :
|
||||
ImageWriter::ImageWriter(std::string path) :
|
||||
path(path), cache_size(8), is_writing(false), write_video_count(0), image_quality(75), number_of_loops(1),
|
||||
combine_frames(true), is_open(false)
|
||||
{
|
||||
@@ -48,7 +48,7 @@ ImageWriter::ImageWriter(string path) :
|
||||
}
|
||||
|
||||
// Set video export options
|
||||
void ImageWriter::SetVideoOptions(string format, Fraction fps, int width, int height,
|
||||
void ImageWriter::SetVideoOptions(std::string format, Fraction fps, int width, int height,
|
||||
int quality, int loops, bool combine)
|
||||
{
|
||||
// Set frames per second (if provided)
|
||||
|
||||
Reference in New Issue
Block a user