blob: a6f3787124237b9878c6c325568c07b198126c12 [file] [log] [blame]
Vikas Aroraa2415722012-08-09 16:18:58 -07001// Copyright 2012 Google Inc. All Rights Reserved.
2//
Vikas Arora0406ce12013-08-09 15:57:12 -07003// Use of this source code is governed by a BSD-style license
4// that can be found in the COPYING file in the root of the source
5// tree. An additional intellectual property rights grant can be found
6// in the file PATENTS. All contributing project authors may
7// be found in the AUTHORS file in the root of the source tree.
Vikas Aroraa2415722012-08-09 16:18:58 -07008// -----------------------------------------------------------------------------
9//
10// Rescaling functions
11//
12// Author: Skal (pascal.massimino@gmail.com)
13
14#ifndef WEBP_UTILS_RESCALER_H_
15#define WEBP_UTILS_RESCALER_H_
16
Vikas Arora8b720222014-01-02 16:48:02 -080017#ifdef __cplusplus
Vikas Aroraa2415722012-08-09 16:18:58 -070018extern "C" {
19#endif
20
James Zern9e80ee92015-03-17 18:54:21 -070021#include "../webp/types.h"
Vikas Aroraa2415722012-08-09 16:18:58 -070022
23// Structure used for on-the-fly rescaling
24typedef struct {
25 int x_expand; // true if we're expanding in the x direction
26 int num_channels; // bytes to jump between pixels
27 int fy_scale, fx_scale; // fixed-point scaling factor
28 int64_t fxy_scale; // ''
29 // we need hpel-precise add/sub increments, for the downsampled U/V planes.
30 int y_accum; // vertical accumulator
31 int y_add, y_sub; // vertical increments (add ~= src, sub ~= dst)
32 int x_add, x_sub; // horizontal increments (add ~= src, sub ~= dst)
33 int src_width, src_height; // source dimensions
34 int dst_width, dst_height; // destination dimensions
35 uint8_t* dst;
36 int dst_stride;
37 int32_t* irow, *frow; // work buffer
38} WebPRescaler;
39
40// Initialize a rescaler given scratch area 'work' and dimensions of src & dst.
Vikas Arora8b720222014-01-02 16:48:02 -080041void WebPRescalerInit(WebPRescaler* const rescaler,
42 int src_width, int src_height,
Vikas Aroraa2415722012-08-09 16:18:58 -070043 uint8_t* const dst,
44 int dst_width, int dst_height, int dst_stride,
45 int num_channels,
46 int x_add, int x_sub,
47 int y_add, int y_sub,
48 int32_t* const work);
49
Vikas Arora8b720222014-01-02 16:48:02 -080050// Returns the number of input lines needed next to produce one output line,
51// considering that the maximum available input lines are 'max_num_lines'.
52int WebPRescaleNeededLines(const WebPRescaler* const rescaler,
53 int max_num_lines);
54
Vikas Aroraa2415722012-08-09 16:18:58 -070055// Import multiple rows over all channels, until at least one row is ready to
56// be exported. Returns the actual number of lines that were imported.
57int WebPRescalerImport(WebPRescaler* const rescaler, int num_rows,
58 const uint8_t* src, int src_stride);
59
Vikas Arora33f74da2014-07-25 13:53:32 -070060// Import a row of data and save its contribution in the rescaler.
61// 'channel' denotes the channel number to be imported.
62extern void (*WebPRescalerImportRow)(WebPRescaler* const wrk,
63 const uint8_t* const src, int channel);
64// Export one row (starting at x_out position) from rescaler.
65extern void (*WebPRescalerExportRow)(WebPRescaler* const wrk, int x_out);
66
Vikas Aroraa2415722012-08-09 16:18:58 -070067// Return true if there is pending output rows ready.
68static WEBP_INLINE
69int WebPRescalerHasPendingOutput(const WebPRescaler* const rescaler) {
70 return (rescaler->y_accum <= 0);
71}
72
Vikas Aroraa2415722012-08-09 16:18:58 -070073// Export as many rows as possible. Return the numbers of rows written.
Vikas Arora8b720222014-01-02 16:48:02 -080074int WebPRescalerExport(WebPRescaler* const rescaler);
Vikas Aroraa2415722012-08-09 16:18:58 -070075
76//------------------------------------------------------------------------------
77
Vikas Arora8b720222014-01-02 16:48:02 -080078#ifdef __cplusplus
Vikas Aroraa2415722012-08-09 16:18:58 -070079} // extern "C"
80#endif
81
82#endif /* WEBP_UTILS_RESCALER_H_ */