Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(785)

Side by Side Diff: include/libyuv/planar_functions.h

Issue 1479593002: Interpolate plane initial implementation. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: unittest added for interpolate plane Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | 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 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 uint8* dst_argb, int dst_stride_argb, 383 uint8* dst_argb, int dst_stride_argb,
384 int32* dst_cumsum, int dst_stride32_cumsum, 384 int32* dst_cumsum, int dst_stride32_cumsum,
385 int width, int height, int radius); 385 int width, int height, int radius);
386 386
387 // Multiply ARGB image by ARGB value. 387 // Multiply ARGB image by ARGB value.
388 LIBYUV_API 388 LIBYUV_API
389 int ARGBShade(const uint8* src_argb, int src_stride_argb, 389 int ARGBShade(const uint8* src_argb, int src_stride_argb,
390 uint8* dst_argb, int dst_stride_argb, 390 uint8* dst_argb, int dst_stride_argb,
391 int width, int height, uint32 value); 391 int width, int height, uint32 value);
392 392
393 // Interpolate between two images using specified amount of interpolation
394 // (0 to 255) and store to destination.
395 // 'interpolation' is specified as 8 bit fraction where 0 means 100% src0
396 // and 255 means 1% src0 and 99% src1.
397 LIBYUV_API
398 int InterpolatePlane(const uint8* src0, int src_stride0,
399 const uint8* src1, int src_stride1,
400 uint8* dst, int dst_stride,
401 int width, int height, int interpolation);
402
393 // Interpolate between two ARGB images using specified amount of interpolation 403 // Interpolate between two ARGB images using specified amount of interpolation
394 // (0 to 255) and store to destination. 404 // Internally calls InterpolatePlane with width * 4 (bpp).
395 // 'interpolation' is specified as 8 bit fraction where 0 means 100% src_argb0
396 // and 255 means 1% src_argb0 and 99% src_argb1.
397 // Internally uses ARGBScale bilinear filtering.
398 // Caveat: This function will write up to 16 bytes beyond the end of dst_argb.
399 LIBYUV_API 405 LIBYUV_API
400 int ARGBInterpolate(const uint8* src_argb0, int src_stride_argb0, 406 int ARGBInterpolate(const uint8* src_argb0, int src_stride_argb0,
401 const uint8* src_argb1, int src_stride_argb1, 407 const uint8* src_argb1, int src_stride_argb1,
402 uint8* dst_argb, int dst_stride_argb, 408 uint8* dst_argb, int dst_stride_argb,
403 int width, int height, int interpolation); 409 int width, int height, int interpolation);
404 410
411 // Interpolate between two YUV images using specified amount of interpolation
412 // Internally calls InterpolatePlane on each plane where the U and V planes
413 // are half width and half height.
414 LIBYUV_API
415 int I420Interpolate(const uint8* src0_y, int src0_stride_y,
416 const uint8* src0_u, int src0_stride_u,
417 const uint8* src0_v, int src0_stride_v,
418 const uint8* src1_y, int src1_stride_y,
419 const uint8* src1_u, int src1_stride_u,
420 const uint8* src1_v, int src1_stride_v,
421 uint8* dst_y, int dst_stride_y,
422 uint8* dst_u, int dst_stride_u,
423 uint8* dst_v, int dst_stride_v,
424 int width, int height, int interpolation);
425
405 #if defined(__pnacl__) || defined(__CLR_VER) || \ 426 #if defined(__pnacl__) || defined(__CLR_VER) || \
406 (defined(__i386__) && !defined(__SSE2__)) 427 (defined(__i386__) && !defined(__SSE2__))
407 #define LIBYUV_DISABLE_X86 428 #define LIBYUV_DISABLE_X86
408 #endif 429 #endif
409 // The following are available on all x86 platforms: 430 // The following are available on all x86 platforms:
410 #if !defined(LIBYUV_DISABLE_X86) && \ 431 #if !defined(LIBYUV_DISABLE_X86) && \
411 (defined(_M_IX86) || defined(__x86_64__) || defined(__i386__)) 432 (defined(_M_IX86) || defined(__x86_64__) || defined(__i386__))
412 #define HAS_ARGBAFFINEROW_SSE2 433 #define HAS_ARGBAFFINEROW_SSE2
413 #endif 434 #endif
414 435
(...skipping 30 matching lines...) Expand all
445 int ARGBSobelXY(const uint8* src_argb, int src_stride_argb, 466 int ARGBSobelXY(const uint8* src_argb, int src_stride_argb,
446 uint8* dst_argb, int dst_stride_argb, 467 uint8* dst_argb, int dst_stride_argb,
447 int width, int height); 468 int width, int height);
448 469
449 #ifdef __cplusplus 470 #ifdef __cplusplus
450 } // extern "C" 471 } // extern "C"
451 } // namespace libyuv 472 } // namespace libyuv
452 #endif 473 #endif
453 474
454 #endif // INCLUDE_LIBYUV_PLANAR_FUNCTIONS_H_ NOLINT 475 #endif // INCLUDE_LIBYUV_PLANAR_FUNCTIONS_H_ NOLINT
OLDNEW
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698