1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
media / gpu / mac / vt_video_encode_accelerator_mac.mm [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/gpu/mac/vt_video_encode_accelerator_mac.h"
#import <Foundation/Foundation.h>
#include <memory>
#include "base/apple/bridging.h"
#include "base/apple/foundation_util.h"
#include "base/apple/osstatus_logging.h"
#include "base/containers/contains.h"
#include "base/containers/flat_map.h"
#include "base/logging.h"
#include "base/mac/mac_util.h"
#include "base/memory/shared_memory_mapping.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/no_destructor.h"
#include "base/notreached.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/sys_string_conversions.h"
#include "base/task/sequenced_task_runner.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "build/build_config.h"
#include "media/base/bitrate.h"
#include "media/base/bitstream_buffer.h"
#include "media/base/mac/color_space_util_mac.h"
#include "media/base/mac/video_frame_mac.h"
#include "media/base/media_log.h"
#include "media/base/media_switches.h"
#include "media/base/video_codecs.h"
#include "media/base/video_frame.h"
#include "media/base/video_types.h"
#include "media/gpu/gpu_video_encode_accelerator_helpers.h"
#include "media/video/video_encode_accelerator.h"
using base::apple::CFToNSPtrCast;
using base::apple::NSToCFPtrCast;
// This is a min version of macOS where we want to support SVC encoding via
// EnableLowLatencyRateControl flag. The flag is actually supported since 11.3,
// but there we see frame drops even with ample bitrate budget. Excessive frame
// drops were fixed in 12.0.1.
#define LOW_LATENCY_AND_SVC_AVAILABLE_VER 12.0.1
#define SOFTWARE_ENCODING_SUPPORTED BUILDFLAG(IS_MAC)
namespace media {
using EncoderType = VideoEncodeAccelerator::Config::EncoderType;
namespace {
constexpr size_t kMaxFrameRateNumerator = 120;
constexpr size_t kMaxFrameRateDenominator = 1;
constexpr size_t kNumInputBuffers = 3;
constexpr gfx::Size kDefaultSupportedResolution = gfx::Size(640, 480);
#if SOFTWARE_ENCODING_SUPPORTED
// The IDs of the encoders that may be selected when we enable low latency via
// `kVTVideoEncoderSpecification_EnableLowLatencyRateControl`. Low latency is
// in general only possible with a hardware encoder in VideoToolbox, so we
// assume these are in fact hardware encoders. For some reason, neither
// `VTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder` nor
// `kVTVideoEncoderList_IsHardwareAccelerated` is set for these encoders.
constexpr std::string_view kRealtimeHardwareEncoderIDs[] = {
"com.apple.videotoolbox.videoencoder.h264.rtvc",
"com.apple.videotoolbox.videoencoder.hevc.rtvc",
};
#endif // SOFTWARE_ENCODING_SUPPORTED
base::span<const VideoCodecProfile> GetSupportedVideoCodecProfiles() {
static const base::NoDestructor<std::vector<VideoCodecProfile>> kProfiles(
[]() {
std::vector<VideoCodecProfile> profiles{
H264PROFILE_BASELINE,
H264PROFILE_MAIN,
H264PROFILE_HIGH,
};
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
if (base::FeatureList::IsEnabled(kPlatformHEVCEncoderSupport)) {
profiles.push_back(HEVCPROFILE_MAIN);
}
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
return profiles;
}());
return *kProfiles;
}
base::span<const gfx::Size> GetMinResolutions(VideoCodec codec) {
#if defined(ARCH_CPU_X86_FAMILY)
// Below test result based on a 2019 Intel MacBook Pro, and a 2015
// Intel MacBook Pro.
static constexpr auto kMinH264Resolutions = std::to_array({
gfx::Size(640, 2),
gfx::Size(18, 480),
});
static constexpr auto kMinHEVCResolutions = std::to_array({
gfx::Size(146, 50),
});
#else
// Below test result based on a 2021 M1 Pro MacBook Pro, and a 2024
// M4 Mac Mini.
static constexpr auto kMinH264Resolutions = std::to_array({
gfx::Size(16, 16),
});
static constexpr auto kMinHEVCResolutions = std::to_array({
gfx::Size(16, 16),
});
#endif // defined(ARCH_CPU_X86_FAMILY)
switch (codec) {
case VideoCodec::kH264:
return kMinH264Resolutions;
case VideoCodec::kHEVC:
return kMinHEVCResolutions;
default:
NOTREACHED();
}
}
gfx::Size GetMaxResolution(VideoCodec codec) {
switch (codec) {
case VideoCodec::kH264:
// Test result on a M1 Pro Mac shows that the max supported resolution of
// H.264 is 4096 x 2304 if encode mode is real time, for none real time
// mode, the max supported resolution is 4096 x 4096. On some Intel Macs,
// this can go up to 8K, however, due to the excessive number of chips in
// x64 Macs, use the conservative values of 4096 x 2304 here.
return gfx::Size(4096, 2304);
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
case VideoCodec::kHEVC:
#if defined(ARCH_CPU_ARM_FAMILY)
// Test result on a M1 Pro Mac shows that the max supported resolution of
// HEVC is 8192 x 4352 if encode mode is real time, for none real time
// mode, the max supported resolution is 16384 x 8192. Use the
// conservative values of 8192 x 4352 here.
return gfx::Size(8192, 4352);
#else
// On some Intel Macs, this can go up to 8K, however, due to the excessive
// number of chips in x64 Macs, use the conservative values of 4096 x 2304
// here.
return gfx::Size(4096, 2304);
#endif // defined(ARCH_CPU_ARM_FAMILY)
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
default:
NOTREACHED();
}
}
bool IsSVCSupported(VideoCodec codec) {
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER) && defined(ARCH_CPU_ARM_FAMILY)
// macOS 14.0+ support SVC HEVC encoding for Apple Silicon chips only.
if (codec == VideoCodec::kHEVC) {
if (@available(macOS 14.0, iOS 17.0, *)) {
return true;
}
return false;
}
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER) &&
// defined(ARCH_CPU_ARM_FAMILY)
if (@available(macOS LOW_LATENCY_AND_SVC_AVAILABLE_VER, *)) {
return codec == VideoCodec::kH264;
}
return false;
}
static CFStringRef VideoCodecProfileToVTProfile(VideoCodecProfile profile) {
switch (profile) {
case H264PROFILE_BASELINE:
return kVTProfileLevel_H264_Baseline_AutoLevel;
case H264PROFILE_MAIN:
return kVTProfileLevel_H264_Main_AutoLevel;
case H264PROFILE_HIGH:
return kVTProfileLevel_H264_High_AutoLevel;
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
case HEVCPROFILE_MAIN:
return kVTProfileLevel_HEVC_Main_AutoLevel;
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
default:
NOTREACHED();
}
}
static CMVideoCodecType VideoCodecToCMVideoCodec(VideoCodec codec) {
switch (codec) {
case VideoCodec::kH264:
return kCMVideoCodecType_H264;
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
case VideoCodec::kHEVC:
return kCMVideoCodecType_HEVC;
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
default:
NOTREACHED();
}
}
bool IsHardwareEncoder(VTSessionRef compression_session) {
#if SOFTWARE_ENCODING_SUPPORTED
base::apple::ScopedCFTypeRef<CFBooleanRef> using_hardware;
if (VTSessionCopyProperty(
compression_session,
kVTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder,
kCFAllocatorDefault, using_hardware.InitializeInto()) == noErr &&
// `using_hardware` might not get initialized even if `noErr` is
// returned, see crbug.com/c/369540616.
using_hardware) {
return CFBooleanGetValue(using_hardware.get());
}
DVLOG(1) << "Couldn't read the UsingHardwareAcceleratedVideoEncoder property";
base::apple::ScopedCFTypeRef<CFStringRef> encoder_id;
if (VTSessionCopyProperty(
compression_session, kVTCompressionPropertyKey_EncoderID,
kCFAllocatorDefault, encoder_id.InitializeInto()) == noErr) {
if (base::Contains(kRealtimeHardwareEncoderIDs,
base::SysCFStringRefToUTF8(encoder_id.get()))) {
DVLOG(1) << "But " << encoder_id.get() << " is a known hardware encoder";
return true;
}
DVLOG(1) << "Assuming " << encoder_id.get() << " to be a software encoder";
}
return false;
#else
return true;
#endif // SOFTWARE_ENCODING_SUPPORTED
}
base::expected<video_toolbox::ScopedVTCompressionSessionRef, OSStatus>
CreateCompressionSession(VideoCodec codec,
const gfx::Size& input_size,
EncoderType required_encoder_type,
bool require_low_delay,
VTCompressionOutputCallback output_callback = nullptr,
VTVideoEncodeAccelerator* accelerator = nullptr) {
CHECK_EQ(!output_callback, !accelerator);
NSMutableDictionary* encoder_spec = [NSMutableDictionary dictionary];
// When we're always hardware-accelerated anyway, encoder configuration
// handling is not necessary.
#if SOFTWARE_ENCODING_SUPPORTED
if (required_encoder_type == EncoderType::kHardware) {
encoder_spec[CFToNSPtrCast(
kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder)] =
@YES;
} else {
encoder_spec[CFToNSPtrCast(
kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder)] =
@NO;
}
if (required_encoder_type == EncoderType::kSoftware) {
encoder_spec[CFToNSPtrCast(
kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder)] =
@NO;
}
#endif // SOFTWARE_ENCODING_SUPPORTED
if (@available(macOS LOW_LATENCY_AND_SVC_AVAILABLE_VER, *)) {
// Don't enable low-latency rate control in SW mode as it doesn't seem to
// apply to the SW encoder. From
// https://developer.apple.com/videos/play/wwdc2021/10158/, "[...] the
// low-latency mode always uses a hardware-accelerated video encoder". In
// fact, trying to use
// `kVTVideoEncoderSpecification_EnableLowLatencyRateControl` with the SW
// encoder leads to an initialization error.
if (required_encoder_type != EncoderType::kSoftware && require_low_delay &&
IsSVCSupported(codec)) {
encoder_spec[CFToNSPtrCast(
kVTVideoEncoderSpecification_EnableLowLatencyRateControl)] = @YES;
}
}
// Create the compression session.
// Note that the encoder object is given to the compression session as the
// callback context using a raw pointer. The C API does not allow us to use a
// smart pointer, nor is this encoder ref counted. However, this is still
// safe, because we 1) we own the compression session and 2) we tear it down
// safely. When destructing the encoder, the compression session is flushed
// and invalidated. Internally, VideoToolbox will join all of its threads
// before returning to the client. Therefore, when control returns to us, we
// are guaranteed that the output callback will not execute again.
video_toolbox::ScopedVTCompressionSessionRef session;
const OSStatus status = VTCompressionSessionCreate(
kCFAllocatorDefault, input_size.width(), input_size.height(),
VideoCodecToCMVideoCodec(codec), NSToCFPtrCast(encoder_spec),
/*sourceImageBufferAttributes=*/nullptr,
/*compressedDataAllocator=*/nullptr, output_callback,
reinterpret_cast<void*>(accelerator), session.InitializeInto());
if (status != noErr) {
if (@available(macOS 13, iOS 16, *)) {
// No extra steps required.
} else {
// IMPORTANT: ScopedCFTypeRef::release() doesn't call CFRelease(). In
// case of an error VTCompressionSessionCreate() is not supposed to write
// a non-null value into compression_session_, but just in case, we'll
// clear it without calling CFRelease() because it can be unsafe to call
// VTCompressionSessionInvalidate() on a not fully created session.
std::ignore = session.release();
}
return base::unexpected(status);
}
DVLOG(3) << " VTCompressionSession created with input size="
<< input_size.ToString();
return session;
}
bool CanCreateHardwareCompressionSession(VideoCodec codec) {
const bool can_create_hardware_session =
CreateCompressionSession(codec, kDefaultSupportedResolution,
EncoderType::kHardware,
/*require_low_delay=*/false)
.has_value();
DVLOG_IF(1, !can_create_hardware_session)
<< "Hardware " << GetCodecName(codec)
<< " encode acceleration is not available on this platform.";
return can_create_hardware_session;
}
VideoEncoderInfo GetVideoEncoderInfo(
VTSessionRef compression_session,
const VTVideoEncodeAccelerator::Config& config) {
VideoEncoderInfo info;
info.implementation_name = "VideoToolbox";
info.is_hardware_accelerated = IsHardwareEncoder(compression_session);
// TODO(crbug.com/382015342): Query bitrate limits, and report them through
// VideoEncoderInfo's |resolution_bitrate_limits|.
const VideoCodec codec = VideoCodecProfileToVideoCodec(config.output_profile);
gfx::Size resolution = GetMaxResolution(codec);
info.resolution_rate_limits.emplace_back(
resolution, /*min_start_bitrate_bps=*/0,
/*min_bitrate_bps=*/0, /*max_bitrate_bps=*/0, kMaxFrameRateNumerator,
kMaxFrameRateDenominator);
if (resolution.width() != resolution.height()) {
resolution.Transpose();
info.resolution_rate_limits.emplace_back(
resolution,
/*min_start_bitrate_bps=*/0, /*min_bitrate_bps=*/0,
/*max_bitrate_bps=*/0, kMaxFrameRateNumerator,
kMaxFrameRateDenominator);
}
std::optional<int> max_frame_delay_property;
base::apple::ScopedCFTypeRef<CFNumberRef> max_frame_delay_count;
if (VTSessionCopyProperty(
compression_session, kVTCompressionPropertyKey_MaxFrameDelayCount,
kCFAllocatorDefault, max_frame_delay_count.InitializeInto()) == 0) {
int32_t frame_delay;
if (CFNumberGetValue(max_frame_delay_count.get(), kCFNumberSInt32Type,
&frame_delay) &&
frame_delay != kVTUnlimitedFrameDelayCount &&
// For Apple Silicon Macs using macOS 15.0, it seems we can't
// set `kVTCompressionPropertyKey_MaxFrameDelayCount` property
// successfully, and its value is always equal to 0 instead of
// `kVTUnlimitedFrameDelayCount`, we should use the default
// value of `VideoEncoderInfo` instead.
frame_delay != 0) {
max_frame_delay_property = frame_delay;
}
}
// Not all VideoToolbox encoders are created equal. The numbers below match
// the characteristics of an Apple Silicon M1 laptop. It has been noted that,
// for example, the HW encoder in a 2014 (Intel) machine has a smaller
// capacity. And while overestimating the capacity is not a problem,
// underestimating the frame delay is, so these numbers might need tweaking
// in the face of new evidence.
if (info.is_hardware_accelerated) {
info.frame_delay = 0;
info.input_capacity = 10;
} else {
info.frame_delay = config.output_profile == H264PROFILE_BASELINE ? 0 : 13;
info.input_capacity = info.frame_delay.value() + 4;
}
if (max_frame_delay_property.has_value()) {
info.frame_delay =
std::min(info.frame_delay.value(), max_frame_delay_property.value());
info.input_capacity =
std::min(info.input_capacity.value(), max_frame_delay_property.value());
}
if (config.HasSpatialLayer() || config.HasTemporalLayer()) {
CHECK(!config.spatial_layers.empty());
for (size_t i = 0; i < config.spatial_layers.size(); ++i) {
// Only L1T1, L1T2 are supported.
CHECK_LE(config.spatial_layers[i].num_of_temporal_layers, 2);
info.fps_allocation[i] =
GetFpsAllocation(config.spatial_layers[i].num_of_temporal_layers);
}
} else {
constexpr uint8_t kFullFramerate = 255;
info.fps_allocation[0] = {kFullFramerate};
}
return info;
}
} // namespace
struct VTVideoEncodeAccelerator::InProgressFrameEncode {
InProgressFrameEncode(scoped_refptr<VideoFrame> frame,
const gfx::ColorSpace& frame_cs)
: frame(frame), encoded_color_space(frame_cs) {}
const scoped_refptr<VideoFrame> frame;
const gfx::ColorSpace encoded_color_space;
};
struct VTVideoEncodeAccelerator::EncodeOutput {
EncodeOutput() = delete;
EncodeOutput(VTEncodeInfoFlags info_flags,
CMSampleBufferRef sbuf,
const InProgressFrameEncode& frame_info)
: info(info_flags),
sample_buffer(sbuf, base::scoped_policy::RETAIN),
capture_timestamp(frame_info.frame->timestamp()),
encoded_color_space(frame_info.encoded_color_space) {}
EncodeOutput(const EncodeOutput&) = delete;
EncodeOutput& operator=(const EncodeOutput&) = delete;
const VTEncodeInfoFlags info;
const base::apple::ScopedCFTypeRef<CMSampleBufferRef> sample_buffer;
const base::TimeDelta capture_timestamp;
const gfx::ColorSpace encoded_color_space;
};
struct VTVideoEncodeAccelerator::BitstreamBufferRef {
BitstreamBufferRef() = delete;
BitstreamBufferRef(int32_t id,
base::WritableSharedMemoryMapping mapping,
size_t size)
: id(id), mapping(std::move(mapping)), size(size) {}
BitstreamBufferRef(const BitstreamBufferRef&) = delete;
BitstreamBufferRef& operator=(const BitstreamBufferRef&) = delete;
const int32_t id;
base::WritableSharedMemoryMapping mapping;
const size_t size;
};
VTVideoEncodeAccelerator::VTVideoEncodeAccelerator()
: task_runner_(base::SequencedTaskRunner::GetCurrentDefault()) {
encoder_weak_ptr_ = encoder_weak_factory_.GetWeakPtr();
}
VTVideoEncodeAccelerator::~VTVideoEncodeAccelerator() {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Flush the compression session and make it join its internal threads. After
// this, no callbacks will be issued by the session and we can proceed with
// the destruction of VTVideoEncodeAccelerator.
compression_session_.reset();
}
VideoEncodeAccelerator::SupportedProfiles
VTVideoEncodeAccelerator::GetSupportedProfiles() {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
SupportedProfiles supported_profiles;
SupportedProfile supported_profile;
supported_profile.max_framerate_numerator = kMaxFrameRateNumerator;
supported_profile.max_framerate_denominator = kMaxFrameRateDenominator;
// Advertise VBR here, even though the peak bitrate is never actually used.
// See RequestEncodingParametersChange() for more details.
supported_profile.rate_control_modes = VideoEncodeAccelerator::kConstantMode |
VideoEncodeAccelerator::kVariableMode;
// L1T1 = no additional spatial and temporal layer = always supported.
const std::vector<SVCScalabilityMode> always_supported_scalability_modes{
SVCScalabilityMode::kL1T1};
// A cache for CanCreateHardwareCompressionSession() results, which can be
// costly to compute.
base::flat_map<VideoCodec, bool> can_create_hardware_session;
for (const VideoCodecProfile profile : GetSupportedVideoCodecProfiles()) {
const VideoCodec codec = VideoCodecProfileToVideoCodec(profile);
if (can_create_hardware_session.count(codec) == 0u) {
can_create_hardware_session[codec] =
CanCreateHardwareCompressionSession(codec);
}
supported_profile.profile = profile;
supported_profile.max_resolution = GetMaxResolution(codec);
for (const auto& min_resolution : GetMinResolutions(codec)) {
supported_profile.min_resolution = min_resolution;
supported_profile.is_software_codec = false;
supported_profile.scalability_modes = always_supported_scalability_modes;
if (IsSVCSupported(codec)) {
supported_profile.scalability_modes.push_back(
SVCScalabilityMode::kL1T2);
}
if (can_create_hardware_session[codec]) {
supported_profiles.push_back(supported_profile);
SupportedProfile portrait_profile(supported_profile);
portrait_profile.max_resolution.Transpose();
supported_profiles.push_back(portrait_profile);
}
#if SOFTWARE_ENCODING_SUPPORTED
// macOS doesn't provide a way to enumerate codec details, so just
// assume software codec support is the same as hardware.
//
// NOTE: Although SW encoder always has lower supported min resolutions
// compared with HW encoder, but when both HW and SW encoder exist and if
// the resolution is not supported by hardware but supported by software,
// and if you set `no-preference`, VT will always emit an error. Thus,
// we should just re-use min resolutions of HW encoder for SW encoder.
supported_profile.scalability_modes = always_supported_scalability_modes;
supported_profile.is_software_codec = true;
supported_profiles.push_back(supported_profile);
SupportedProfile portrait_profile(supported_profile);
portrait_profile.max_resolution.Transpose();
supported_profiles.push_back(portrait_profile);
#endif // SOFTWARE_ENCODING_SUPPORTED
}
}
return supported_profiles;
}
bool VTVideoEncodeAccelerator::Initialize(const Config& config,
Client* client,
std::unique_ptr<MediaLog> media_log) {
DVLOG(3) << __func__ << ": " << config.AsHumanReadableString();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(client);
// Clients are expected to call Flush() before reinitializing the encoder.
DCHECK_EQ(pending_encodes_, 0);
if (config.input_format != PIXEL_FORMAT_I420 &&
config.input_format != PIXEL_FORMAT_NV12) {
MEDIA_LOG(ERROR, media_log)
<< "Input format not supported= "
<< VideoPixelFormatToString(config.input_format);
return false;
}
if (!base::Contains(GetSupportedVideoCodecProfiles(),
config.output_profile)) {
MEDIA_LOG(ERROR, media_log) << "Output profile not supported= "
<< GetProfileName(config.output_profile);
return false;
}
profile_ = config.output_profile;
codec_ = VideoCodecProfileToVideoCodec(config.output_profile);
client_ = client;
input_visible_size_ = config.input_visible_size;
frame_rate_ = config.framerate;
bitrate_ = config.bitrate;
bitstream_buffer_size_ = EstimateBitstreamBufferSize(
bitrate_, frame_rate_, config.input_visible_size);
require_low_delay_ = config.require_low_delay;
required_encoder_type_ = config.required_encoder_type;
if (config.HasTemporalLayer())
num_temporal_layers_ = config.spatial_layers.front().num_of_temporal_layers;
if (num_temporal_layers_ > 2) {
MEDIA_LOG(ERROR, media_log) << "Unsupported number of SVC temporal layers.";
return false;
}
if (!ResetCompressionSession()) {
MEDIA_LOG(ERROR, media_log) << "Failed creating compression session.";
return false;
}
auto encoder_info = GetVideoEncoderInfo(compression_session_.get(), config);
// Report whether hardware encode is being used.
if (!encoder_info.is_hardware_accelerated) {
MEDIA_LOG(INFO, media_log) << "VideoToolbox selected a software encoder.";
}
media_log_ = std::move(media_log);
client_->NotifyEncoderInfoChange(encoder_info);
client_->RequireBitstreamBuffers(kNumInputBuffers, input_visible_size_,
bitstream_buffer_size_);
return true;
}
void VTVideoEncodeAccelerator::Encode(scoped_refptr<VideoFrame> frame,
bool force_keyframe) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(compression_session_);
DCHECK(frame);
auto pixel_buffer = WrapVideoFrameInCVPixelBuffer(frame);
if (!pixel_buffer) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderFailedEncode,
"WrapVideoFrameInCVPixelBuffer failed"});
return;
}
if (can_set_encoder_color_space_) {
// WrapVideoFrameInCVPixelBuffer() will do a few different things depending
// on the input buffer type:
// * If it's an IOSurface, the underlying attached color space will
// passthrough to the pixel buffer.
// * If we're uploading to a new pixel buffer and the provided frame color
// space is valid that'll be set on the pixel buffer.
// * If the frame color space is not valid, BT709 will be assumed.
auto frame_cs = GetImageBufferColorSpace(pixel_buffer.get());
if (encoder_color_space_ && frame_cs != encoder_color_space_) {
if (pending_encodes_) {
auto status = VTCompressionSessionCompleteFrames(
compression_session_.get(), kCMTimeInvalid);
if (status != noErr) {
NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderFailedFlush,
"flush failed: " + logging::DescriptionFromOSStatus(status)});
return;
}
}
if (!ResetCompressionSession()) {
// ResetCompressionSession() invokes NotifyErrorStatus() on failure.
return;
}
encoder_color_space_.reset();
}
if (!encoder_color_space_) {
encoder_color_space_ = frame_cs;
SetEncoderColorSpace();
}
}
NSDictionary* frame_props = @{
CFToNSPtrCast(kVTEncodeFrameOptionKey_ForceKeyFrame) : force_keyframe ? @YES
: @NO
};
// VideoToolbox uses timestamps for rate control purposes, but we can't rely
// on real frame timestamps to be consistent with configured frame rate.
// That's why we map real frame timestamps to generate ones that a
// monotonically increase according to the configured frame rate.
// Outputs will still be assigned real timestamps from frame objects.
auto generate_timestamp = AssignMonotonicTimestamp();
auto timestamp_cm =
CMTimeMake(generate_timestamp.InMicroseconds(), USEC_PER_SEC);
auto duration_cm = CMTimeMake(
(base::Seconds(1) / frame_rate_).InMicroseconds(), USEC_PER_SEC);
// Wrap information we'll need after the frame is encoded in a heap object.
// We'll get the pointer back from the VideoToolbox completion callback.
auto request = std::make_unique<InProgressFrameEncode>(
std::move(frame), encoder_color_space_.value_or(gfx::ColorSpace()));
// We can pass the ownership of |request| to the encode callback if
// successful. Otherwise let it fall out of scope.
OSStatus status = VTCompressionSessionEncodeFrame(
compression_session_.get(), pixel_buffer.get(), timestamp_cm, duration_cm,
NSToCFPtrCast(frame_props), reinterpret_cast<void*>(request.get()),
nullptr);
if (status == kVTVideoEncoderNotAvailableNowErr ||
status == kVTCouldNotCreateInstanceErr) {
NotifyErrorStatus({EncoderStatus::Codes::kOutOfPlatformEncoders,
"No more encoders available. " +
logging::DescriptionFromOSStatus(status)});
return;
}
if (status != noErr) {
NotifyErrorStatus({EncoderStatus::Codes::kSystemAPICallError,
"VTCompressionSessionEncodeFrame failed: " +
logging::DescriptionFromOSStatus(status)});
return;
}
++pending_encodes_;
// We successfully passed ownership to `sourceFrameRefcon` parameter
// of `VTCompressionSessionEncodeFrame`, release the smart pointer.
request.release();
}
void VTVideoEncodeAccelerator::UseOutputBitstreamBuffer(
BitstreamBuffer buffer) {
DVLOG(3) << __func__ << ": buffer size=" << buffer.size();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (buffer.size() < bitstream_buffer_size_) {
NotifyErrorStatus({EncoderStatus::Codes::kInvalidOutputBuffer,
"Output BitstreamBuffer isn't big enough: " +
base::NumberToString(buffer.size()) + " vs. " +
base::NumberToString(bitstream_buffer_size_)});
return;
}
auto mapping = buffer.TakeRegion().Map();
if (!mapping.IsValid()) {
NotifyErrorStatus({EncoderStatus::Codes::kSystemAPICallError,
"Failed mapping shared memory"});
return;
}
auto buffer_ref = std::make_unique<BitstreamBufferRef>(
buffer.id(), std::move(mapping), buffer.size());
// If there is already EncodeOutput waiting, copy its output first.
if (!encoder_output_queue_.empty()) {
auto encode_output = std::move(encoder_output_queue_.front());
encoder_output_queue_.pop_front();
ReturnBitstreamBuffer(std::move(encode_output), std::move(buffer_ref));
return;
}
bitstream_buffer_queue_.push_back(std::move(buffer_ref));
}
void VTVideoEncodeAccelerator::RequestEncodingParametersChange(
const Bitrate& bitrate,
uint32_t framerate,
const std::optional<gfx::Size>& size) {
std::ostringstream parameters_description;
parameters_description << ": bitrate=" << bitrate.ToString()
<< ": framerate=" << framerate;
if (size.has_value()) {
parameters_description << ": frame size=" << size->width() << "x"
<< size->height();
}
DVLOG(3) << __func__ << parameters_description.str();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (size.has_value()) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedConfig,
"Update output frame size is not supported"});
return;
}
if (!compression_session_) {
NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderIllegalState, "No compression session"});
return;
}
frame_rate_ = framerate;
video_toolbox::SessionPropertySetter session_property_setter(
compression_session_);
if (!session_property_setter.Set(kVTCompressionPropertyKey_ExpectedFrameRate,
frame_rate_)) {
NotifyErrorStatus(
{EncoderStatus::Codes::kSystemAPICallError, "Can't change frame rate"});
return;
}
if (!session_property_setter.Set(
kVTCompressionPropertyKey_AverageBitRate,
static_cast<int32_t>(bitrate.target_bps()))) {
NotifyErrorStatus({EncoderStatus::Codes::kSystemAPICallError,
"Can't change average bitrate"});
return;
}
// Here in case of VBR we'd like to set more relaxed bitrate constraints.
// It looks like setting VTCompressionPropertyKey_DataRateLimits should be
// appropriate her, but it is NOT compatible with
// EnableLowLatencyRateControl even though this fact is not documented.
// Even in non low latency mode VTCompressionPropertyKey_DataRateLimits tends
// to make the encoder undershoot set bitrate.
bitrate_ = bitrate;
}
void VTVideoEncodeAccelerator::Destroy() {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
delete this;
}
void VTVideoEncodeAccelerator::Flush(FlushCallback flush_callback) {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(flush_callback);
if (!compression_session_) {
std::move(flush_callback).Run(/*success=*/false);
return;
}
// Even though this will block until all frames are returned, the frames will
// be posted to the current task runner, so we can't run the flush callback
// at this time.
OSStatus status = VTCompressionSessionCompleteFrames(
compression_session_.get(), kCMTimeInvalid);
if (status != noErr) {
OSSTATUS_DLOG(ERROR, status)
<< " VTCompressionSessionCompleteFrames failed: ";
std::move(flush_callback).Run(/*success=*/false);
return;
}
pending_flush_cb_ = std::move(flush_callback);
MaybeRunFlushCallback();
}
bool VTVideoEncodeAccelerator::IsFlushSupported() {
return true;
}
// static
void VTVideoEncodeAccelerator::CompressionCallback(void* encoder_opaque,
void* request_opaque,
OSStatus status,
VTEncodeInfoFlags info,
CMSampleBufferRef sbuf) {
// This function may be called asynchronously, on a different thread from the
// one that calls VTCompressionSessionEncodeFrame.
DVLOG(3) << __func__;
auto* encoder = reinterpret_cast<VTVideoEncodeAccelerator*>(encoder_opaque);
DCHECK(encoder);
// InProgressFrameEncode holds timestamp information of the encoded frame.
std::unique_ptr<InProgressFrameEncode> frame_info(
reinterpret_cast<InProgressFrameEncode*>(request_opaque));
// EncodeOutput holds onto CMSampleBufferRef when posting task between
// threads.
auto encode_output = std::make_unique<EncodeOutput>(info, sbuf, *frame_info);
// This method is NOT called on |task_runner_|, so we still need to
// post a task back to it to do work.
encoder->task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&VTVideoEncodeAccelerator::CompressionCallbackTask,
encoder->encoder_weak_ptr_, status,
std::move(encode_output)));
}
void VTVideoEncodeAccelerator::CompressionCallbackTask(
OSStatus status,
std::unique_ptr<EncodeOutput> encode_output) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
--pending_encodes_;
DCHECK_GE(pending_encodes_, 0);
if (status == kVTVideoEncoderNotAvailableNowErr ||
status == kVTCouldNotCreateInstanceErr) {
NotifyErrorStatus({EncoderStatus::Codes::kOutOfPlatformEncoders,
"No more encoders available. " +
logging::DescriptionFromOSStatus(status)});
return;
} else if (status != noErr) {
NotifyErrorStatus(
{EncoderStatus::Codes::kSystemAPICallError,
"Encode failed: " + logging::DescriptionFromOSStatus(status)});
return;
}
// If there isn't any BitstreamBuffer to copy into, add it to a queue for
// later use.
if (bitstream_buffer_queue_.empty()) {
encoder_output_queue_.push_back(std::move(encode_output));
return;
}
auto buffer_ref = std::move(bitstream_buffer_queue_.front());
bitstream_buffer_queue_.pop_front();
ReturnBitstreamBuffer(std::move(encode_output), std::move(buffer_ref));
}
void VTVideoEncodeAccelerator::ReturnBitstreamBuffer(
std::unique_ptr<EncodeOutput> encode_output,
std::unique_ptr<VTVideoEncodeAccelerator::BitstreamBufferRef> buffer_ref) {
DVLOG(3) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (encode_output->info & kVTEncodeInfo_FrameDropped) {
DVLOG(2) << " frame dropped";
client_->BitstreamBufferReady(buffer_ref->id,
BitstreamBufferMetadata::CreateForDropFrame(
encode_output->capture_timestamp));
MaybeRunFlushCallback();
return;
}
NSArray* sample_attachments_array =
CFToNSPtrCast(CMSampleBufferGetSampleAttachmentsArray(
encode_output->sample_buffer.get(), true));
NSDictionary* sample_attachments =
[sample_attachments_array count] > 0
? [sample_attachments_array objectAtIndex:0]
: nil;
NSNumber* not_sync = [sample_attachments
objectForKey:CFToNSPtrCast(kCMSampleAttachmentKey_NotSync)];
const bool keyframe = !not_sync || ![not_sync boolValue];
NSNumber* depended = [sample_attachments
objectForKey:CFToNSPtrCast(kCMSampleAttachmentKey_IsDependedOnByOthers)];
const bool belongs_to_base_layer = !depended || [depended boolValue];
size_t used_buffer_size = 0;
const bool copy_rv = video_toolbox::CopySampleBufferToAnnexBBuffer(
codec_, encode_output->sample_buffer.get(), keyframe, buffer_ref->size,
static_cast<char*>(buffer_ref->mapping.memory()), &used_buffer_size);
if (!copy_rv) {
NotifyErrorStatus(
{EncoderStatus::Codes::kBitstreamConversionError,
"Cannot copy output from SampleBuffer to AnnexBBuffer."});
return;
}
BitstreamBufferMetadata md(used_buffer_size, keyframe,
encode_output->capture_timestamp);
switch (codec_) {
case VideoCodec::kH264:
md.h264.emplace().temporal_idx = belongs_to_base_layer ? 0 : 1;
break;
case VideoCodec::kHEVC: {
SVCGenericMetadata& svc = md.svc_generic.emplace();
svc.temporal_idx = belongs_to_base_layer ? 0 : 1;
svc.spatial_idx = 0;
// We get the temporal id based on `IsDependedOnByOthers` property,
// so we are not able to provide the reference flags and refresh
// flags for HEVC, if the |follow_svc_spec| flag is false, RTC
// will not send dependency descriptor RTP extension.
svc.follow_svc_spec = encoder_produces_svc_spec_compliant_bitstream_;
break;
}
default:
NOTREACHED();
}
md.encoded_color_space = encode_output->encoded_color_space;
client_->BitstreamBufferReady(buffer_ref->id, std::move(md));
MaybeRunFlushCallback();
}
bool VTVideoEncodeAccelerator::ResetCompressionSession() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
compression_session_.reset();
if (auto created = CreateCompressionSession(
codec_, input_visible_size_, required_encoder_type_,
require_low_delay_, &VTVideoEncodeAccelerator::CompressionCallback,
this);
created.has_value()) {
compression_session_ = std::move(created.value());
} else {
EncoderStatusTraits::Codes status_code =
(created.error() == kVTVideoEncoderNotAvailableNowErr ||
created.error() == kVTCouldNotCreateInstanceErr)
? EncoderStatus::Codes::kOutOfPlatformEncoders
: EncoderStatus::Codes::kEncoderInitializationError;
NotifyErrorStatus(
{status_code, "VTCompressionSessionCreate failed: " +
logging::DescriptionFromOSStatus(created.error())});
return false;
}
if (!ConfigureCompressionSession(codec_)) {
return false;
}
RequestEncodingParametersChange(bitrate_, frame_rate_, std::nullopt);
return true;
}
bool VTVideoEncodeAccelerator::ConfigureCompressionSession(VideoCodec codec) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(compression_session_);
video_toolbox::SessionPropertySetter session_property_setter(
compression_session_);
if (!session_property_setter.Set(kVTCompressionPropertyKey_ProfileLevel,
VideoCodecProfileToVTProfile(profile_))) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedProfile,
"Unsupported profile: " + GetProfileName(profile_)});
return false;
}
if (!session_property_setter.Set(kVTCompressionPropertyKey_RealTime,
require_low_delay_)) {
NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderUnsupportedConfig,
"The video encoder doesn't support compression in real time"});
return false;
}
if (!session_property_setter.Set(
kVTCompressionPropertyKey_AllowFrameReordering, false)) {
NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderUnsupportedConfig,
"The video encoder doesn't support non frame reordering compression"});
return false;
}
// Limit keyframe output to 4 minutes, see https://crbug.com/658429.
if (!session_property_setter.Set(
kVTCompressionPropertyKey_MaxKeyFrameInterval, 7200)) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedConfig,
"Failed to set max keyframe interval to 7200 frames"});
return false;
}
// This property may suddenly become unsupported when a second compression
// session is created if the codec is H.265 and CPU arch is x64, so we can
// always check if the property is supported before setting it.
if (session_property_setter.IsSupported(
kVTCompressionPropertyKey_MaxKeyFrameIntervalDuration)) {
if (!session_property_setter.Set(
kVTCompressionPropertyKey_MaxKeyFrameIntervalDuration, 240)) {
NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderUnsupportedConfig,
"Failed to set max keyframe interval duration to 240 seconds"});
return false;
}
} else {
DLOG(WARNING) << "MaxKeyFrameIntervalDuration is not supported";
}
if (session_property_setter.IsSupported(
kVTCompressionPropertyKey_MaxFrameDelayCount)) {
// macOS 15.0 will reject encode if we set max frame delay count to 3,
// don't fail the whole encode session if this property can not be set
// properly.
if (!session_property_setter.Set(
kVTCompressionPropertyKey_MaxFrameDelayCount,
static_cast<int>(kNumInputBuffers))) {
DLOG(ERROR) << "Failed to set max frame delay count to "
<< base::NumberToString(kNumInputBuffers);
}
} else {
DLOG(WARNING) << "MaxFrameDelayCount is not supported";
}
if (num_temporal_layers_ != 2) {
return true;
}
if (!IsHardwareEncoder(compression_session_.get()) ||
!IsSVCSupported(codec)) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedConfig,
"SVC encoding is not supported on this OS version or "
"hardware, or SW encoding was selected"});
return false;
}
if (@available(macOS LOW_LATENCY_AND_SVC_AVAILABLE_VER, *)) {
if (!session_property_setter.IsSupported(
kVTCompressionPropertyKey_BaseLayerFrameRateFraction)) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedConfig,
"BaseLayerFrameRateFraction is not supported"});
return false;
}
if (!session_property_setter.Set(
kVTCompressionPropertyKey_BaseLayerFrameRateFraction, 0.5)) {
NotifyErrorStatus({EncoderStatus::Codes::kEncoderUnsupportedConfig,
"Setting BaseLayerFrameRate property failed"});
return false;
}
}
if (@available(macOS 13.0, iOS 16.0, *)) {
// Configuring the number of reference frames to 1, which will produce
// bitstream that follows WebRTC SVC spec for L1T2.
if (session_property_setter.IsSupported(
kVTCompressionPropertyKey_ReferenceBufferCount)) {
if (!session_property_setter.Set(
kVTCompressionPropertyKey_ReferenceBufferCount, 1)) {
DLOG(WARNING) << "Setting ReferenceBufferCount property failed";
} else {
encoder_produces_svc_spec_compliant_bitstream_ = true;
}
} else {
DLOG(WARNING) << "ReferenceBufferCount is not supported";
}
}
return true;
}
void VTVideoEncodeAccelerator::MaybeRunFlushCallback() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!pending_flush_cb_)
return;
if (pending_encodes_ || !encoder_output_queue_.empty())
return;
std::move(pending_flush_cb_).Run(/*success=*/true);
}
void VTVideoEncodeAccelerator::SetEncoderColorSpace() {
if (!encoder_color_space_ || !encoder_color_space_->IsValid()) {
return;
}
CFStringRef primary, transfer, matrix;
if (!GetImageBufferColorValues(*encoder_color_space_, &primary, &transfer,
&matrix)) {
DLOG(ERROR) << "Failed to set bitstream color space: "
<< encoder_color_space_->ToString();
return;
}
video_toolbox::SessionPropertySetter session_property_setter(
compression_session_);
if (!session_property_setter.IsSupported(
kVTCompressionPropertyKey_ColorPrimaries) ||
!session_property_setter.IsSupported(
kVTCompressionPropertyKey_TransferFunction) ||
!session_property_setter.IsSupported(
kVTCompressionPropertyKey_YCbCrMatrix)) {
DLOG(ERROR) << "VTCompressionSession doesn't support color space settings.";
can_set_encoder_color_space_ = false;
return;
}
if (!session_property_setter.Set(kVTCompressionPropertyKey_ColorPrimaries,
primary) ||
!session_property_setter.Set(kVTCompressionPropertyKey_TransferFunction,
transfer) ||
!session_property_setter.Set(kVTCompressionPropertyKey_YCbCrMatrix,
matrix)) {
DLOG(ERROR) << "Failed to set color space on VTCompressionSession.";
can_set_encoder_color_space_ = false;
return;
}
DVLOG(1) << "Set encoder color space to: "
<< encoder_color_space_->ToString();
}
void VTVideoEncodeAccelerator::NotifyErrorStatus(EncoderStatus status) {
CHECK(!status.is_ok());
LOG(ERROR) << "Call NotifyErrorStatus(): code="
<< static_cast<int>(status.code())
<< ", message=" << status.message();
if (media_log_) {
MEDIA_LOG(ERROR, media_log_) << status.message();
}
// NotifyErrorStatus() can be called without calling Initialize() in the case
// of GetSupportedProfiles().
if (!client_) {
return;
}
client_->NotifyErrorStatus(std::move(status));
}
base::TimeDelta VTVideoEncodeAccelerator::AssignMonotonicTimestamp() {
const base::TimeDelta step = base::Seconds(1) / frame_rate_;
auto result = next_timestamp_;
next_timestamp_ += step;
return result;
}
} // namespace media