chromium/third_party/libaom/source/libaom/aom/src/aom_codec.c

/*
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
 *
 * This source code is subject to the terms of the BSD 2 Clause License and
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
 * was not distributed with this source code in the LICENSE file, you can
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
 * Media Patent License 1.0 was not distributed with this source code in the
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
 */

/*!\file
 * \brief Provides the high level interface to wrap decoder algorithms.
 *
 */
#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>

#include "config/aom_config.h"
#include "config/aom_version.h"

#include "aom/aom_integer.h"
#include "aom/internal/aom_codec_internal.h"

int aom_codec_version(void) {}

const char *aom_codec_version_str(void) {}

const char *aom_codec_version_extra_str(void) {}

const char *aom_codec_iface_name(aom_codec_iface_t *iface) {}

const char *aom_codec_err_to_string(aom_codec_err_t err) {}

const char *aom_codec_error(const aom_codec_ctx_t *ctx) {}

const char *aom_codec_error_detail(const aom_codec_ctx_t *ctx) {}

aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx) {}

aom_codec_caps_t aom_codec_get_caps(aom_codec_iface_t *iface) {}

aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id, ...) {}

aom_codec_err_t aom_codec_set_option(aom_codec_ctx_t *ctx, const char *name,
                                     const char *value) {}

LIBAOM_FORMAT_PRINTF(3, 0)
static void set_error(struct aom_internal_error_info *info,
                      aom_codec_err_t error, const char *fmt, va_list ap) {}

void aom_set_error(struct aom_internal_error_info *info, aom_codec_err_t error,
                   const char *fmt, ...) {}

void aom_internal_error(struct aom_internal_error_info *info,
                        aom_codec_err_t error, const char *fmt, ...) {}

void aom_internal_error_copy(struct aom_internal_error_info *info,
                             const struct aom_internal_error_info *src) {}

void aom_merge_corrupted_flag(int *corrupted, int value) {}

const char *aom_obu_type_to_string(OBU_TYPE type) {}