FFmpeg
|
#include <vpx/vpx_decoder.h>
#include <vpx/vp8dx.h>
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"
#include "libvpx.h"
#include "profiles.h"
Go to the source code of this file.
Data Structures | |
struct | VPxDecoderContext |
Macros | |
#define | VPX_CODEC_DISABLE_COMPAT 1 |
Functions | |
static av_cold int | vpx_init (AVCodecContext *avctx, const struct vpx_codec_iface *iface, int is_alpha_decoder) |
static int | set_pix_fmt (AVCodecContext *avctx, struct vpx_image *img, int has_alpha_channel) |
static int | decode_frame (AVCodecContext *avctx, vpx_codec_ctx_t *decoder, uint8_t *data, uint32_t data_sz) |
static int | vpx_decode (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | vpx_free (AVCodecContext *avctx) |
VP8/9 decoder support via libvpx
Definition in file libvpxdec.c.
#define VPX_CODEC_DISABLE_COMPAT 1 |
Definition at line 26 of file libvpxdec.c.
|
static |
Definition at line 44 of file libvpxdec.c.
Referenced by vpx_decode().
|
static |
Definition at line 69 of file libvpxdec.c.
Referenced by vpx_decode().
|
static |
Definition at line 158 of file libvpxdec.c.
Referenced by vpx_decode().
|
static |
Definition at line 175 of file libvpxdec.c.
|
static |
Definition at line 266 of file libvpxdec.c.