OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2011 The LibYuv 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 src_width > 32768 || src_height > 32768 || | 840 src_width > 32768 || src_height > 32768 || |
841 !dst_argb || dst_width <= 0 || dst_height <= 0) { | 841 !dst_argb || dst_width <= 0 || dst_height <= 0) { |
842 return -1; | 842 return -1; |
843 } | 843 } |
844 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, | 844 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, |
845 dst_argb, dst_stride_argb, dst_width, dst_height, | 845 dst_argb, dst_stride_argb, dst_width, dst_height, |
846 0, 0, dst_width, dst_height, filtering); | 846 0, 0, dst_width, dst_height, filtering); |
847 return 0; | 847 return 0; |
848 } | 848 } |
849 | 849 |
| 850 // Scale with YUV conversion to ARGB and clipping. |
| 851 LIBYUV_API |
| 852 int YUVToARGBScaleClip(const uint8* src_y, int src_stride_y, |
| 853 const uint8* src_u, int src_stride_u, |
| 854 const uint8* src_v, int src_stride_v, |
| 855 uint32 src_fourcc, |
| 856 int src_width, int src_height, |
| 857 uint8* dst_argb, int dst_stride_argb, |
| 858 uint32 dst_fourcc, |
| 859 int dst_width, int dst_height, |
| 860 int clip_x, int clip_y, int clip_width, int clip_height, |
| 861 enum FilterMode filtering) { |
| 862 |
| 863 uint8* argb_buffer = (uint8*)malloc(src_width * src_height * 4); |
| 864 int r; |
| 865 I420ToARGB(src_y, src_stride_y, |
| 866 src_u, src_stride_u, |
| 867 src_v, src_stride_v, |
| 868 argb_buffer, src_width * 4, |
| 869 src_width, src_height); |
| 870 |
| 871 r = ARGBScaleClip(argb_buffer, src_width * 4, |
| 872 src_width, src_height, |
| 873 dst_argb, dst_stride_argb, |
| 874 dst_width, dst_height, |
| 875 clip_x, clip_y, clip_width, clip_height, |
| 876 filtering); |
| 877 free(argb_buffer); |
| 878 return r; |
| 879 } |
| 880 |
850 #ifdef __cplusplus | 881 #ifdef __cplusplus |
851 } // extern "C" | 882 } // extern "C" |
852 } // namespace libyuv | 883 } // namespace libyuv |
853 #endif | 884 #endif |
OLD | NEW |