-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[XSTUDIO-1267] - xStudio : scrubbing on viewer has lag [XSTUDIO-1527] - Repeated spam when broken media selected ? [XSTUDIO-1576] - Mute and sound settings [XSTUDIO-1622] - Default Compare Mode preference is broken [XSTUDIO-1623] - Up/Down hotkeys break sometimes [XSTUDIO-1626] - Media Info Bar metadata is missing for ProRes files [XSTUDIO-1636] - xStudio Crashes when adding .gif to Playlists [XSTUDIO-1649] - Text caption notes & bugs [XSTUDIO-1659] - Notes panel : "Note Type" dropdown menu is transparent - hard to read [XSTUDIO-1678] - Resolve playhead-video refresh sync [XSTUDIO-1682] - Display Settings not change from sRGB [XSTUDIO-1687] - Primary grade that is just saturation change has no effect [XSTUDIO-1690] - Viewport launch on EIZO display but frame displayed actually is sRGB [XSTUDIO-1713] - Pipeline Step filter shananigans [XSTUDIO-1715] - Loading from commandline always selects [XSTUDIO-1716] - Snapshot doesn't render strokes correctly [XSTUDIO-1719] - View lut error in xstudio release candidate [XSTUDIO-1723] - xstudio save session file path issue New Feature [XSTUDIO-1315] - Add "Align And Trim" option to compare modes [XSTUDIO-1386] - First Pass Text labels - Mouse keyboard interactions with caption [XSTUDIO-1450] - Python methods to get and set metadata for a media source [XSTUDIO-1691] - Make march configurable in CMakeFiles Improvement [XSTUDIO-1575] - UI minor tweaks [XSTUDIO-1609] - Improve stability of preference saving [XSTUDIO-1663] - Update CMAKE files so we can use DNEGs version.. [XSTUDIO-1688] - Add "Note Type" text into the Note Type dropdown box if empty Signed-off-by: Al Crate <al@dneg.com>
- Loading branch information
Showing
148 changed files
with
4,942 additions
and
3,534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
#pragma once | ||
|
||
#include <Imath/ImathVec.h> | ||
|
||
namespace xstudio { | ||
namespace media_reader { | ||
|
||
/** | ||
* @brief PixelInfo class. A simple class to hold colour information about some pixel | ||
* in the image. | ||
* | ||
*/ | ||
class PixelInfo { | ||
|
||
public: | ||
PixelInfo(const Imath::V2i &location_in_image) : location_(location_in_image) {} | ||
|
||
PixelInfo(const PixelInfo &o) = default; | ||
|
||
~PixelInfo() = default; | ||
|
||
void add_pixel_channel_info(const std::string &channel_name, const float pixel_value) { | ||
data_.push_back(PixelChannelInfo{channel_name, pixel_value}); | ||
} | ||
|
||
struct PixelChannelInfo { | ||
std::string channel_name; | ||
float pixel_value; | ||
}; | ||
|
||
typedef std::vector<PixelChannelInfo> PixelChannelsData; | ||
|
||
[[nodiscard]] const PixelChannelsData &data() const { return data_; } | ||
[[nodiscard]] const Imath::V2i &location_in_image() const { return location_; } | ||
|
||
private: | ||
PixelChannelsData data_; | ||
Imath::V2i location_; | ||
}; | ||
} // namespace media_reader | ||
} // namespace xstudio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.