diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-08-27 22:24:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-27 22:24:34 +0200 |
| commit | 6281cd707dae40a26c419c0069fd22f494d50f7f (patch) | |
| tree | 84d4a49bc42b993ff2ed88f39736f8b08fb44719 /MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs | |
| parent | ed572467aab96d6149c85dc0d0b406bc6c5106e2 (diff) | |
| parent | d4472074896a8ed3f66a6eb2c7cd438b97787ae4 (diff) | |
Merge pull request #11250 from nyanmisaka/fix-hwa-video-rotation
Fix the broken video orientation (+-90/180)
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs index 5dbc438e4..0b5dd1d1b 100644 --- a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs +++ b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs @@ -69,5 +69,12 @@ namespace MediaBrowser.MediaEncoding.Probing /// <value>The DvBlSignalCompatibilityId.</value> [JsonPropertyName("dv_bl_signal_compatibility_id")] public int? DvBlSignalCompatibilityId { get; set; } + + /// <summary> + /// Gets or sets the Rotation in degrees. + /// </summary> + /// <value>The Rotation.</value> + [JsonPropertyName("rotation")] + public int? Rotation { get; set; } } } |
