chromium/third_party/libvpx/source/libvpx/vpx/src/vpx_codec.c

/*
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE 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.
 */

/*!\file
 * \brief Provides the high level interface to wrap decoder algorithms.
 *
 */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "vpx/vpx_integer.h"
#include "vpx/internal/vpx_codec_internal.h"
#include "vpx_version.h"

#define SAVE_STATUS(ctx, var)

int vpx_codec_version(void) {}

const char *vpx_codec_version_str(void) {}

const char *vpx_codec_version_extra_str(void) {}

const char *vpx_codec_iface_name(vpx_codec_iface_t *iface) {}

const char *vpx_codec_err_to_string(vpx_codec_err_t err) {}

const char *vpx_codec_error(const vpx_codec_ctx_t *ctx) {}

const char *vpx_codec_error_detail(const vpx_codec_ctx_t *ctx) {}

vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx) {}

vpx_codec_caps_t vpx_codec_get_caps(vpx_codec_iface_t *iface) {}

vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...) {}

void vpx_internal_error(struct vpx_internal_error_info *info,
                        vpx_codec_err_t error, const char *fmt, ...) {}