Skip to content

Commit 9fe908e

Browse files
authored
fix: Fix enum name of H.264 profile (#776)
1 parent c4c8c12 commit 9fe908e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,23 +211,23 @@ internal VP9CodecInfo(RTCRtpCodecCapability caps) : base(caps)
211211
public enum H264Profile
212212
{
213213
/// <summary>
214-
///
214+
/// Constrained Baseline Profile.
215215
/// </summary>
216216
ConstrainedBaseline = 0x42e0,
217217
/// <summary>
218-
///
218+
/// Baseline Profile.
219219
/// </summary>
220220
Baseline = 0x4200,
221221
/// <summary>
222-
///
222+
/// Main Profile.
223223
/// </summary>
224-
ProfileMain = 0x4d00,
224+
Main = 0x4d00,
225225
/// <summary>
226-
///
226+
/// Constrained High Profile.
227227
/// </summary>
228228
ConstrainedHigh = 0x640c,
229229
/// <summary>
230-
///
230+
/// High Profile.
231231
/// </summary>
232232
High = 0x6400,
233233
}

0 commit comments

Comments
 (0)