From 1cc0177669eb1cb6e3364b45a0efa62bd513af48 Mon Sep 17 00:00:00 2001 From: Frank Barchard Date: Tue, 26 Jan 2016 17:02:45 -0800 Subject: [PATCH] Remove duplicate prototype for MJPGToARGB MJPGToARGB prototype is in both convert_argb.h and planar_functions.h Remove the duplicate prototype from planar_functions.h R=harryjin@google.com TBR=harryjin@google.com BUG=libyuv:561 Review URL: https://codereview.chromium.org/1638133002 . --- include/libyuv/planar_functions.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/libyuv/planar_functions.h b/include/libyuv/planar_functions.h index 9d30225d4..95870b9ae 100644 --- a/include/libyuv/planar_functions.h +++ b/include/libyuv/planar_functions.h @@ -384,12 +384,6 @@ int ARGBUnattenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height); -// Convert MJPG to ARGB. -LIBYUV_API -int MJPGToARGB(const uint8* sample, size_t sample_size, - uint8* argb, int argb_stride, - int w, int h, int dw, int dh); - // Internal function - do not call directly. // Computes table of cumulative sum for image where the value is the sum // of all values above and to the left of the entry. Used by ARGBBlur.