| OLD | NEW |
| 1 // Copyright 2012 Google Inc. All Rights Reserved. | 1 // Copyright 2012 Google Inc. All Rights Reserved. |
| 2 // | 2 // |
| 3 // Use of this source code is governed by a BSD-style license | 3 // 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 | 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 | 5 // tree. An additional intellectual property rights grant can be found |
| 6 // in the file PATENTS. All contributing project authors may | 6 // in the file PATENTS. All contributing project authors may |
| 7 // be found in the AUTHORS file in the root of the source tree. | 7 // be found in the AUTHORS file in the root of the source tree. |
| 8 // ----------------------------------------------------------------------------- | 8 // ----------------------------------------------------------------------------- |
| 9 // | 9 // |
| 10 // Rescaling functions | 10 // Rescaling functions |
| 11 // | 11 // |
| 12 // Author: Skal (pascal.massimino@gmail.com) | 12 // Author: Skal (pascal.massimino@gmail.com) |
| 13 | 13 |
| 14 #ifndef WEBP_UTILS_RESCALER_H_ | 14 #ifndef WEBP_UTILS_RESCALER_H_ |
| 15 #define WEBP_UTILS_RESCALER_H_ | 15 #define WEBP_UTILS_RESCALER_H_ |
| 16 | 16 |
| 17 #ifdef __cplusplus | 17 #ifdef __cplusplus |
| 18 extern "C" { | 18 extern "C" { |
| 19 #endif | 19 #endif |
| 20 | 20 |
| 21 #include "../webp/types.h" | 21 #include "../webp/types.h" |
| 22 | 22 |
| 23 // Structure used for on-the-fly rescaling | 23 // Structure used for on-the-fly rescaling |
| 24 typedef uint32_t rescaler_t; // type for side-buffer |
| 24 typedef struct { | 25 typedef struct { |
| 25 int x_expand; // true if we're expanding in the x direction | 26 int x_expand; // true if we're expanding in the x direction |
| 27 int y_expand; // true if we're expanding in the y direction |
| 26 int num_channels; // bytes to jump between pixels | 28 int num_channels; // bytes to jump between pixels |
| 27 int fy_scale, fx_scale; // fixed-point scaling factor | 29 uint32_t fx_scale; // fixed-point scaling factors |
| 28 int64_t fxy_scale; // '' | 30 uint32_t fy_scale; // '' |
| 29 // we need hpel-precise add/sub increments, for the downsampled U/V planes. | 31 uint32_t fxy_scale; // '' |
| 30 int y_accum; // vertical accumulator | 32 int y_accum; // vertical accumulator |
| 31 int y_add, y_sub; // vertical increments (add ~= src, sub ~= dst) | 33 int y_add, y_sub; // vertical increments |
| 32 int x_add, x_sub; // horizontal increments (add ~= src, sub ~= dst) | 34 int x_add, x_sub; // horizontal increments |
| 33 int src_width, src_height; // source dimensions | 35 int src_width, src_height; // source dimensions |
| 34 int dst_width, dst_height; // destination dimensions | 36 int dst_width, dst_height; // destination dimensions |
| 37 int src_y, dst_y; // row counters for input and output |
| 35 uint8_t* dst; | 38 uint8_t* dst; |
| 36 int dst_stride; | 39 int dst_stride; |
| 37 int32_t* irow, *frow; // work buffer | 40 rescaler_t* irow, *frow; // work buffer |
| 38 } WebPRescaler; | 41 } WebPRescaler; |
| 39 | 42 |
| 40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst. | 43 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst. |
| 41 void WebPRescalerInit(WebPRescaler* const rescaler, | 44 void WebPRescalerInit(WebPRescaler* const rescaler, |
| 42 int src_width, int src_height, | 45 int src_width, int src_height, |
| 43 uint8_t* const dst, | 46 uint8_t* const dst, |
| 44 int dst_width, int dst_height, int dst_stride, | 47 int dst_width, int dst_height, int dst_stride, |
| 45 int num_channels, | 48 int num_channels, |
| 46 int x_add, int x_sub, | 49 rescaler_t* const work); |
| 47 int y_add, int y_sub, | |
| 48 int32_t* const work); | |
| 49 | 50 |
| 50 // Returns the number of input lines needed next to produce one output line, | 51 // 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'. | 52 // considering that the maximum available input lines are 'max_num_lines'. |
| 52 int WebPRescaleNeededLines(const WebPRescaler* const rescaler, | 53 int WebPRescaleNeededLines(const WebPRescaler* const rescaler, |
| 53 int max_num_lines); | 54 int max_num_lines); |
| 54 | 55 |
| 55 // Import multiple rows over all channels, until at least one row is ready to | 56 // 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. | 57 // be exported. Returns the actual number of lines that were imported. |
| 57 int WebPRescalerImport(WebPRescaler* const rescaler, int num_rows, | 58 int WebPRescalerImport(WebPRescaler* const rescaler, int num_rows, |
| 58 const uint8_t* src, int src_stride); | 59 const uint8_t* src, int src_stride); |
| 59 | 60 |
| 60 // Import a row of data and save its contribution in the rescaler. | 61 // Export as many rows as possible. Return the numbers of rows written. |
| 61 // 'channel' denotes the channel number to be imported. | 62 int WebPRescalerExport(WebPRescaler* const rescaler); |
| 62 extern void (*WebPRescalerImportRow)(WebPRescaler* const wrk, | 63 void WebPRescalerImportRow(WebPRescaler* const wrk, |
| 63 const uint8_t* const src, int channel); | 64 const uint8_t* src); |
| 64 // Export one row (starting at x_out position) from rescaler. | 65 // Export one row (starting at x_out position) from rescaler. |
| 65 extern void (*WebPRescalerExportRow)(WebPRescaler* const wrk, int x_out); | 66 void WebPRescalerExportRow(WebPRescaler* const wrk); |
| 66 | 67 |
| 67 // Return true if there is pending output rows ready. | 68 // Return true if input is finished |
| 69 static WEBP_INLINE |
| 70 int WebPRescalerInputDone(const WebPRescaler* const rescaler) { |
| 71 return (rescaler->src_y >= rescaler->src_height); |
| 72 } |
| 73 // Return true if output is finished |
| 74 static WEBP_INLINE |
| 75 int WebPRescalerOutputDone(const WebPRescaler* const rescaler) { |
| 76 return (rescaler->dst_y >= rescaler->dst_height); |
| 77 } |
| 78 |
| 79 // Return true if there are pending output rows ready. |
| 68 static WEBP_INLINE | 80 static WEBP_INLINE |
| 69 int WebPRescalerHasPendingOutput(const WebPRescaler* const rescaler) { | 81 int WebPRescalerHasPendingOutput(const WebPRescaler* const rescaler) { |
| 70 return (rescaler->y_accum <= 0); | 82 return !WebPRescalerOutputDone(rescaler) && (rescaler->y_accum <= 0); |
| 71 } | 83 } |
| 72 | 84 |
| 73 // Export as many rows as possible. Return the numbers of rows written. | |
| 74 int WebPRescalerExport(WebPRescaler* const rescaler); | |
| 75 | |
| 76 //------------------------------------------------------------------------------ | 85 //------------------------------------------------------------------------------ |
| 77 | 86 |
| 78 #ifdef __cplusplus | 87 #ifdef __cplusplus |
| 79 } // extern "C" | 88 } // extern "C" |
| 80 #endif | 89 #endif |
| 81 | 90 |
| 82 #endif /* WEBP_UTILS_RESCALER_H_ */ | 91 #endif /* WEBP_UTILS_RESCALER_H_ */ |
| OLD | NEW |