MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / Profile

Method Profile

src/Profiles.cpp:20–34  ·  view source on GitHub ↗

default constructor

Source from the content-addressed store, hash-verified

18
19// default constructor
20Profile::Profile() {
21 // Initialize info values
22 info.description = "";
23 info.height = 0;
24 info.width = 0;
25 info.pixel_format = 0;
26 info.fps.num = 0;
27 info.fps.den = 0;
28 info.pixel_ratio.num = 0;
29 info.pixel_ratio.den = 0;
30 info.display_ratio.num = 0;
31 info.display_ratio.den = 0;
32 info.interlaced_frame = false;
33 info.spherical = false; // Default to non-spherical (regular) video
34}
35
36// @brief Constructor for Profile.
37// @param path The folder path / location of a profile file

Callers

nothing calls this directly

Calls 2

InvalidFileClass · 0.85
openMethod · 0.80

Tested by

no test coverage detected