mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-07 11:08:22 +01:00
0aef3ebdea
* remove a malloc * remove the unused 'bpp' argument from filter/unfilter functions Change-Id: I28d78baaaddc20f1d5a3bb2bd0b4e96a12a920d8
56 lines
1.8 KiB
C
56 lines
1.8 KiB
C
// Copyright 2011 Google Inc. All Rights Reserved.
|
|
//
|
|
// This code is licensed under the same terms as WebM:
|
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Spatial prediction using various filters
|
|
//
|
|
// Author: Urvang (urvang@google.com)
|
|
|
|
#ifndef WEBP_UTILS_FILTERS_H_
|
|
#define WEBP_UTILS_FILTERS_H_
|
|
|
|
#include "../webp/types.h"
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Filters.
|
|
typedef enum {
|
|
WEBP_FILTER_NONE = 0,
|
|
WEBP_FILTER_HORIZONTAL,
|
|
WEBP_FILTER_VERTICAL,
|
|
WEBP_FILTER_GRADIENT,
|
|
WEBP_FILTER_LAST = WEBP_FILTER_GRADIENT + 1, // end marker
|
|
WEBP_FILTER_BEST,
|
|
WEBP_FILTER_FAST
|
|
} WEBP_FILTER_TYPE;
|
|
|
|
typedef void (*WebPFilterFunc)(const uint8_t* in, int width, int height,
|
|
int stride, uint8_t* out);
|
|
typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
|
|
uint8_t* data);
|
|
|
|
// Filter the given data using the given predictor.
|
|
// 'in' corresponds to a 2-dimensional pixel array of size (stride * height)
|
|
// in raster order.
|
|
// 'stride' is number of bytes per scan line (with possible padding).
|
|
// 'out' should be pre-allocated.
|
|
extern const WebPFilterFunc WebPFilters[WEBP_FILTER_LAST];
|
|
|
|
// In-place reconstruct the original data from the given filtered data.
|
|
extern const WebPUnfilterFunc WebPUnfilters[WEBP_FILTER_LAST];
|
|
|
|
// Fast estimate of a potentially good filter.
|
|
extern WEBP_FILTER_TYPE EstimateBestFilter(const uint8_t* data,
|
|
int width, int height, int stride);
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif /* WEBP_UTILS_FILTERS_H_ */
|