mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
73f52133a1
When '-mixed' option is given, each frame would be heuristically chosen to be encoded using lossy or lossless compression. The heuristic is based on the number of colors in the image: - If num_colors <= 31, pick lossless compression - If num_colors >= 194, pick lossy compression - Otherwise, try both and pick the one that compresses better. Change-Id: I908c73493ddc38e8db35b7b1959300569e6d3a97
81 lines
3.0 KiB
C
81 lines
3.0 KiB
C
// Copyright 2013 Google Inc. All Rights Reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the COPYING file in the root of the source
|
|
// tree. An additional intellectual property rights grant can be found
|
|
// in the file PATENTS. All contributing project authors may
|
|
// be found in the AUTHORS file in the root of the source tree.
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Helper structs and methods for gif2webp tool.
|
|
//
|
|
// Author: Urvang (urvang@google.com)
|
|
|
|
#ifndef WEBP_EXAMPLES_GIF2WEBP_UTIL_H_
|
|
#define WEBP_EXAMPLES_GIF2WEBP_UTIL_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "webp/mux.h"
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Helper utilities.
|
|
|
|
#define WEBP_UTIL_TRANSPARENT_COLOR 0x00ffffff
|
|
|
|
struct WebPPicture;
|
|
|
|
typedef struct {
|
|
int x_offset, y_offset, width, height;
|
|
} WebPFrameRect;
|
|
|
|
// Clear pixels in 'picture' within given 'rect' to transparent color.
|
|
void WebPUtilClearPic(struct WebPPicture* const picture,
|
|
const WebPFrameRect* const rect);
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Frame cache.
|
|
|
|
typedef struct WebPFrameCache WebPFrameCache;
|
|
|
|
// Given the minimum distance between key frames 'kmin' and maximum distance
|
|
// between key frames 'kmax', returns an appropriately allocated cache object.
|
|
// If 'allow_mixed' is true, the subsequent calls to WebPFrameCacheAddFrame()
|
|
// will heuristically pick lossy or lossless compression for each frame.
|
|
// Use WebPFrameCacheDelete() to deallocate the 'cache'.
|
|
WebPFrameCache* WebPFrameCacheNew(int width, int height,
|
|
size_t kmin, size_t kmax, int allow_mixed);
|
|
|
|
// Release all the frame data from 'cache' and free 'cache'.
|
|
void WebPFrameCacheDelete(WebPFrameCache* const cache);
|
|
|
|
// Given an image described by 'frame', 'info' and 'orig_rect', optimize it for
|
|
// WebP, encode it and add it to 'cache'.
|
|
// This takes care of frame disposal too, according to 'info->dispose_method'.
|
|
int WebPFrameCacheAddFrame(WebPFrameCache* const cache,
|
|
const WebPConfig* const config,
|
|
const WebPFrameRect* const orig_rect,
|
|
WebPPicture* const frame,
|
|
WebPMuxFrameInfo* const info);
|
|
|
|
// Flush the *ready* frames from cache and add them to 'mux'. If 'verbose' is
|
|
// true, prints the information about these frames.
|
|
WebPMuxError WebPFrameCacheFlush(WebPFrameCache* const cache, int verbose,
|
|
WebPMux* const mux);
|
|
|
|
// Similar to 'WebPFrameCacheFlushFrames()', but flushes *all* the frames.
|
|
WebPMuxError WebPFrameCacheFlushAll(WebPFrameCache* const cache, int verbose,
|
|
WebPMux* const mux);
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // WEBP_EXAMPLES_GIF2WEBP_UTIL_H_
|