default constructor
| 18 | |
| 19 | // default constructor |
| 20 | Profile::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 |
nothing calls this directly
no test coverage detected