Skip to content

Commit

Permalink
VideoCodec に H265 を追加する
Browse files Browse the repository at this point in the history
  • Loading branch information
enm10k committed Oct 12, 2023
1 parent 48843a6 commit 6cc088a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

## develop

- [ADD] VideoCodec に H265 を追加する
- @enm10k

## 2023.3.0

- [CHANGE] `@available(*, unavailable)` は廃止になるため削除する
Expand Down
4 changes: 4 additions & 0 deletions Sora/VideoCodec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ private let descriptionTable: PairTable<String, VideoCodec> =
("VP8", .vp8),
("VP9", .vp9),
("H264", .h264),
("H265", .h265),
("AV1", .av1)])

/**
Expand All @@ -27,6 +28,9 @@ public enum VideoCodec {
/// H.264
case h264

/// H.265
case h265

/// AV1
case av1
}
Expand Down

0 comments on commit 6cc088a

Please sign in to comment.