Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CoreMedia] Implement Xcode 16 RC changes. #21226

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[CoreMedia] Implement Xcode 16 RC changes.
  • Loading branch information
rolfbjarne committed Sep 12, 2024
commit 0da815004382ca02b828db141501fed57ead4261
1 change: 1 addition & 0 deletions src/CoreMedia/CMEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public enum CMVideoCodecType : uint {
Cinepak = 0x63766964,
JPEG = 0x6a706567,
JPEG_OpenDML = 0x646d6231,
JPEG_XL = ('j' << 24) + ('x' << 16) + ('l' << 8) + 'c', // 'jxlc'
SorensonVideo = 0x53565131,
SorensonVideo3 = 0x53565133,
H263 = 0x68323633,
Expand Down
1 change: 1 addition & 0 deletions tests/cecil-tests/Documentation.KnownFailures.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7642,6 +7642,7 @@ F:CoreMedia.CMVideoCodecType.H264
F:CoreMedia.CMVideoCodecType.Hevc
F:CoreMedia.CMVideoCodecType.JPEG
F:CoreMedia.CMVideoCodecType.JPEG_OpenDML
F:CoreMedia.CMVideoCodecType.JPEG_XL
F:CoreMedia.CMVideoCodecType.Mpeg1Video
F:CoreMedia.CMVideoCodecType.Mpeg2Video
F:CoreMedia.CMVideoCodecType.Mpeg4Video
Expand Down
Loading