chromium/third_party/libwebp/src/imageio/image_dec.c

// Copyright 2016 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.
// -----------------------------------------------------------------------------
//
// Generic image-type guessing.

#include "./image_dec.h"

const char* WebPGetEnabledInputFileFormats(void) {}

static WEBP_INLINE uint32_t GetBE32(const uint8_t buf[]) {}

WebPInputFileFormat WebPGuessImageType(const uint8_t* const data,
                                       size_t data_size) {}

static int FailReader(const uint8_t* const data, size_t data_size,
                      struct WebPPicture* const pic,
                      int keep_alpha, struct Metadata* const metadata) {}

WebPImageReader WebPGetImageReader(WebPInputFileFormat format) {}

WebPImageReader WebPGuessImageReader(const uint8_t* const data,
                                     size_t data_size) {}