You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Remaining std:: prefixes
This commit is contained in:
@@ -65,7 +65,7 @@ void ChunkReader::load_json()
|
||||
std::stringstream json_string;
|
||||
|
||||
// Read the JSON file
|
||||
ifstream myfile (json_path.c_str());
|
||||
std::ifstream myfile (json_path.c_str());
|
||||
std::string line = "";
|
||||
if (myfile.is_open())
|
||||
{
|
||||
@@ -222,7 +222,7 @@ std::shared_ptr<Frame> ChunkReader::GetFrame(int64_t requested_frame)
|
||||
// Close existing reader (if needed)
|
||||
if (local_reader)
|
||||
{
|
||||
cout << "Close READER" << endl;
|
||||
std::cout << "Close READER" << std::endl;
|
||||
// Close and delete old reader
|
||||
local_reader->Close();
|
||||
delete local_reader;
|
||||
@@ -230,7 +230,7 @@ std::shared_ptr<Frame> ChunkReader::GetFrame(int64_t requested_frame)
|
||||
|
||||
try
|
||||
{
|
||||
cout << "Load READER: " << chunk_video_path << endl;
|
||||
std::cout << "Load READER: " << chunk_video_path << std::endl;
|
||||
// Load new FFmpegReader
|
||||
local_reader = new FFmpegReader(chunk_video_path);
|
||||
local_reader->Open(); // open reader
|
||||
|
||||
Reference in New Issue
Block a user