summaryrefslogtreecommitdiffstats
path: root/macosx/HBImageUtilities.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-08-31 10:04:28 +0200
committerDamiano Galassi <[email protected]>2017-08-31 10:04:28 +0200
commitae2627cedefb29d6f0743175613a2e5597465be8 (patch)
tree07994cc7d25455fb182ed4d72d4717f83e49bfa8 /macosx/HBImageUtilities.m
parent43dc0cdb9d18c43771ca8f9ed52b19550c2c1b55 (diff)
MacGui: move the color space code out of HBCore.
Diffstat (limited to 'macosx/HBImageUtilities.m')
-rw-r--r--macosx/HBImageUtilities.m184
1 files changed, 184 insertions, 0 deletions
diff --git a/macosx/HBImageUtilities.m b/macosx/HBImageUtilities.m
new file mode 100644
index 000000000..1c5f62174
--- /dev/null
+++ b/macosx/HBImageUtilities.m
@@ -0,0 +1,184 @@
+/* HBColorUtilities.m $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#import "HBImageUtilities.h"
+#import <Cocoa/Cocoa.h>
+#include "hb.h"
+
+CGImageRef CGImageRotated(CGImageRef imgRef, CGFloat angle, BOOL flipped) CF_RETURNS_RETAINED
+{
+ CGFloat angleInRadians = angle * (M_PI / 180);
+ CGFloat width = CGImageGetWidth(imgRef);
+ CGFloat height = CGImageGetHeight(imgRef);
+
+ CGRect imgRect = CGRectMake(0, 0, width, height);
+ CGAffineTransform transform = CGAffineTransformMakeRotation(angleInRadians);
+ CGRect rotatedRect = CGRectApplyAffineTransform(imgRect, transform);
+
+ CGColorSpaceRef colorSpace = CGImageGetColorSpace(imgRef);
+ CGContextRef bmContext = CGBitmapContextCreate(NULL,
+ (size_t)rotatedRect.size.width,
+ (size_t)rotatedRect.size.height,
+ 8,
+ 0,
+ colorSpace,
+ kCGImageAlphaPremultipliedFirst);
+ CGContextSetAllowsAntialiasing(bmContext, FALSE);
+ CGContextSetInterpolationQuality(bmContext, kCGInterpolationNone);
+
+ // Rotate
+ CGContextTranslateCTM(bmContext,
+ + (rotatedRect.size.width / 2),
+ + (rotatedRect.size.height / 2));
+ CGContextRotateCTM(bmContext, -angleInRadians);
+ CGContextTranslateCTM(bmContext,
+ - (rotatedRect.size.width / 2),
+ - (rotatedRect.size.height / 2));
+
+ // Flip
+ if (flipped)
+ {
+ CGAffineTransform flipHorizontal = CGAffineTransformMake(-1, 0, 0, 1, floor(rotatedRect.size.width), 0);
+ CGContextConcatCTM(bmContext, flipHorizontal);
+ }
+
+ CGContextDrawImage(bmContext,
+ CGRectMake((rotatedRect.size.width - width)/2.0f,
+ (rotatedRect.size.height - height)/2.0f,
+ width,
+ height),
+ imgRef);
+
+ CGImageRef rotatedImage = CGBitmapContextCreateImage(bmContext);
+ CFRelease(bmContext);
+
+ return rotatedImage;
+}
+
+static CGColorSpaceRef copyColorSpaceOld(int colorPrimaries)
+{
+ const CGFloat whitePoint[] = {0.95047, 1.0, 1.08883};
+ const CGFloat blackPoint[] = {0, 0, 0};
+
+ // See https://developer.apple.com/library/content/technotes/tn2257/_index.html
+ const CGFloat gamma[] = {1.961, 1.961, 1.961};
+
+ // RGB/XYZ Matrices (D65 white point)
+ switch (colorPrimaries) {
+ case HB_COLR_PRI_EBUTECH:
+ {
+ // Rec. 601, 625 line
+ const CGFloat matrix[] = {0.4305538, 0.2220043, 0.0201822,
+ 0.3415498, 0.7066548, 0.1295534,
+ 0.1783523, 0.0713409, 0.9393222};
+ return CGColorSpaceCreateCalibratedRGB(whitePoint, blackPoint, gamma, matrix);
+ }
+ case HB_COLR_PRI_SMPTEC:
+ {
+ // Rec. 601, 525 line
+ const CGFloat matrix[] = {0.3935209, 0.2123764, 0.0187391,
+ 0.3652581, 0.7010599, 0.1119339,
+ 0.1916769, 0.0865638, 0.9583847};
+ return CGColorSpaceCreateCalibratedRGB(whitePoint, blackPoint, gamma, matrix);
+ }
+ case HB_COLR_PRI_BT2020:
+ {
+ // Rec. 2020
+ const CGFloat matrix[] = {0.6369580, 0.2627002, 0.0000000,
+ 0.1446169, 0.6779981, 0.0280727,
+ 0.1688810, 0.0593017, 1.0609851};
+ return CGColorSpaceCreateCalibratedRGB(whitePoint, blackPoint, gamma, matrix);
+ }
+ case HB_COLR_PRI_BT709:
+ default:
+ {
+ // Rec. 709
+ const CGFloat matrix[] = {0.4124564, 0.2126729, 0.0193339,
+ 0.3575761, 0.7151522, 0.1191920,
+ 0.1804375, 0.0721750, 0.9503041};
+ return CGColorSpaceCreateCalibratedRGB(whitePoint, blackPoint, gamma, matrix);
+ }
+ }
+}
+
+CGColorSpaceRef copyColorSpace(int primaries, int transfer, int matrix)
+{
+ if (NSAppKitVersionNumber < NSAppKitVersionNumber10_11)
+ {
+ return copyColorSpaceOld(primaries);
+ }
+
+ CFStringRef primariesKey = NULL;
+ switch (primaries)
+ {
+ case HB_COLR_PRI_EBUTECH:
+ primariesKey = kCVImageBufferColorPrimaries_EBU_3213;
+ break;
+
+ case HB_COLR_PRI_SMPTEC:
+ primariesKey = kCVImageBufferColorPrimaries_SMPTE_C;
+ break;
+
+ case HB_COLR_PRI_BT2020:
+ primariesKey = kCVImageBufferColorPrimaries_ITU_R_2020;
+ break;
+
+ case HB_COLR_PRI_BT709:
+ default:
+ primariesKey = kCVImageBufferColorPrimaries_ITU_R_709_2;
+ }
+
+ CFStringRef transferKey = NULL;
+ switch (transfer)
+ {
+ case HB_COLR_TRA_SMPTE240M:
+ transferKey = kCVImageBufferTransferFunction_SMPTE_240M_1995;
+ break;
+
+ case HB_COLR_TRA_BT2020_10:
+ case HB_COLR_TRA_BT2020_12:
+ transferKey = kCVImageBufferTransferFunction_ITU_R_2020;
+ break;
+
+ case HB_COLR_TRA_SMPTEST2084:
+ transferKey = CFSTR("SMPTE_ST_2084_PQ"); //kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ;
+ break;
+
+ case HB_COLR_TRA_BT709:
+ default:
+ transferKey = kCVImageBufferTransferFunction_ITU_R_709_2;
+ }
+
+ CFStringRef matrixKey = NULL;
+ switch (matrix)
+ {
+ case HB_COLR_MAT_SMPTE170M:
+ matrixKey = kCVImageBufferYCbCrMatrix_ITU_R_601_4;
+ break;
+
+ case HB_COLR_MAT_SMPTE240M:
+ matrixKey = kCVImageBufferYCbCrMatrix_SMPTE_240M_1995;
+ break;
+
+ case HB_COLR_MAT_BT2020_NCL:
+ case HB_COLR_MAT_BT2020_CL:
+ matrixKey = kCVImageBufferYCbCrMatrix_ITU_R_2020;
+ break;
+
+ case HB_COLR_MAT_BT709:
+ default:
+ matrixKey = kCVImageBufferYCbCrMatrix_ITU_R_709_2;;
+ }
+
+ const void *keys[3] = { kCVImageBufferColorPrimariesKey, kCVImageBufferTransferFunctionKey, kCVImageBufferYCbCrMatrixKey };
+ const void *values[3] = { primariesKey, transferKey, matrixKey};
+ CFDictionaryRef attachments = CFDictionaryCreate(NULL, keys, values, 3, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
+
+ CGColorSpaceRef colorSpace = CVImageBufferCreateColorSpaceFromAttachments(attachments);
+ CFRelease(attachments);
+
+ return colorSpace;
+}