Skip to content

Commit a635cdc

Browse files
committed
Update the example to use rav1e encoding, instead of slow aom
1 parent d5a8489 commit a635cdc

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

Example/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
target 'SDWebImageAVIFCoder_Example' do
44
platform :ios, '8.0'
55
pod 'SDWebImageAVIFCoder', :path => '../'
6-
pod 'libavif', :subspecs => ['libaom', 'libdav1d']
6+
pod 'libavif', :subspecs => ['librav1e', 'libdav1d']
77

88
target 'SDWebImageAVIFCoder_Tests' do
99
inherit! :search_paths
@@ -15,5 +15,5 @@ end
1515
target 'SDWebImageAVIFCoder_Example macOS' do
1616
platform :osx, '10.10'
1717
pod 'SDWebImageAVIFCoder', :path => '../'
18-
pod 'libavif', :subspecs => ['libaom', 'libdav1d']
18+
pod 'libavif', :subspecs => ['librav1e', 'libdav1d']
1919
end

Example/Podfile.lock

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
PODS:
22
- libaom (1.0.1)
3-
- libavif (0.4.2):
4-
- libavif/libaom (= 0.4.2)
5-
- libavif/libaom (0.4.2):
3+
- libavif (0.4.3):
4+
- libavif/libaom (= 0.4.3)
5+
- libavif/core (0.4.3)
6+
- libavif/libaom (0.4.3):
67
- libaom (>= 1.0.1)
7-
- libavif/libdav1d (0.4.2):
8-
- libavif/libaom
8+
- libavif/core
9+
- libavif/libdav1d (0.4.3):
10+
- libavif/core
911
- libdav1d (>= 0.4.0)
12+
- libavif/librav1e (0.4.3):
13+
- libavif/core
14+
- librav1e (>= 0.1.0-beta)
1015
- libdav1d (0.5.1)
16+
- librav1e (0.1.0-beta)
1117
- SDWebImage (5.2.5):
1218
- SDWebImage/Core (= 5.2.5)
1319
- SDWebImage/Core (5.2.5)
@@ -16,15 +22,16 @@ PODS:
1622
- SDWebImage (~> 5.0)
1723

1824
DEPENDENCIES:
19-
- libavif/libaom
2025
- libavif/libdav1d
26+
- libavif/librav1e
2127
- SDWebImageAVIFCoder (from `../`)
2228

2329
SPEC REPOS:
2430
trunk:
2531
- libaom
2632
- libavif
2733
- libdav1d
34+
- librav1e
2835
- SDWebImage
2936

3037
EXTERNAL SOURCES:
@@ -33,11 +40,12 @@ EXTERNAL SOURCES:
3340

3441
SPEC CHECKSUMS:
3542
libaom: 1e48c68559b8d6191c1a9f266e0bee83b2dd21fd
36-
libavif: 9f38a091955a8d44c8e3409c03ea8d5f100ea7f5
43+
libavif: a10ff14916a0631c3699c4256689b93f88779705
3744
libdav1d: 790c78fc75357a771ea2bbaf49e79527c20932de
45+
librav1e: 99acea4b2780778889f93126f837ad9e092d612f
3846
SDWebImage: 4eabf2fa6695c95c47724214417a9c036c965e4a
3947
SDWebImageAVIFCoder: 5bcdd0969215f8ae5f8d1bcd2c79b208d63e1966
4048

41-
PODFILE CHECKSUM: 1daaa635bd369cbbf21bf2dd090f9adae3a762dc
49+
PODFILE CHECKSUM: 7c431e103fbd5d8fae537ee4623f74a0c32c0518
4250

4351
COCOAPODS: 1.8.4

Example/SDWebImageAVIFCoder.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,7 @@
683683
baseConfigurationReference = F85182AD5D4FF8570F90A7BC /* Pods-SDWebImageAVIFCoder_Example.debug.xcconfig */;
684684
buildSettings = {
685685
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
686+
ENABLE_BITCODE = NO;
686687
GCC_PRECOMPILE_PREFIX_HEADER = YES;
687688
GCC_PREFIX_HEADER = "SDWebImageAVIFCoder/SDWebImageAVIFCoder-Prefix.pch";
688689
INFOPLIST_FILE = "SDWebImageAVIFCoder/SDWebImageAVIFCoder-Info.plist";
@@ -698,6 +699,7 @@
698699
baseConfigurationReference = 207C633217DCC3D0312C335C /* Pods-SDWebImageAVIFCoder_Example.release.xcconfig */;
699700
buildSettings = {
700701
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
702+
ENABLE_BITCODE = NO;
701703
GCC_PRECOMPILE_PREFIX_HEADER = YES;
702704
GCC_PREFIX_HEADER = "SDWebImageAVIFCoder/SDWebImageAVIFCoder-Prefix.pch";
703705
INFOPLIST_FILE = "SDWebImageAVIFCoder/SDWebImageAVIFCoder-Info.plist";

0 commit comments

Comments
 (0)