You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
* reuse-managed license/copyright headers reuse is a tool for compliance with the REUSE recommendations. See <https://reuse.software/> for more information, and <https://reuse.readthedocs.io/> for the online documentation. * Set jsoncpp license * Add MIT license for Decklink sources * Explicitly license examples/ - Add headers to source files - Change blanket licensing in .reuse/dep5 to only cover binary media - Import CC-BY-3.0 license and assign to sintel_trailer
190 lines
5.1 KiB
C++
190 lines
5.1 KiB
C++
/**
|
|
* @file
|
|
* @brief Source file for Profile class
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
*
|
|
* @ref License
|
|
*/
|
|
|
|
// Copyright (c) 2008-2019 OpenShot Studios, LLC
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "Profiles.h"
|
|
#include "Exceptions.h"
|
|
|
|
using namespace openshot;
|
|
|
|
|
|
// @brief Constructor for Profile.
|
|
// @param path The folder path / location of a profile file
|
|
Profile::Profile(std::string path) {
|
|
|
|
bool read_file = false;
|
|
|
|
try
|
|
{
|
|
// Initialize info values
|
|
info.description = "";
|
|
info.height = 0;
|
|
info.width = 0;
|
|
info.pixel_format = 0;
|
|
info.fps.num = 0;
|
|
info.fps.den = 0;
|
|
info.pixel_ratio.num = 0;
|
|
info.pixel_ratio.den = 0;
|
|
info.display_ratio.num = 0;
|
|
info.display_ratio.den = 0;
|
|
info.interlaced_frame = false;
|
|
|
|
QFile inputFile(path.c_str());
|
|
if (inputFile.open(QIODevice::ReadOnly))
|
|
{
|
|
QTextStream in(&inputFile);
|
|
while (!in.atEnd())
|
|
{
|
|
QString line = in.readLine();
|
|
|
|
if (line.length() <= 0)
|
|
continue;
|
|
|
|
// Split current line
|
|
QStringList parts = line.split( "=" );
|
|
std::string setting = parts[0].toStdString();
|
|
std::string value = parts[1].toStdString();
|
|
int value_int = 0;
|
|
|
|
// update struct (based on line number)
|
|
if (setting == "description")
|
|
info.description = value;
|
|
else if (setting == "frame_rate_num") {
|
|
std::stringstream(value) >> value_int;
|
|
info.fps.num = value_int;
|
|
}
|
|
else if (setting == "frame_rate_den") {
|
|
std::stringstream(value) >> value_int;
|
|
info.fps.den = value_int;
|
|
}
|
|
else if (setting == "width") {
|
|
std::stringstream(value) >> value_int;
|
|
info.width = value_int;
|
|
}
|
|
else if (setting == "height") {
|
|
std::stringstream(value) >> value_int;
|
|
info.height = value_int;
|
|
}
|
|
else if (setting == "progressive") {
|
|
std::stringstream(value) >> value_int;
|
|
info.interlaced_frame = !(bool)value_int;
|
|
}
|
|
else if (setting == "sample_aspect_num") {
|
|
std::stringstream(value) >> value_int;
|
|
info.pixel_ratio.num = value_int;
|
|
}
|
|
else if (setting == "sample_aspect_den") {
|
|
std::stringstream(value) >> value_int;
|
|
info.pixel_ratio.den = value_int;
|
|
}
|
|
else if (setting == "display_aspect_num") {
|
|
std::stringstream(value) >> value_int;
|
|
info.display_ratio.num = value_int;
|
|
}
|
|
else if (setting == "display_aspect_den") {
|
|
std::stringstream(value) >> value_int;
|
|
info.display_ratio.den = value_int;
|
|
}
|
|
else if (setting == "colorspace") {
|
|
std::stringstream(value) >> value_int;
|
|
info.pixel_format = value_int;
|
|
}
|
|
}
|
|
read_file = true;
|
|
inputFile.close();
|
|
}
|
|
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
// Error parsing profile file
|
|
throw InvalidFile("Profile could not be found or loaded (or is invalid).", path);
|
|
}
|
|
|
|
// Throw error if file was not read
|
|
if (!read_file)
|
|
// Error parsing profile file
|
|
throw InvalidFile("Profile could not be found or loaded (or is invalid).", path);
|
|
}
|
|
|
|
// Generate JSON string of this object
|
|
std::string Profile::Json() const {
|
|
|
|
// Return formatted string
|
|
return JsonValue().toStyledString();
|
|
}
|
|
|
|
// Generate Json::Value for this object
|
|
Json::Value Profile::JsonValue() const {
|
|
|
|
// Create root json object
|
|
Json::Value root;
|
|
root["height"] = info.height;
|
|
root["width"] = info.width;
|
|
root["pixel_format"] = info.pixel_format;
|
|
root["fps"] = Json::Value(Json::objectValue);
|
|
root["fps"]["num"] = info.fps.num;
|
|
root["fps"]["den"] = info.fps.den;
|
|
root["pixel_ratio"] = Json::Value(Json::objectValue);
|
|
root["pixel_ratio"]["num"] = info.pixel_ratio.num;
|
|
root["pixel_ratio"]["den"] = info.pixel_ratio.den;
|
|
root["display_ratio"] = Json::Value(Json::objectValue);
|
|
root["display_ratio"]["num"] = info.display_ratio.num;
|
|
root["display_ratio"]["den"] = info.display_ratio.den;
|
|
root["interlaced_frame"] = info.interlaced_frame;
|
|
|
|
// return JsonValue
|
|
return root;
|
|
}
|
|
|
|
// Load JSON string into this object
|
|
void Profile::SetJson(const std::string value) {
|
|
|
|
// Parse JSON string into JSON objects
|
|
try
|
|
{
|
|
const Json::Value root = openshot::stringToJson(value);
|
|
// Set all values that match
|
|
SetJsonValue(root);
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
// Error parsing JSON (or missing keys)
|
|
throw InvalidJSON("JSON is invalid (missing keys or invalid data types)");
|
|
}
|
|
}
|
|
|
|
// Load Json::Value into this object
|
|
void Profile::SetJsonValue(const Json::Value root) {
|
|
|
|
if (!root["height"].isNull())
|
|
info.height = root["height"].asInt();
|
|
if (!root["width"].isNull())
|
|
info.width = root["width"].asInt();
|
|
if (!root["pixel_format"].isNull())
|
|
info.pixel_format = root["pixel_format"].asInt();
|
|
if (!root["fps"].isNull()) {
|
|
info.fps.num = root["fps"]["num"].asInt();
|
|
info.fps.den = root["fps"]["den"].asInt();
|
|
}
|
|
if (!root["pixel_ratio"].isNull()) {
|
|
info.pixel_ratio.num = root["pixel_ratio"]["num"].asInt();
|
|
info.pixel_ratio.den = root["pixel_ratio"]["den"].asInt();
|
|
}
|
|
if (!root["display_ratio"].isNull()) {
|
|
info.display_ratio.num = root["display_ratio"]["num"].asInt();
|
|
info.display_ratio.den = root["display_ratio"]["den"].asInt();
|
|
}
|
|
if (!root["interlaced_frame"].isNull())
|
|
info.interlaced_frame = root["interlaced_frame"].asBool();
|
|
|
|
}
|