Chromium Code Reviews

Side by Side Diff: webrtc/sdk/objc/Framework/Classes/avfoundationvideocapturer.mm

Issue 2394483005: iOS: Optimize video scaling and cropping (Closed)
Patch Set: Add comment about the different resolution variables. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_encoder.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 747 matching lines...)
758 758
759 void AVFoundationVideoCapturer::SetUseBackCamera(bool useBackCamera) { 759 void AVFoundationVideoCapturer::SetUseBackCamera(bool useBackCamera) {
760 _capturer.useBackCamera = useBackCamera; 760 _capturer.useBackCamera = useBackCamera;
761 } 761 }
762 762
763 bool AVFoundationVideoCapturer::GetUseBackCamera() const { 763 bool AVFoundationVideoCapturer::GetUseBackCamera() const {
764 return _capturer.useBackCamera; 764 return _capturer.useBackCamera;
765 } 765 }
766 766
767 void AVFoundationVideoCapturer::CaptureSampleBuffer( 767 void AVFoundationVideoCapturer::CaptureSampleBuffer(
768 CMSampleBufferRef sample_buffer, webrtc::VideoRotation rotation) { 768 CMSampleBufferRef sample_buffer, VideoRotation rotation) {
769 if (CMSampleBufferGetNumSamples(sample_buffer) != 1 || 769 if (CMSampleBufferGetNumSamples(sample_buffer) != 1 ||
770 !CMSampleBufferIsValid(sample_buffer) || 770 !CMSampleBufferIsValid(sample_buffer) ||
771 !CMSampleBufferDataIsReady(sample_buffer)) { 771 !CMSampleBufferDataIsReady(sample_buffer)) {
772 return; 772 return;
773 } 773 }
774 774
775 CVImageBufferRef image_buffer = CMSampleBufferGetImageBuffer(sample_buffer); 775 CVImageBufferRef image_buffer = CMSampleBufferGetImageBuffer(sample_buffer);
776 if (image_buffer == NULL) { 776 if (image_buffer == NULL) {
777 return; 777 return;
778 } 778 }
779 779
780 rtc::scoped_refptr<webrtc::VideoFrameBuffer> buffer = 780 const int captured_width = CVPixelBufferGetWidth(image_buffer);
781 new rtc::RefCountedObject<webrtc::CoreVideoFrameBuffer>(image_buffer); 781 const int captured_height = CVPixelBufferGetHeight(image_buffer);
782
783 const int captured_width = buffer->width();
784 const int captured_height = buffer->height();
785 782
786 int adapted_width; 783 int adapted_width;
787 int adapted_height; 784 int adapted_height;
788 int crop_width; 785 int crop_width;
789 int crop_height; 786 int crop_height;
790 int crop_x; 787 int crop_x;
791 int crop_y; 788 int crop_y;
792 int64_t translated_camera_time_us; 789 int64_t translated_camera_time_us;
793 790
794 if (!AdaptFrame(captured_width, captured_height, 791 if (!AdaptFrame(captured_width, captured_height,
795 rtc::TimeNanos() / rtc::kNumNanosecsPerMicrosec, 792 rtc::TimeNanos() / rtc::kNumNanosecsPerMicrosec,
796 rtc::TimeMicros(), &adapted_width, &adapted_height, 793 rtc::TimeMicros(), &adapted_width, &adapted_height,
797 &crop_width, &crop_height, &crop_x, &crop_y, 794 &crop_width, &crop_height, &crop_x, &crop_y,
798 &translated_camera_time_us)) { 795 &translated_camera_time_us)) {
799 return; 796 return;
800 } 797 }
801 798
802 if (adapted_width != captured_width || crop_width != captured_width || 799 rtc::scoped_refptr<VideoFrameBuffer> buffer =
803 adapted_height != captured_height || crop_height != captured_height || 800 new rtc::RefCountedObject<CoreVideoFrameBuffer>(
804 (apply_rotation() && rotation != webrtc::kVideoRotation_0)) { 801 image_buffer,
805 // TODO(magjed): Avoid converting to I420. 802 adapted_width, adapted_height,
806 rtc::scoped_refptr<webrtc::I420Buffer> scaled_buffer(
807 _buffer_pool.CreateBuffer(adapted_width, adapted_height));
808 scaled_buffer->CropAndScaleFrom(buffer->NativeToI420Buffer(), crop_x,
809 crop_y, crop_width, crop_height);
810 if (!apply_rotation() || rotation == webrtc::kVideoRotation_0) {
811 buffer = scaled_buffer;
812 } else {
813 // Applying rotation is only supported for legacy reasons and performance
814 // is not critical here.
815 rtc::scoped_refptr<webrtc::I420Buffer> rotated_buffer(
816 (rotation == webrtc::kVideoRotation_180)
817 ? I420Buffer::Create(adapted_width, adapted_height)
818 : I420Buffer::Create(adapted_height, adapted_width));
819 libyuv::I420Rotate(
820 scaled_buffer->DataY(), scaled_buffer->StrideY(),
821 scaled_buffer->DataU(), scaled_buffer->StrideU(),
822 scaled_buffer->DataV(), scaled_buffer->StrideV(),
823 rotated_buffer->MutableDataY(), rotated_buffer->StrideY(),
824 rotated_buffer->MutableDataU(), rotated_buffer->StrideU(),
825 rotated_buffer->MutableDataV(), rotated_buffer->StrideV(),
826 crop_width, crop_height, 803 crop_width, crop_height,
827 static_cast<libyuv::RotationMode>(rotation)); 804 crop_x, crop_y);
828 buffer = rotated_buffer; 805
829 } 806 // Applying rotation is only supported for legacy reasons and performance is
807 // not critical here.
808 if (apply_rotation() && rotation != kVideoRotation_0) {
809 buffer = buffer->NativeToI420Buffer();
810 rtc::scoped_refptr<I420Buffer> rotated_buffer =
811 (rotation == kVideoRotation_180)
812 ? I420Buffer::Create(adapted_width, adapted_height)
813 : I420Buffer::Create(adapted_height, adapted_width);
814 libyuv::I420Rotate(
815 buffer->DataY(), buffer->StrideY(),
816 buffer->DataU(), buffer->StrideU(),
817 buffer->DataV(), buffer->StrideV(),
818 rotated_buffer->MutableDataY(), rotated_buffer->StrideY(),
819 rotated_buffer->MutableDataU(), rotated_buffer->StrideU(),
820 rotated_buffer->MutableDataV(), rotated_buffer->StrideV(),
821 buffer->width(), buffer->height(),
822 static_cast<libyuv::RotationMode>(rotation));
823 buffer = rotated_buffer;
830 } 824 }
831 825
832 OnFrame(webrtc::VideoFrame(buffer, rotation, translated_camera_time_us), 826 OnFrame(webrtc::VideoFrame(buffer, rotation, translated_camera_time_us),
833 captured_width, captured_height); 827 captured_width, captured_height);
834 } 828 }
835 829
836 } // namespace webrtc 830 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_encoder.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine