Page Speed Optimization Libraries  1.13.35.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
webp_optimizer.h
Go to the documentation of this file.
1 /*
2  * Copyright 2011 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http:///www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
18 
19 #ifndef NET_INSTAWEB_REWRITER_PUBLIC_WEBP_OPTIMIZER_H_
20 #define NET_INSTAWEB_REWRITER_PUBLIC_WEBP_OPTIMIZER_H_
21 
23 
24 namespace net_instaweb {
25 
26 class MessageHandler;
27 
29 typedef bool (*WebpProgressHook)(int percent, void* user_data);
30 
33 const int kNoQualityGiven = -1;
34 
39 bool OptimizeWebp(const GoogleString& original_jpeg, int configured_quality,
40  WebpProgressHook progress_hook, void* progress_hook_data,
41  GoogleString* compressed_webp,
42  MessageHandler* message_handler);
43 
47 bool ReduceWebpImageQuality(const GoogleString& original_webp,
48  int quality, GoogleString* compressed_webp);
49 
50 }
51 
52 #endif
const int kNoQualityGiven
Definition: webp_optimizer.h:33
bool(* WebpProgressHook)(int percent, void *user_data)
Progress hook for WebP conversions.
Definition: webp_optimizer.h:29
bool OptimizeWebp(const GoogleString &original_jpeg, int configured_quality, WebpProgressHook progress_hook, void *progress_hook_data, GoogleString *compressed_webp, MessageHandler *message_handler)
std::string GoogleString
PAGESPEED_KERNEL_BASE_STRING_H_.
Definition: string.h:24
Definition: message_handler.h:39
bool ReduceWebpImageQuality(const GoogleString &original_webp, int quality, GoogleString *compressed_webp)