21 #include <VideoToolbox/VideoToolbox.h>
22 #include <CoreVideo/CoreVideo.h>
23 #include <CoreMedia/CoreMedia.h>
24 #include <TargetConditionals.h>
25 #include <Availability.h>
44 #if !HAVE_KCMVIDEOCODECTYPE_HEVC
48 #if !HAVE_KCMVIDEOCODECTYPE_HEVCWITHALPHA
52 #if !HAVE_KCVPIXELFORMATTYPE_420YPCBCR10BIPLANARVIDEORANGE
57 #if !HAVE_KVTQPMODULATIONLEVEL_DEFAULT
62 #ifndef TARGET_CPU_ARM64
63 # define TARGET_CPU_ARM64 0
67 size_t parameterSetIndex,
68 const uint8_t **parameterSetPointerOut,
69 size_t *parameterSetSizeOut,
70 size_t *parameterSetCountOut,
71 int *NALUnitHeaderLengthOut);
144 #define GET_SYM(symbol, defaultVal) \
146 CFStringRef* handle = (CFStringRef*)dlsym(RTLD_DEFAULT, #symbol); \
148 compat_keys.symbol = CFSTR(defaultVal); \
150 compat_keys.symbol = *handle; \
156 compat_keys.CMVideoFormatDescriptionGetHEVCParameterSetAtIndex =
159 "CMVideoFormatDescriptionGetHEVCParameterSetAtIndex"
200 "TargetQualityForAlpha");
202 "PrioritizeEncodingSpeedOverQuality");
207 "EnableHardwareAcceleratedVideoEncoder");
209 "RequireHardwareAcceleratedVideoEncoder");
211 "EnableLowLatencyRateControl");
214 "MaximizePowerEfficiency");
216 "ReferenceBufferCount");
222 #define H264_PROFILE_CONSTRAINED_HIGH (AV_PROFILE_H264_HIGH | AV_PROFILE_H264_CONSTRAINED)
301 CFRelease(
info->cm_buffer);
309 CFStringRef encoder_id =
NULL;
311 CFIndex length, max_size;
322 length = CFStringGetLength(encoder_id);
323 max_size = CFStringGetMaximumSizeForEncoding(length, kCFStringEncodingUTF8);
326 CFRelease(encoder_id);
330 CFStringGetCString(encoder_id,
333 kCFStringEncodingUTF8);
336 CFRelease(encoder_id);
343 CFStringRef profile_level,
344 CFNumberRef gamma_level,
345 CFDictionaryRef enc_info,
346 CFDictionaryRef pixel_buffer_info);
450 *buf =
info->cm_buffer;
478 CMSampleBufferRef sample_buffer,
485 size_t src_size = CMSampleBufferGetTotalSampleSize(sample_buffer);
486 CMBlockBufferRef
block = CMSampleBufferGetDataBuffer(sample_buffer);
488 if (length_code_size > 4)
491 while (
offset < src_size) {
501 if (
status != kCMBlockBufferNoErr) {
505 for (
i = 0;
i < length_code_size;
i++) {
507 box_len |= size_buf[
i];
510 curr_src_len = box_len + length_code_size;
522 double alpha_quality)
537 return MKBETAG(
'a',
'p',
'c',
'o');
539 return MKBETAG(
'a',
'p',
'c',
's');
541 return MKBETAG(
'a',
'p',
'c',
'n');
543 return MKBETAG(
'a',
'p',
'c',
'h');
545 return MKBETAG(
'a',
'p',
'4',
'h');
547 return MKBETAG(
'a',
'p',
'4',
'x');
554 desc->log2_chroma_w == 0))
555 return MKBETAG(
'a',
'p',
'4',
'h');
557 return MKBETAG(
'a',
'p',
'c',
'n');
573 CMVideoFormatDescriptionRef vid_fmt,
577 size_t total_size = 0;
579 int is_count_bad = 0;
594 for (
i = 0;
i < ps_count || is_count_bad;
i++) {
608 if (
i > 0 && is_count_bad)
status = 0;
627 CMVideoFormatDescriptionRef vid_fmt,
633 int is_count_bad = 0;
651 for (
i = 0;
i < ps_count || is_count_bad;
i++) {
663 if (
i > 0 && is_count_bad)
status = 0;
669 if (dst_size < next_offset) {
692 CMVideoFormatDescriptionRef vid_fmt;
696 vid_fmt = CMSampleBufferGetFormatDescription(sample_buffer);
722 CFDataRef
data = CMFormatDescriptionGetExtension(vid_fmt, kCMFormatDescriptionExtension_VerbatimSampleDescription);
723 if (
data && CFGetTypeID(
data) == CFDataGetTypeID()) {
724 CFIndex
size = CFDataGetLength(
data);
740 void *sourceFrameCtx,
742 VTEncodeInfoFlags
flags,
743 CMSampleBufferRef sample_buffer)
762 if (!sample_buffer) {
766 CFRetain(sample_buffer);
767 info->cm_buffer = sample_buffer;
783 CMSampleBufferRef sample_buffer,
787 CMVideoFormatDescriptionRef vid_fmt;
791 vid_fmt = CMSampleBufferGetFormatDescription(sample_buffer);
819 CFStringRef *profile_level_val)
829 *profile_level_val =
NULL;
836 switch (vtctx->
level) {
837 case 0: *profile_level_val =
838 compat_keys.kVTProfileLevel_H264_Baseline_AutoLevel;
break;
839 case 13: *profile_level_val = kVTProfileLevel_H264_Baseline_1_3;
break;
840 case 30: *profile_level_val = kVTProfileLevel_H264_Baseline_3_0;
break;
841 case 31: *profile_level_val = kVTProfileLevel_H264_Baseline_3_1;
break;
842 case 32: *profile_level_val = kVTProfileLevel_H264_Baseline_3_2;
break;
843 case 40: *profile_level_val =
844 compat_keys.kVTProfileLevel_H264_Baseline_4_0;
break;
845 case 41: *profile_level_val = kVTProfileLevel_H264_Baseline_4_1;
break;
846 case 42: *profile_level_val =
847 compat_keys.kVTProfileLevel_H264_Baseline_4_2;
break;
848 case 50: *profile_level_val =
849 compat_keys.kVTProfileLevel_H264_Baseline_5_0;
break;
850 case 51: *profile_level_val =
851 compat_keys.kVTProfileLevel_H264_Baseline_5_1;
break;
852 case 52: *profile_level_val =
853 compat_keys.kVTProfileLevel_H264_Baseline_5_2;
break;
858 *profile_level_val =
compat_keys.kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel;
860 if (vtctx->
level != 0) {
863 "Level is auto-selected when constrained-baseline "
864 "profile is used. The output may be encoded with a "
865 "different level.\n");
870 switch (vtctx->
level) {
871 case 0: *profile_level_val =
872 compat_keys.kVTProfileLevel_H264_Main_AutoLevel;
break;
873 case 30: *profile_level_val = kVTProfileLevel_H264_Main_3_0;
break;
874 case 31: *profile_level_val = kVTProfileLevel_H264_Main_3_1;
break;
875 case 32: *profile_level_val = kVTProfileLevel_H264_Main_3_2;
break;
876 case 40: *profile_level_val = kVTProfileLevel_H264_Main_4_0;
break;
877 case 41: *profile_level_val = kVTProfileLevel_H264_Main_4_1;
break;
878 case 42: *profile_level_val =
880 case 50: *profile_level_val = kVTProfileLevel_H264_Main_5_0;
break;
881 case 51: *profile_level_val =
883 case 52: *profile_level_val =
889 *profile_level_val =
compat_keys.kVTProfileLevel_H264_ConstrainedHigh_AutoLevel;
891 if (vtctx->
level != 0) {
894 "Level is auto-selected when constrained-high profile "
895 "is used. The output may be encoded with a different "
901 switch (vtctx->
level) {
902 case 0: *profile_level_val =
903 compat_keys.kVTProfileLevel_H264_High_AutoLevel;
break;
904 case 30: *profile_level_val =
906 case 31: *profile_level_val =
908 case 32: *profile_level_val =
910 case 40: *profile_level_val =
912 case 41: *profile_level_val =
914 case 42: *profile_level_val =
916 case 50: *profile_level_val = kVTProfileLevel_H264_High_5_0;
break;
917 case 51: *profile_level_val =
919 case 52: *profile_level_val =
924 switch (vtctx->
level) {
925 case 0: *profile_level_val =
926 compat_keys.kVTProfileLevel_H264_Extended_AutoLevel;
break;
927 case 50: *profile_level_val =
928 compat_keys.kVTProfileLevel_H264_Extended_5_0;
break;
933 if (!*profile_level_val) {
948 CFStringRef *profile_level_val)
957 *profile_level_val =
NULL;
971 "main profile with %d bit input\n",
bit_depth);
978 "Invalid main10 profile with %d bit input\n",
bit_depth);
987 compat_keys.kVTProfileLevel_HEVC_Main42210_AutoLevel;
991 if (!*profile_level_val) {
1002 int* av_pixel_format,
1005 const char *range_name;
1011 if (*av_pixel_format)
1016 "Could not get pixel format for color format '%s' range '%s'.\n",
1018 range_name ? range_name :
"Unknown");
1027 CFDictionarySetValue(dict,
1028 kCVImageBufferColorPrimariesKey,
1033 CFDictionarySetValue(dict,
1034 kCVImageBufferTransferFunctionKey,
1039 CFDictionarySetValue(dict,
1040 kCVImageBufferYCbCrMatrixKey,
1046 CFMutableDictionaryRef* dict)
1048 CFNumberRef cv_color_format_num =
NULL;
1049 CFNumberRef width_num =
NULL;
1050 CFNumberRef height_num =
NULL;
1051 CFMutableDictionaryRef pixel_buffer_info =
NULL;
1052 int cv_color_format;
1060 pixel_buffer_info = CFDictionaryCreateMutable(
1061 kCFAllocatorDefault,
1063 &kCFCopyStringDictionaryKeyCallBacks,
1064 &kCFTypeDictionaryValueCallBacks);
1066 if (!pixel_buffer_info)
goto pbinfo_nomem;
1068 cv_color_format_num = CFNumberCreate(kCFAllocatorDefault,
1069 kCFNumberSInt32Type,
1071 if (!cv_color_format_num)
goto pbinfo_nomem;
1073 CFDictionarySetValue(pixel_buffer_info,
1074 kCVPixelBufferPixelFormatTypeKey,
1075 cv_color_format_num);
1078 width_num = CFNumberCreate(kCFAllocatorDefault,
1079 kCFNumberSInt32Type,
1081 if (!width_num)
goto pbinfo_nomem;
1083 CFDictionarySetValue(pixel_buffer_info,
1084 kCVPixelBufferWidthKey,
1088 height_num = CFNumberCreate(kCFAllocatorDefault,
1089 kCFNumberSInt32Type,
1091 if (!height_num)
goto pbinfo_nomem;
1093 CFDictionarySetValue(pixel_buffer_info,
1094 kCVPixelBufferHeightKey,
1100 *dict = pixel_buffer_info;
1107 if (pixel_buffer_info) CFRelease(pixel_buffer_info);
1113 CFNumberRef *gamma_level)
1117 *gamma_level =
NULL;
1125 *gamma_level = CFNumberCreate(
NULL, kCFNumberFloat32Type, &gamma);
1137 const char *print_option_name,
1143 if (
status == kVTPropertyNotSupportedErr) {
1146 "This device does not support the %s option. Value ignored.\n",
1148 }
else if (
status != 0) {
1151 "Error setting %s: Error %d\n",
1159 const char* print_option_name,
1161 CFNumberRef value_cfnum = CFNumberCreate(kCFAllocatorDefault,
1165 if (value_cfnum ==
NULL) {
1171 CFRelease(value_cfnum);
1178 CFStringRef profile_level,
1179 CFNumberRef gamma_level,
1180 CFDictionaryRef enc_info,
1181 CFDictionaryRef pixel_buffer_info,
1182 bool constant_bit_rate,
1183 VTCompressionSessionRef *session)
1189 CFNumberRef bit_rate_num;
1190 CFNumberRef quality_num;
1191 CFNumberRef bytes_per_second;
1192 CFNumberRef one_second;
1193 CFArrayRef data_rate_limits;
1194 int64_t bytes_per_second_value = 0;
1198 int status = VTCompressionSessionCreate(kCFAllocatorDefault,
1204 kCFAllocatorDefault,
1212 #if !TARGET_OS_IPHONE
1214 av_log(avctx,
AV_LOG_ERROR,
"Try -allow_sw 1. The hardware encoder may be busy, or not supported.\n");
1221 #if defined (MAC_OS_X_VERSION_10_13) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_13)
1222 if (__builtin_available(macOS 10.13, iOS 11.0, *)) {
1227 status = VTCopySupportedPropertyDictionaryForEncoder(avctx->
width,
1246 av_log(avctx,
AV_LOG_ERROR,
"Error: -q:v qscale not available for encoder. Use -b:v bitrate instead.\n");
1252 quality_num = CFNumberCreate(kCFAllocatorDefault,
1253 kCFNumberFloat32Type,
1255 if (!quality_num)
return AVERROR(ENOMEM);
1258 kVTCompressionPropertyKey_Quality,
1260 CFRelease(quality_num);
1262 bit_rate_num = CFNumberCreate(kCFAllocatorDefault,
1263 kCFNumberSInt32Type,
1265 if (!bit_rate_num)
return AVERROR(ENOMEM);
1267 if (constant_bit_rate) {
1269 compat_keys.kVTCompressionPropertyKey_ConstantBitRate,
1271 if (
status == kVTPropertyNotSupportedErr) {
1272 av_log(avctx,
AV_LOG_ERROR,
"Error: -constant_bit_rate true is not supported by the encoder.\n");
1277 kVTCompressionPropertyKey_AverageBitRate,
1281 CFRelease(bit_rate_num);
1291 compat_keys.kVTCompressionPropertyKey_PrioritizeEncodingSpeedOverQuality,
1292 vtctx->
prio_speed ? kCFBooleanTrue : kCFBooleanFalse);
1294 av_log(avctx,
AV_LOG_WARNING,
"PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\n");
1300 bytes_per_second_value = max_rate >> 3;
1301 bytes_per_second = CFNumberCreate(kCFAllocatorDefault,
1302 kCFNumberSInt64Type,
1303 &bytes_per_second_value);
1304 if (!bytes_per_second) {
1307 one_second_value = 1;
1308 one_second = CFNumberCreate(kCFAllocatorDefault,
1309 kCFNumberSInt64Type,
1312 CFRelease(bytes_per_second);
1315 nums[0] = (
void *)bytes_per_second;
1316 nums[1] = (
void *)one_second;
1317 data_rate_limits = CFArrayCreate(kCFAllocatorDefault,
1318 (
const void **)nums,
1320 &kCFTypeArrayCallBacks);
1322 if (!data_rate_limits) {
1323 CFRelease(bytes_per_second);
1324 CFRelease(one_second);
1328 kVTCompressionPropertyKey_DataRateLimits,
1331 CFRelease(bytes_per_second);
1332 CFRelease(one_second);
1333 CFRelease(data_rate_limits);
1349 CFNumberRef alpha_quality_num = CFNumberCreate(kCFAllocatorDefault,
1350 kCFNumberDoubleType,
1352 if (!alpha_quality_num)
return AVERROR(ENOMEM);
1355 compat_keys.kVTCompressionPropertyKey_TargetQualityForAlpha,
1357 CFRelease(alpha_quality_num);
1362 "Error setting alpha quality: %d\n",
1368 if (profile_level) {
1370 kVTCompressionPropertyKey_ProfileLevel,
1373 av_log(avctx,
AV_LOG_ERROR,
"Error setting profile/level property: %d. Output will be encoded using a supported profile/level combination.\n",
status);
1378 CFNumberRef interval = CFNumberCreate(kCFAllocatorDefault,
1386 kVTCompressionPropertyKey_MaxKeyFrameInterval,
1388 CFRelease(interval);
1398 kVTCompressionPropertyKey_MoreFramesBeforeStart,
1401 if (
status == kVTPropertyNotSupportedErr) {
1402 av_log(avctx,
AV_LOG_WARNING,
"frames_before property is not supported on this device. Ignoring.\n");
1410 kVTCompressionPropertyKey_MoreFramesAfterEnd,
1413 if (
status == kVTPropertyNotSupportedErr) {
1414 av_log(avctx,
AV_LOG_WARNING,
"frames_after property is not supported on this device. Ignoring.\n");
1423 CFMutableDictionaryRef par;
1430 num = CFNumberCreate(kCFAllocatorDefault,
1434 den = CFNumberCreate(kCFAllocatorDefault,
1440 par = CFDictionaryCreateMutable(kCFAllocatorDefault,
1442 &kCFCopyStringDictionaryKeyCallBacks,
1443 &kCFTypeDictionaryValueCallBacks);
1445 if (!par || !num || !den) {
1446 if (par) CFRelease(par);
1447 if (num) CFRelease(num);
1448 if (den) CFRelease(den);
1453 CFDictionarySetValue(
1455 kCMFormatDescriptionKey_PixelAspectRatioHorizontalSpacing,
1458 CFDictionarySetValue(
1460 kCMFormatDescriptionKey_PixelAspectRatioVerticalSpacing,
1464 kVTCompressionPropertyKey_PixelAspectRatio,
1474 "Error setting pixel aspect ratio to %d:%d: %d.\n",
1486 kVTCompressionPropertyKey_TransferFunction,
1497 kVTCompressionPropertyKey_YCbCrMatrix,
1508 kVTCompressionPropertyKey_ColorPrimaries,
1518 kCVImageBufferGammaLevelKey,
1528 kVTCompressionPropertyKey_AllowFrameReordering,
1543 compat_keys.kVTCompressionPropertyKey_H264EntropyMode,
1554 vtctx->
realtime ? kCFBooleanTrue : kCFBooleanFalse);
1563 compat_keys.kVTCompressionPropertyKey_AllowOpenGOP,
1568 if (avctx->
qmin >= 0) {
1570 compat_keys.kVTCompressionPropertyKey_MinAllowedFrameQP,
1579 if (avctx->
qmax >= 0) {
1581 compat_keys.kVTCompressionPropertyKey_MaxAllowedFrameQP,
1592 kVTCompressionPropertyKey_MaxH264SliceBytes,
1603 compat_keys.kVTCompressionPropertyKey_MaximizePowerEfficiency,
1610 compat_keys.kVTCompressionPropertyKey_ReferenceBufferCount,
1621 compat_keys.kVTCompressionPropertyKey_SpatialAdaptiveQPLevel,
1626 status = VTCompressionSessionPrepareToEncodeFrames(vtctx->
session);
1637 CFMutableDictionaryRef enc_info;
1638 CFMutableDictionaryRef pixel_buffer_info =
NULL;
1641 CFStringRef profile_level =
NULL;
1642 CFNumberRef gamma_level =
NULL;
1651 #if defined(MAC_OS_X_VERSION_10_9) && !TARGET_OS_IPHONE && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9)
1653 if (__builtin_available(macOS 10.10, *)) {
1654 VTRegisterProfessionalVideoWorkflowVideoEncoders();
1666 av_log(avctx,
AV_LOG_WARNING,
"Cannot use B-frames with baseline profile. Output will not contain B-frames.\n");
1671 av_log(avctx,
AV_LOG_WARNING,
"CABAC entropy requires 'main' or 'high' profile, but baseline was requested. Encode will not use CABAC entropy.\n");
1686 enc_info = CFDictionaryCreateMutable(
1687 kCFAllocatorDefault,
1689 &kCFCopyStringDictionaryKeyCallBacks,
1690 &kCFTypeDictionaryValueCallBacks
1693 if (!enc_info)
return AVERROR(ENOMEM);
1695 #if !TARGET_OS_IPHONE
1697 CFDictionarySetValue(enc_info,
1698 compat_keys.kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder,
1701 CFDictionarySetValue(enc_info,
1702 compat_keys.kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder,
1705 CFDictionarySetValue(enc_info,
1706 compat_keys.kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder,
1713 CFDictionarySetValue(enc_info,
1714 compat_keys.kVTVideoEncoderSpecification_EnableLowLatencyRateControl,
1754 CFRelease(gamma_level);
1756 if (pixel_buffer_info)
1757 CFRelease(pixel_buffer_info);
1759 CFRelease(enc_info);
1767 CFBooleanRef has_b_frames_cfbool;
1782 kVTCompressionPropertyKey_AllowFrameReordering,
1783 kCFAllocatorDefault,
1784 &has_b_frames_cfbool);
1786 if (!
status && has_b_frames_cfbool) {
1789 if (CFBooleanGetValue(has_b_frames_cfbool))
1793 CFRelease(has_b_frames_cfbool);
1802 CFArrayRef attachments;
1803 CFDictionaryRef attachment;
1804 CFBooleanRef not_sync;
1807 attachments = CMSampleBufferGetSampleAttachmentsArray(
buffer,
false);
1808 len = !attachments ? 0 : CFArrayGetCount(attachments);
1811 *is_key_frame =
true;
1815 attachment = CFArrayGetValueAtIndex(attachments, 0);
1817 if (CFDictionaryGetValueIfPresent(attachment,
1818 kCMSampleAttachmentKey_NotSync,
1819 (
const void **)¬_sync))
1821 *is_key_frame = !CFBooleanGetValue(not_sync);
1823 *is_key_frame =
true;
1844 size_t sei_payload_size = 0;
1845 uint8_t *nal_start = nal_data;
1851 nal_type = *nal_data & 0x1F;
1858 if (nal_data[nal_size - 1] == 0x80)
1861 while (nal_size > 0 && *nal_data > 0) {
1865 }
while (nal_size > 0 && *nal_data == 0xFF);
1873 sei_payload_size += *nal_data;
1876 }
while (nal_size > 0 && *nal_data == 0xFF);
1878 if (nal_size < sei_payload_size) {
1883 nal_data += sei_payload_size;
1884 nal_size -= sei_payload_size;
1887 *sei_end = nal_data;
1889 return nal_data - nal_start + 1;
1909 uint8_t* dst_end =
dst + dst_size;
1910 const uint8_t* src_end =
src + src_size;
1911 int start_at = dst_offset > 2 ? dst_offset - 2 : 0;
1913 for (
i = start_at;
i < dst_offset &&
i < dst_size;
i++) {
1924 int insert_ep3_byte = *
src <= 3;
1925 if (insert_ep3_byte) {
1943 wrote_bytes =
dst - dst_start;
1946 return -wrote_bytes;
1956 uint8_t *sei_start =
dst;
1957 size_t remaining_sei_size =
sei->size;
1958 size_t remaining_dst_size = dst_size;
1963 if (!remaining_dst_size)
1966 while (sei_type && remaining_dst_size != 0) {
1967 int sei_byte = sei_type > 255 ? 255 : sei_type;
1970 sei_type -= sei_byte;
1972 remaining_dst_size--;
1978 while (remaining_sei_size && remaining_dst_size != 0) {
1979 int size_byte = remaining_sei_size > 255 ? 255 : remaining_sei_size;
1982 remaining_sei_size -= size_byte;
1984 remaining_dst_size--;
1987 if (remaining_dst_size < sei->
size)
1990 header_bytes =
dst - sei_start;
1998 if (bytes_written < 0)
2001 bytes_written += header_bytes;
2002 return bytes_written;
2026 size_t length_code_size,
2027 CMSampleBufferRef sample_buffer,
2032 size_t src_size = CMSampleBufferGetTotalSampleSize(sample_buffer);
2033 size_t remaining_src_size = src_size;
2034 size_t remaining_dst_size = dst_size;
2035 size_t src_offset = 0;
2038 uint8_t size_buf[4];
2040 CMBlockBufferRef
block = CMSampleBufferGetDataBuffer(sample_buffer);
2042 if (length_code_size > 4) {
2046 while (remaining_src_size > 0) {
2047 size_t curr_src_len;
2048 size_t curr_dst_len;
2064 src_offset + length_code_size,
2075 for (
i = 0;
i < length_code_size;
i++) {
2077 box_len |= size_buf[
i];
2090 remaining_dst_size--;
2095 remaining_dst_size);
2097 if (wrote_bytes < 0)
2100 remaining_dst_size -= wrote_bytes;
2101 dst_data += wrote_bytes;
2103 if (remaining_dst_size <= 0)
2109 remaining_dst_size--;
2114 curr_src_len = box_len + length_code_size;
2117 if (remaining_src_size < curr_src_len) {
2121 if (remaining_dst_size < curr_dst_len) {
2129 src_offset + length_code_size,
2144 old_sei_length =
find_sei_end(avctx, dst_box, box_len, &new_sei);
2145 if (old_sei_length < 0)
2151 remaining_dst_size - old_sei_length);
2152 if (wrote_bytes < 0)
2155 if (new_sei + wrote_bytes >= dst_data + remaining_dst_size)
2158 new_sei[wrote_bytes++] = 0x80;
2159 extra_bytes = wrote_bytes - (dst_box + box_len - new_sei);
2161 dst_data += extra_bytes;
2162 remaining_dst_size -= extra_bytes;
2167 src_offset += curr_src_len;
2168 dst_data += curr_dst_len;
2170 remaining_src_size -= curr_src_len;
2171 remaining_dst_size -= curr_dst_len;
2192 if ((
sei->size % 255) == 0)
2195 return copied_size +
sei->size / 255 + 1 +
type / 255 + 1;
2200 CMSampleBufferRef sample_buffer,
2209 size_t length_code_size;
2210 size_t header_size = 0;
2212 size_t out_buf_size;
2213 size_t sei_nalu_size = 0;
2219 CMVideoFormatDescriptionRef vid_fmt;
2230 vid_fmt = CMSampleBufferGetFormatDescription(sample_buffer);
2248 sei_nalu_size =
sizeof(
start_code) + 1 + msg_size + 1;
2251 in_buf_size = CMSampleBufferGetTotalSampleSize(sample_buffer);
2252 out_buf_size = header_size +
2255 nalu_count * ((int)
sizeof(
start_code) - (int)length_code_size);
2281 CMBlockBufferRef buf = CMSampleBufferGetDataBuffer(sample_buffer);
2287 len = CMBlockBufferGetDataLength(buf);
2304 pts = CMSampleBufferGetPresentationTimeStamp(sample_buffer);
2305 dts = CMSampleBufferGetDecodeTimeStamp (sample_buffer);
2307 if (CMTIME_IS_INVALID(dts)) {
2319 pkt->
dts = dts.value / time_base_num - dts_delta;
2336 size_t *contiguous_buf_size)
2340 int av_format =
frame->format;
2353 if (range_guessed) {
2358 "Color range not set for %s. Using MPEG range.\n",
2365 for (
i = 0;
i <
desc->nb_components;
i++) {
2366 int p =
desc->comp[
i].plane;
2368 bool isAlpha = hasAlpha && (p + 1 == *plane_count);
2369 bool isChroma = (p != 0) && !isAlpha;
2370 int shiftw = isChroma ?
desc->log2_chroma_w : 0;
2371 int shifth = isChroma ?
desc->log2_chroma_h : 0;
2372 widths[p] = (avctx->
width + ((1 << shiftw) >> 1)) >> shiftw;
2373 heights[p] = (avctx->
height + ((1 << shifth) >> 1)) >> shifth;
2374 strides[p] =
frame->linesize[p];
2377 *contiguous_buf_size = 0;
2378 for (
i = 0;
i < *plane_count;
i++) {
2379 if (
i < *plane_count - 1 &&
2380 frame->data[
i] + strides[
i] * heights[
i] !=
frame->data[
i + 1]) {
2381 *contiguous_buf_size = 0;
2385 *contiguous_buf_size += strides[
i] * heights[
i];
2394 CVPixelBufferRef cv_img,
2395 const size_t *plane_strides,
2396 const size_t *plane_rows)
2408 status = CVPixelBufferLockBaseAddress(cv_img, 0);
2413 "Error: Could not lock base address of CVPixelBuffer: %d.\n",
2418 if (CVPixelBufferIsPlanar(cv_img)) {
2419 plane_count = CVPixelBufferGetPlaneCount(cv_img);
2421 if (
i == plane_count) {
2422 CVPixelBufferUnlockBaseAddress(cv_img, 0);
2425 "Error: different number of planes in AVFrame and CVPixelBuffer.\n"
2431 dst_addr = (uint8_t*)CVPixelBufferGetBaseAddressOfPlane(cv_img,
i);
2432 src_addr = (uint8_t*)
frame->data[
i];
2433 dst_stride = CVPixelBufferGetBytesPerRowOfPlane(cv_img,
i);
2434 src_stride = plane_strides[
i];
2435 rows = plane_rows[
i];
2437 if (dst_stride == src_stride) {
2438 memcpy(dst_addr, src_addr, src_stride * rows);
2440 copy_bytes = dst_stride < src_stride ? dst_stride : src_stride;
2442 for (j = 0; j < rows; j++) {
2443 memcpy(dst_addr + j * dst_stride, src_addr + j * src_stride, copy_bytes);
2448 if (
frame->data[1]) {
2449 CVPixelBufferUnlockBaseAddress(cv_img, 0);
2452 "Error: different number of planes in AVFrame and non-planar CVPixelBuffer.\n"
2458 dst_addr = (uint8_t*)CVPixelBufferGetBaseAddress(cv_img);
2459 src_addr = (uint8_t*)
frame->data[0];
2460 dst_stride = CVPixelBufferGetBytesPerRow(cv_img);
2461 src_stride = plane_strides[0];
2462 rows = plane_rows[0];
2464 if (dst_stride == src_stride) {
2465 memcpy(dst_addr, src_addr, src_stride * rows);
2467 copy_bytes = dst_stride < src_stride ? dst_stride : src_stride;
2469 for (j = 0; j < rows; j++) {
2470 memcpy(dst_addr + j * dst_stride, src_addr + j * src_stride, copy_bytes);
2475 status = CVPixelBufferUnlockBaseAddress(cv_img, 0);
2486 CVPixelBufferRef *cv_img,
2495 size_t contiguous_buf_size;
2496 CVPixelBufferPoolRef pix_buf_pool;
2502 *cv_img = (CVPixelBufferRef)
frame->data[3];
2506 if (
frame->buf[0]) {
2515 memset(widths, 0,
sizeof(widths));
2516 memset(heights, 0,
sizeof(heights));
2517 memset(strides, 0,
sizeof(strides));
2527 &contiguous_buf_size
2534 "Error: Cannot convert format %d color_range %d: %d\n",
2543 pix_buf_pool = VTCompressionSessionGetPixelBufferPool(vtctx->
session);
2544 if (!pix_buf_pool) {
2551 vtstatus = VTCompressionSessionPrepareToEncodeFrames(vtctx->
session);
2552 if (vtstatus == kVTInvalidSessionErr) {
2557 pix_buf_pool = VTCompressionSessionGetPixelBufferPool(vtctx->
session);
2559 if (!pix_buf_pool) {
2565 "kVTInvalidSessionErr error.\n");
2568 status = CVPixelBufferPoolCreatePixelBuffer(
NULL,
2589 CFDictionaryRef* dict_out)
2591 CFDictionaryRef dict =
NULL;
2593 const void *keys[] = { kVTEncodeFrameOptionKey_ForceKeyFrame };
2594 const void *vals[] = { kCFBooleanTrue };
2596 dict = CFDictionaryCreate(
NULL, keys, vals, 1,
NULL,
NULL);
2597 if(!dict)
return AVERROR(ENOMEM);
2609 CFDictionaryRef frame_dict =
NULL;
2610 CVPixelBufferRef cv_img =
NULL;
2628 if (vtctx->
a53_cc && side_data && side_data->
size) {
2637 status = VTCompressionSessionEncodeFrame(
2656 CFRelease(frame_dict);
2674 CMSampleBufferRef buf =
NULL;
2713 if (
status)
goto end_nopkt;
2714 if (!buf)
goto end_nopkt;
2719 if (
status)
goto end_nopkt;
2731 CFStringRef profile_level,
2732 CFNumberRef gamma_level,
2733 CFDictionaryRef enc_info,
2734 CFDictionaryRef pixel_buffer_info)
2738 CVPixelBufferPoolRef pool =
NULL;
2739 CVPixelBufferRef pix_buf =
NULL;
2741 CMSampleBufferRef buf =
NULL;
2758 pool = VTCompressionSessionGetPixelBufferPool(vtctx->
session);
2765 status = CVPixelBufferPoolCreatePixelBuffer(
NULL,
2769 if(
status != kCVReturnSuccess){
2787 "Error sending frame for extradata: %d\n",
2814 CVPixelBufferRelease(pix_buf);
2842 VTCompressionSessionCompleteFrames(vtctx->
session,
2874 #ifdef kCFCoreFoundationVersionNumber10_7
2879 #if HAVE_KCVPIXELFORMATTYPE_420YPCBCR10BIPLANARVIDEORANGE
2882 #if HAVE_KCVPIXELFORMATTYPE_422YPCBCR8BIPLANARVIDEORANGE
2885 #if HAVE_KCVPIXELFORMATTYPE_422YPCBCR10BIPLANARVIDEORANGE
2888 #if HAVE_KCVPIXELFORMATTYPE_422YPCBCR16BIPLANARVIDEORANGE
2891 #if HAVE_KCVPIXELFORMATTYPE_444YPCBCR8BIPLANARVIDEORANGE
2894 #if HAVE_KCVPIXELFORMATTYPE_444YPCBCR10BIPLANARVIDEORANGE
2897 #if HAVE_KCVPIXELFORMATTYPE_444YPCBCR16BIPLANARVIDEORANGE
2904 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
2905 #define COMMON_OPTIONS \
2906 { "allow_sw", "Allow software encoding", OFFSET(allow_sw), AV_OPT_TYPE_BOOL, \
2907 { .i64 = 0 }, 0, 1, VE }, \
2908 { "require_sw", "Require software encoding", OFFSET(require_sw), AV_OPT_TYPE_BOOL, \
2909 { .i64 = 0 }, 0, 1, VE }, \
2910 { "realtime", "Hint that encoding should happen in real-time if not faster (e.g. capturing from camera).", \
2911 OFFSET(realtime), AV_OPT_TYPE_BOOL, { .i64 = 0 }, -1, 1, VE }, \
2912 { "frames_before", "Other frames will come before the frames in this session. This helps smooth concatenation issues.", \
2913 OFFSET(frames_before), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, \
2914 { "frames_after", "Other frames will come after the frames in this session. This helps smooth concatenation issues.", \
2915 OFFSET(frames_after), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, \
2916 { "prio_speed", "prioritize encoding speed", OFFSET(prio_speed), AV_OPT_TYPE_BOOL, \
2917 { .i64 = -1 }, -1, 1, VE }, \
2918 { "power_efficient", "Set to 1 to enable more power-efficient encoding if supported.", \
2919 OFFSET(power_efficient), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
2920 { "spatial_aq", "Set to 1 to enable spatial AQ if supported.", \
2921 OFFSET(spatialaq), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
2922 { "max_ref_frames", \
2923 "Sets the maximum number of reference frames. This only has an effect when the value is less than the maximum allowed by the profile/level.", \
2924 OFFSET(max_ref_frames), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
2931 #define OFFSET(x) offsetof(VTEncContext, x)
2942 {
"1.3",
"Level 1.3, only available with Baseline Profile", 0,
AV_OPT_TYPE_CONST, { .i64 = 13 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2943 {
"3.0",
"Level 3.0", 0,
AV_OPT_TYPE_CONST, { .i64 = 30 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2944 {
"3.1",
"Level 3.1", 0,
AV_OPT_TYPE_CONST, { .i64 = 31 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2945 {
"3.2",
"Level 3.2", 0,
AV_OPT_TYPE_CONST, { .i64 = 32 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2946 {
"4.0",
"Level 4.0", 0,
AV_OPT_TYPE_CONST, { .i64 = 40 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2947 {
"4.1",
"Level 4.1", 0,
AV_OPT_TYPE_CONST, { .i64 = 41 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2948 {
"4.2",
"Level 4.2", 0,
AV_OPT_TYPE_CONST, { .i64 = 42 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2949 {
"5.0",
"Level 5.0", 0,
AV_OPT_TYPE_CONST, { .i64 = 50 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2950 {
"5.1",
"Level 5.1", 0,
AV_OPT_TYPE_CONST, { .i64 = 51 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2951 {
"5.2",
"Level 5.2", 0,
AV_OPT_TYPE_CONST, { .i64 = 52 }, INT_MIN, INT_MAX,
VE, .unit =
"level" },
2961 {
"constant_bit_rate",
"Require constant bit rate (macOS 13 or newer)",
OFFSET(constant_bit_rate),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
2962 {
"max_slice_bytes",
"Set the maximum number of bytes in an H.264 slice.",
OFFSET(max_slice_bytes),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX,
VE },
2982 .
p.
name =
"h264_videotoolbox",
3005 {
"alpha_quality",
"Compression quality for the alpha channel",
OFFSET(alpha_quality),
AV_OPT_TYPE_DOUBLE, { .dbl = 0.0 }, 0.0, 1.0,
VE },
3007 {
"constant_bit_rate",
"Require constant bit rate (macOS 13 or newer)",
OFFSET(constant_bit_rate),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
3021 .
p.
name =
"hevc_videotoolbox",
3036 .p.wrapper_name =
"videotoolbox",
3062 .
p.
name =
"prores_videotoolbox",
3077 .p.wrapper_name =
"videotoolbox",