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

Unified Diff: third_party/libwebp/utils/quant_levels.c

Issue 12942006: libwebp: update snapshot to v0.3.0-rc6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libwebp/utils/quant_levels.h ('k') | third_party/libwebp/utils/quant_levels_dec.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libwebp/utils/quant_levels.c
diff --git a/third_party/libwebp/utils/quant_levels.c b/third_party/libwebp/utils/quant_levels.c
index f6884392aa733c43f3fc837284e7b803a27f561d..649aae655be8ed655ed00225d05bcc6e0b194476 100644
--- a/third_party/libwebp/utils/quant_levels.c
+++ b/third_party/libwebp/utils/quant_levels.c
@@ -140,15 +140,6 @@ int QuantizeLevels(uint8_t* const data, int width, int height,
return 1;
}
-int DequantizeLevels(uint8_t* const data, int width, int height) {
- if (data == NULL || width <= 0 || height <= 0) return 0;
- // TODO(skal): implement gradient smoothing.
- (void)data;
- (void)width;
- (void)height;
- return 1;
-}
-
#if defined(__cplusplus) || defined(c_plusplus)
} // extern "C"
#endif
« no previous file with comments | « third_party/libwebp/utils/quant_levels.h ('k') | third_party/libwebp/utils/quant_levels_dec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698