Skip to content

Commit

Permalink
fix: Fix enum name of H.264 profile (Unity-Technologies#776)
Browse files Browse the repository at this point in the history
  • Loading branch information
karasusan authored Sep 26, 2022
1 parent c4c8c12 commit 9fe908e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,23 +211,23 @@ internal VP9CodecInfo(RTCRtpCodecCapability caps) : base(caps)
public enum H264Profile
{
/// <summary>
///
/// Constrained Baseline Profile.
/// </summary>
ConstrainedBaseline = 0x42e0,
/// <summary>
///
/// Baseline Profile.
/// </summary>
Baseline = 0x4200,
/// <summary>
///
/// Main Profile.
/// </summary>
ProfileMain = 0x4d00,
Main = 0x4d00,
/// <summary>
///
/// Constrained High Profile.
/// </summary>
ConstrainedHigh = 0x640c,
/// <summary>
///
/// High Profile.
/// </summary>
High = 0x6400,
}
Expand Down

0 comments on commit 9fe908e

Please sign in to comment.