2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2010-05-24 17:39:59 +02:00
|
|
|
#include "vpx/vpx_decoder.h"
|
|
|
|
#include "vpx/vp8dx.h"
|
|
|
|
#include "vpx/internal/vpx_codec_internal.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_version.h"
|
2012-12-19 00:31:19 +01:00
|
|
|
#include "decoder/vp9_onyxd.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "decoder/vp9_onyxd_int.h"
|
2013-03-13 20:15:43 +01:00
|
|
|
#include "vp9/vp9_iface_common.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#define VP8_CAP_POSTPROC (CONFIG_POSTPROC ? VPX_CODEC_CAP_POSTPROC : 0)
|
|
|
|
typedef vpx_codec_stream_info_t vp8_stream_info_t;
|
|
|
|
|
|
|
|
/* Structures for handling memory allocations */
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef enum {
|
|
|
|
VP8_SEG_ALG_PRIV = 256,
|
|
|
|
VP8_SEG_MAX
|
2010-05-18 17:58:33 +02:00
|
|
|
} mem_seg_id_t;
|
2010-10-28 01:04:02 +02:00
|
|
|
#define NELEMENTS(x) ((int)(sizeof(x)/sizeof(x[0])))
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t);
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef struct {
|
|
|
|
unsigned int id;
|
|
|
|
unsigned long sz;
|
|
|
|
unsigned int align;
|
|
|
|
unsigned int flags;
|
|
|
|
unsigned long(*calc_sz)(const vpx_codec_dec_cfg_t *, vpx_codec_flags_t);
|
2010-05-18 17:58:33 +02:00
|
|
|
} mem_req_t;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static const mem_req_t vp8_mem_req_segs[] = {
|
|
|
|
{VP8_SEG_ALG_PRIV, 0, 8, VPX_CODEC_MEM_ZERO, vp8_priv_sz},
|
|
|
|
{VP8_SEG_MAX, 0, 0, 0, NULL}
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
struct vpx_codec_alg_priv {
|
|
|
|
vpx_codec_priv_t base;
|
|
|
|
vpx_codec_mmap_t mmaps[NELEMENTS(vp8_mem_req_segs) - 1];
|
|
|
|
vpx_codec_dec_cfg_t cfg;
|
|
|
|
vp8_stream_info_t si;
|
|
|
|
int defer_alloc;
|
|
|
|
int decoder_init;
|
2012-10-31 22:40:53 +01:00
|
|
|
VP9D_PTR pbi;
|
2012-07-14 00:21:29 +02:00
|
|
|
int postproc_cfg_set;
|
|
|
|
vp8_postproc_cfg_t postproc_cfg;
|
2010-11-05 00:03:36 +01:00
|
|
|
#if CONFIG_POSTPROC_VISUALIZER
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int dbg_postproc_flag;
|
|
|
|
int dbg_color_ref_frame_flag;
|
|
|
|
int dbg_color_mb_modes_flag;
|
|
|
|
int dbg_color_b_modes_flag;
|
|
|
|
int dbg_display_mv_flag;
|
2010-11-05 00:03:36 +01:00
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_image_t img;
|
|
|
|
int img_setup;
|
|
|
|
int img_avail;
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|
|
|
|
|
2012-10-31 00:16:28 +01:00
|
|
|
static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si,
|
|
|
|
vpx_codec_flags_t flags) {
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Although this declaration is constant, we can't use it in the requested
|
|
|
|
* segments list because we want to define the requested segments list
|
|
|
|
* before defining the private type (so that the number of memory maps is
|
|
|
|
* known)
|
|
|
|
*/
|
|
|
|
(void)si;
|
|
|
|
return sizeof(vpx_codec_alg_priv_t);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void vp8_mmap_dtor(vpx_codec_mmap_t *mmap) {
|
|
|
|
free(mmap->priv);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static vpx_codec_err_t vp8_mmap_alloc(vpx_codec_mmap_t *mmap) {
|
|
|
|
vpx_codec_err_t res;
|
|
|
|
unsigned int align;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
align = mmap->align ? mmap->align - 1 : 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (mmap->flags & VPX_CODEC_MEM_ZERO)
|
|
|
|
mmap->priv = calloc(1, mmap->sz + align);
|
|
|
|
else
|
|
|
|
mmap->priv = malloc(mmap->sz + align);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
res = (mmap->priv) ? VPX_CODEC_OK : VPX_CODEC_MEM_ERROR;
|
|
|
|
mmap->base = (void *)((((uintptr_t)mmap->priv) + align) & ~(uintptr_t)align);
|
|
|
|
mmap->dtor = vp8_mmap_dtor;
|
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static vpx_codec_err_t vp8_validate_mmaps(const vp8_stream_info_t *si,
|
2012-10-31 00:16:28 +01:00
|
|
|
const vpx_codec_mmap_t *mmaps,
|
|
|
|
vpx_codec_flags_t init_flags) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
|
|
|
vpx_codec_err_t res = VPX_CODEC_OK;
|
|
|
|
|
|
|
|
for (i = 0; i < NELEMENTS(vp8_mem_req_segs) - 1; i++) {
|
|
|
|
/* Ensure the segment has been allocated */
|
|
|
|
if (!mmaps[i].base) {
|
|
|
|
res = VPX_CODEC_MEM_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Verify variable size segment is big enough for the current si. */
|
|
|
|
if (vp8_mem_req_segs[i].calc_sz) {
|
|
|
|
vpx_codec_dec_cfg_t cfg;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
cfg.w = si->w;
|
|
|
|
cfg.h = si->h;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (mmaps[i].sz < vp8_mem_req_segs[i].calc_sz(&cfg, init_flags)) {
|
|
|
|
res = VPX_CODEC_MEM_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void vp8_init_ctx(vpx_codec_ctx_t *ctx, const vpx_codec_mmap_t *mmap) {
|
|
|
|
int i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
ctx->priv = mmap->base;
|
|
|
|
ctx->priv->sz = sizeof(*ctx->priv);
|
|
|
|
ctx->priv->iface = ctx->iface;
|
|
|
|
ctx->priv->alg_priv = mmap->base;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 0; i < NELEMENTS(ctx->priv->alg_priv->mmaps); i++)
|
|
|
|
ctx->priv->alg_priv->mmaps[i].id = vp8_mem_req_segs[i].id;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
ctx->priv->alg_priv->mmaps[0] = *mmap;
|
|
|
|
ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si);
|
|
|
|
ctx->priv->init_flags = ctx->init_flags;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (ctx->config.dec) {
|
|
|
|
/* Update the reference to the config structure to an internal copy. */
|
|
|
|
ctx->priv->alg_priv->cfg = *ctx->config.dec;
|
|
|
|
ctx->config.dec = &ctx->priv->alg_priv->cfg;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void *mmap_lkup(vpx_codec_alg_priv_t *ctx, unsigned int id) {
|
|
|
|
int i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 0; i < NELEMENTS(ctx->mmaps); i++)
|
|
|
|
if (ctx->mmaps[i].id == id)
|
|
|
|
return ctx->mmaps[i].base;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return NULL;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
static void vp8_finalize_mmaps(vpx_codec_alg_priv_t *ctx) {
|
|
|
|
/* nothing to clean up */
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-11-05 21:37:14 +01:00
|
|
|
static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx,
|
|
|
|
vpx_codec_priv_enc_mr_cfg_t *data) {
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_err_t res = VPX_CODEC_OK;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* This function only allocates space for the vpx_codec_alg_priv_t
|
|
|
|
* structure. More memory may be required at the time the stream
|
|
|
|
* information becomes known.
|
|
|
|
*/
|
|
|
|
if (!ctx->priv) {
|
|
|
|
vpx_codec_mmap_t mmap;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
mmap.id = vp8_mem_req_segs[0].id;
|
|
|
|
mmap.sz = sizeof(vpx_codec_alg_priv_t);
|
|
|
|
mmap.align = vp8_mem_req_segs[0].align;
|
|
|
|
mmap.flags = vp8_mem_req_segs[0].flags;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
res = vp8_mmap_alloc(&mmap);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!res) {
|
|
|
|
vp8_init_ctx(ctx, &mmap);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
ctx->priv->alg_priv->defer_alloc = 1;
|
|
|
|
/*post processing level initialized to do nothing */
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx) {
|
|
|
|
int i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 00:16:28 +01:00
|
|
|
vp9_remove_decompressor(ctx->pbi);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = NELEMENTS(ctx->mmaps) - 1; i >= 0; i--) {
|
|
|
|
if (ctx->mmaps[i].dtor)
|
|
|
|
ctx->mmaps[i].dtor(&ctx->mmaps[i]);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_OK;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static vpx_codec_err_t vp8_peek_si(const uint8_t *data,
|
|
|
|
unsigned int data_sz,
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_stream_info_t *si) {
|
|
|
|
vpx_codec_err_t res = VPX_CODEC_OK;
|
|
|
|
|
|
|
|
if (data + data_sz <= data)
|
|
|
|
res = VPX_CODEC_INVALID_PARAM;
|
|
|
|
else {
|
|
|
|
/* Parse uncompresssed part of key frame header.
|
|
|
|
* 3 bytes:- including version, frame type and an offset
|
|
|
|
* 3 bytes:- sync code (0x9d, 0x01, 0x2a)
|
|
|
|
* 4 bytes:- including image width and height in the lowest 14 bits
|
|
|
|
* of each 2-byte value.
|
|
|
|
*/
|
|
|
|
si->is_kf = 0;
|
|
|
|
|
|
|
|
if (data_sz >= 10 && !(data[0] & 0x01)) { /* I-Frame */
|
|
|
|
const uint8_t *c = data + 3;
|
|
|
|
si->is_kf = 1;
|
|
|
|
|
|
|
|
/* vet via sync code */
|
|
|
|
if (c[0] != 0x9d || c[1] != 0x01 || c[2] != 0x2a)
|
|
|
|
res = VPX_CODEC_UNSUP_BITSTREAM;
|
|
|
|
|
2013-02-28 02:09:12 +01:00
|
|
|
si->w = (c[3] | (c[4] << 8));
|
|
|
|
si->h = (c[5] | (c[6] << 8));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/*printf("w=%d, h=%d\n", si->w, si->h);*/
|
|
|
|
if (!(si->h | si->w))
|
|
|
|
res = VPX_CODEC_UNSUP_BITSTREAM;
|
|
|
|
} else
|
|
|
|
res = VPX_CODEC_UNSUP_BITSTREAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_stream_info_t *si) {
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int sz;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (si->sz >= sizeof(vp8_stream_info_t))
|
|
|
|
sz = sizeof(vp8_stream_info_t);
|
|
|
|
else
|
|
|
|
sz = sizeof(vpx_codec_stream_info_t);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
memcpy(si, &ctx->si, sz);
|
|
|
|
si->sz = sz;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_OK;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vpx_codec_err_t
|
|
|
|
update_error_state(vpx_codec_alg_priv_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
const struct vpx_internal_error_info *error) {
|
|
|
|
vpx_codec_err_t res;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if ((res = error->error_code))
|
|
|
|
ctx->base.err_detail = error->has_detail
|
|
|
|
? error->detail
|
|
|
|
: NULL;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-11-15 21:19:07 +01:00
|
|
|
static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx,
|
|
|
|
const uint8_t **data,
|
|
|
|
unsigned int data_sz,
|
|
|
|
void *user_priv,
|
|
|
|
long deadline) {
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_err_t res = VPX_CODEC_OK;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
ctx->img_avail = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Determine the stream parameters. Note that we rely on peek_si to
|
|
|
|
* validate that we have a buffer that does not wrap around the top
|
|
|
|
* of the heap.
|
|
|
|
*/
|
|
|
|
if (!ctx->si.h)
|
2012-11-15 21:19:07 +01:00
|
|
|
res = ctx->base.iface->dec.peek_si(*data, data_sz, &ctx->si);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Perform deferred allocations, if required */
|
|
|
|
if (!res && ctx->defer_alloc) {
|
|
|
|
int i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 1; !res && i < NELEMENTS(ctx->mmaps); i++) {
|
|
|
|
vpx_codec_dec_cfg_t cfg;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
cfg.w = ctx->si.w;
|
|
|
|
cfg.h = ctx->si.h;
|
|
|
|
ctx->mmaps[i].id = vp8_mem_req_segs[i].id;
|
|
|
|
ctx->mmaps[i].sz = vp8_mem_req_segs[i].sz;
|
|
|
|
ctx->mmaps[i].align = vp8_mem_req_segs[i].align;
|
|
|
|
ctx->mmaps[i].flags = vp8_mem_req_segs[i].flags;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!ctx->mmaps[i].sz)
|
|
|
|
ctx->mmaps[i].sz = vp8_mem_req_segs[i].calc_sz(&cfg,
|
|
|
|
ctx->base.init_flags);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
res = vp8_mmap_alloc(&ctx->mmaps[i]);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!res)
|
|
|
|
vp8_finalize_mmaps(ctx);
|
|
|
|
|
|
|
|
ctx->defer_alloc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the decoder instance on the first frame*/
|
|
|
|
if (!res && !ctx->decoder_init) {
|
|
|
|
res = vp8_validate_mmaps(&ctx->si, ctx->mmaps, ctx->base.init_flags);
|
|
|
|
|
|
|
|
if (!res) {
|
2012-10-31 22:40:53 +01:00
|
|
|
VP9D_CONFIG oxcf;
|
|
|
|
VP9D_PTR optr;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-31 00:16:28 +01:00
|
|
|
vp9_initialize_dec();
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
oxcf.Width = ctx->si.w;
|
|
|
|
oxcf.Height = ctx->si.h;
|
|
|
|
oxcf.Version = 9;
|
|
|
|
oxcf.postprocess = 0;
|
|
|
|
oxcf.max_threads = ctx->cfg.threads;
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
oxcf.inv_tile_order = ctx->cfg.inv_tile_order;
|
2012-10-31 00:16:28 +01:00
|
|
|
optr = vp9_create_decompressor(&oxcf);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
/* If postprocessing was enabled by the application and a
|
|
|
|
* configuration has not been provided, default it.
|
|
|
|
*/
|
|
|
|
if (!ctx->postproc_cfg_set
|
|
|
|
&& (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC)) {
|
|
|
|
ctx->postproc_cfg.post_proc_flag =
|
|
|
|
VP8_DEBLOCK | VP8_DEMACROBLOCK;
|
|
|
|
ctx->postproc_cfg.deblocking_level = 4;
|
|
|
|
ctx->postproc_cfg.noise_level = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!optr)
|
|
|
|
res = VPX_CODEC_ERROR;
|
|
|
|
else
|
|
|
|
ctx->pbi = optr;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
ctx->decoder_init = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res && ctx->pbi) {
|
|
|
|
YV12_BUFFER_CONFIG sd;
|
|
|
|
int64_t time_stamp = 0, time_end_stamp = 0;
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_ppflags_t flags = {0};
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC) {
|
|
|
|
flags.post_proc_flag = ctx->postproc_cfg.post_proc_flag
|
2010-11-05 00:03:36 +01:00
|
|
|
#if CONFIG_POSTPROC_VISUALIZER
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
| ((ctx->dbg_color_ref_frame_flag != 0) ? VP9D_DEBUG_CLR_FRM_REF_BLKS : 0)
|
|
|
|
| ((ctx->dbg_color_mb_modes_flag != 0) ? VP9D_DEBUG_CLR_BLK_MODES : 0)
|
|
|
|
| ((ctx->dbg_color_b_modes_flag != 0) ? VP9D_DEBUG_CLR_BLK_MODES : 0)
|
|
|
|
| ((ctx->dbg_display_mv_flag != 0) ? VP9D_DEBUG_DRAW_MV : 0)
|
2010-11-05 00:03:36 +01:00
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
;
|
|
|
|
flags.deblocking_level = ctx->postproc_cfg.deblocking_level;
|
|
|
|
flags.noise_level = ctx->postproc_cfg.noise_level;
|
2010-11-05 00:03:36 +01:00
|
|
|
#if CONFIG_POSTPROC_VISUALIZER
|
2012-07-14 00:21:29 +02:00
|
|
|
flags.display_ref_frame_flag = ctx->dbg_color_ref_frame_flag;
|
|
|
|
flags.display_mb_modes_flag = ctx->dbg_color_mb_modes_flag;
|
|
|
|
flags.display_b_modes_flag = ctx->dbg_color_b_modes_flag;
|
|
|
|
flags.display_mv_flag = ctx->dbg_display_mv_flag;
|
2010-11-05 00:03:36 +01:00
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 00:16:28 +01:00
|
|
|
if (vp9_receive_compressed_data(ctx->pbi, data_sz, data, deadline)) {
|
2012-10-31 01:53:32 +01:00
|
|
|
VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi;
|
2012-07-14 00:21:29 +02:00
|
|
|
res = update_error_state(ctx, &pbi->common.error);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 00:16:28 +01:00
|
|
|
if (!res && 0 == vp9_get_raw_frame(ctx->pbi, &sd, &time_stamp,
|
|
|
|
&time_end_stamp, &flags)) {
|
2012-07-14 00:21:29 +02:00
|
|
|
yuvconfig2image(&ctx->img, &sd, user_priv);
|
|
|
|
ctx->img_avail = 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-03-05 21:23:34 +01:00
|
|
|
static void parse_superframe_index(const uint8_t *data,
|
|
|
|
size_t data_sz,
|
|
|
|
uint32_t sizes[8],
|
|
|
|
int *count) {
|
|
|
|
uint8_t marker;
|
|
|
|
|
|
|
|
assert(data_sz);
|
|
|
|
marker = data[data_sz - 1];
|
|
|
|
*count = 0;
|
|
|
|
|
2013-03-13 03:03:05 +01:00
|
|
|
if ((marker & 0xe0) == 0xc0) {
|
2013-03-05 21:23:34 +01:00
|
|
|
const int frames = (marker & 0x7) + 1;
|
|
|
|
const int mag = ((marker >> 3) & 3) + 1;
|
|
|
|
const int index_sz = 2 + mag * frames;
|
|
|
|
|
|
|
|
if (data_sz >= index_sz && data[data_sz - index_sz] == marker) {
|
|
|
|
// found a valid superframe index
|
|
|
|
int i, j;
|
|
|
|
const uint8_t *x = data + data_sz - index_sz + 1;
|
|
|
|
|
|
|
|
for (i = 0; i < frames; i++) {
|
|
|
|
int this_sz = 0;
|
|
|
|
|
|
|
|
for (j = 0; j < mag; j++)
|
|
|
|
this_sz |= (*x++) << (j * 8);
|
|
|
|
sizes[i] = this_sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
*count = frames;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 21:19:07 +01:00
|
|
|
static vpx_codec_err_t vp9_decode(vpx_codec_alg_priv_t *ctx,
|
|
|
|
const uint8_t *data,
|
|
|
|
unsigned int data_sz,
|
|
|
|
void *user_priv,
|
|
|
|
long deadline) {
|
|
|
|
const uint8_t *data_start = data;
|
|
|
|
const uint8_t *data_end = data + data_sz;
|
2013-01-15 15:43:35 +01:00
|
|
|
vpx_codec_err_t res = 0;
|
2013-03-05 21:23:34 +01:00
|
|
|
uint32_t sizes[8];
|
|
|
|
int frames_this_pts, frame_count = 0;
|
|
|
|
|
|
|
|
parse_superframe_index(data, data_sz, sizes, &frames_this_pts);
|
2012-11-15 21:19:07 +01:00
|
|
|
|
|
|
|
do {
|
2013-03-05 21:23:34 +01:00
|
|
|
// Skip over the superframe index, if present
|
2013-03-13 03:03:05 +01:00
|
|
|
if (data_sz && (*data_start & 0xe0) == 0xc0) {
|
2013-03-05 21:23:34 +01:00
|
|
|
const uint8_t marker = *data_start;
|
|
|
|
const int frames = (marker & 0x7) + 1;
|
|
|
|
const int mag = ((marker >> 3) & 3) + 1;
|
|
|
|
const int index_sz = 2 + mag * frames;
|
|
|
|
|
|
|
|
if (data_sz >= index_sz && data_start[index_sz - 1] == marker) {
|
|
|
|
data_start += index_sz;
|
|
|
|
data_sz -= index_sz;
|
|
|
|
if (data_start < data_end)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the correct size for this frame, if an index is present.
|
|
|
|
if (frames_this_pts) {
|
|
|
|
uint32_t this_sz = sizes[frame_count];
|
|
|
|
|
|
|
|
if (data_sz < this_sz) {
|
|
|
|
ctx->base.err_detail = "Invalid frame size in index";
|
|
|
|
return VPX_CODEC_CORRUPT_FRAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
data_sz = this_sz;
|
|
|
|
frame_count++;
|
|
|
|
}
|
|
|
|
|
2012-11-15 21:19:07 +01:00
|
|
|
res = decode_one(ctx, &data_start, data_sz, user_priv, deadline);
|
|
|
|
assert(data_start >= data);
|
|
|
|
assert(data_start <= data_end);
|
|
|
|
|
|
|
|
/* Early exit if there was a decode error */
|
|
|
|
if (res)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Account for suboptimal termination by the encoder. */
|
|
|
|
while (data_start < data_end && *data_start == 0)
|
|
|
|
data_start++;
|
|
|
|
|
|
|
|
data_sz = data_end - data_start;
|
|
|
|
} while (data_start < data_end);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
static vpx_image_t *vp8_get_frame(vpx_codec_alg_priv_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_iter_t *iter) {
|
|
|
|
vpx_image_t *img = NULL;
|
|
|
|
|
|
|
|
if (ctx->img_avail) {
|
|
|
|
/* iter acts as a flip flop, so an image is only returned on the first
|
|
|
|
* call to get_frame.
|
|
|
|
*/
|
|
|
|
if (!(*iter)) {
|
|
|
|
img = &ctx->img;
|
|
|
|
*iter = img;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return img;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
|
|
|
vpx_codec_err_t vp8_xma_get_mmap(const vpx_codec_ctx_t *ctx,
|
|
|
|
vpx_codec_mmap_t *mmap,
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_codec_iter_t *iter) {
|
|
|
|
vpx_codec_err_t res;
|
|
|
|
const mem_req_t *seg_iter = *iter;
|
|
|
|
|
|
|
|
/* Get address of next segment request */
|
|
|
|
do {
|
|
|
|
if (!seg_iter)
|
|
|
|
seg_iter = vp8_mem_req_segs;
|
|
|
|
else if (seg_iter->id != VP8_SEG_MAX)
|
|
|
|
seg_iter++;
|
|
|
|
|
|
|
|
*iter = (vpx_codec_iter_t)seg_iter;
|
|
|
|
|
|
|
|
if (seg_iter->id != VP8_SEG_MAX) {
|
|
|
|
mmap->id = seg_iter->id;
|
|
|
|
mmap->sz = seg_iter->sz;
|
|
|
|
mmap->align = seg_iter->align;
|
|
|
|
mmap->flags = seg_iter->flags;
|
|
|
|
|
|
|
|
if (!seg_iter->sz)
|
|
|
|
mmap->sz = seg_iter->calc_sz(ctx->config.dec, ctx->init_flags);
|
|
|
|
|
|
|
|
res = VPX_CODEC_OK;
|
|
|
|
} else
|
|
|
|
res = VPX_CODEC_LIST_END;
|
|
|
|
} while (!mmap->sz && res != VPX_CODEC_LIST_END);
|
|
|
|
|
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static vpx_codec_err_t vp8_xma_set_mmap(vpx_codec_ctx_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
const vpx_codec_mmap_t *mmap) {
|
|
|
|
vpx_codec_err_t res = VPX_CODEC_MEM_ERROR;
|
|
|
|
int i, done;
|
|
|
|
|
|
|
|
if (!ctx->priv) {
|
|
|
|
if (mmap->id == VP8_SEG_ALG_PRIV) {
|
|
|
|
if (!ctx->priv) {
|
|
|
|
vp8_init_ctx(ctx, mmap);
|
|
|
|
res = VPX_CODEC_OK;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
done = 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!res && ctx->priv->alg_priv) {
|
|
|
|
for (i = 0; i < NELEMENTS(ctx->priv->alg_priv->mmaps); i++) {
|
|
|
|
if (ctx->priv->alg_priv->mmaps[i].id == mmap->id)
|
|
|
|
if (!ctx->priv->alg_priv->mmaps[i].base) {
|
|
|
|
ctx->priv->alg_priv->mmaps[i] = *mmap;
|
|
|
|
res = VPX_CODEC_OK;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
done &= (ctx->priv->alg_priv->mmaps[i].base != NULL);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (done && !res) {
|
|
|
|
vp8_finalize_mmaps(ctx->priv->alg_priv);
|
2012-11-05 21:37:14 +01:00
|
|
|
res = ctx->iface->init(ctx, NULL);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static vpx_codec_err_t image2yuvconfig(const vpx_image_t *img,
|
2012-07-14 00:21:29 +02:00
|
|
|
YV12_BUFFER_CONFIG *yv12) {
|
|
|
|
vpx_codec_err_t res = VPX_CODEC_OK;
|
|
|
|
yv12->y_buffer = img->planes[VPX_PLANE_Y];
|
|
|
|
yv12->u_buffer = img->planes[VPX_PLANE_U];
|
|
|
|
yv12->v_buffer = img->planes[VPX_PLANE_V];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-03-14 01:09:05 +01:00
|
|
|
yv12->y_crop_width = img->d_w;
|
|
|
|
yv12->y_crop_height = img->d_h;
|
2012-07-14 00:21:29 +02:00
|
|
|
yv12->y_width = img->d_w;
|
|
|
|
yv12->y_height = img->d_h;
|
|
|
|
yv12->uv_width = yv12->y_width / 2;
|
|
|
|
yv12->uv_height = yv12->y_height / 2;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
yv12->y_stride = img->stride[VPX_PLANE_Y];
|
|
|
|
yv12->uv_stride = img->stride[VPX_PLANE_U];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2;
|
2012-10-31 00:16:28 +01:00
|
|
|
yv12->clrtype = (img->fmt == VPX_IMG_FMT_VPXI420 ||
|
|
|
|
img->fmt == VPX_IMG_FMT_VPXYV12);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return res;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
static vpx_codec_err_t vp9_set_reference(vpx_codec_alg_priv_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
int ctr_id,
|
|
|
|
va_list args) {
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_ref_frame_t *data = va_arg(args, vpx_ref_frame_t *);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (data) {
|
|
|
|
vpx_ref_frame_t *frame = (vpx_ref_frame_t *)data;
|
|
|
|
YV12_BUFFER_CONFIG sd;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
image2yuvconfig(&frame->img, &sd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-01-12 00:34:05 +01:00
|
|
|
return vp9_set_reference_dec(ctx->pbi,
|
|
|
|
(VP9_REFFRAME)frame->frame_type, &sd);
|
2012-07-14 00:21:29 +02:00
|
|
|
} else
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-03-13 20:15:43 +01:00
|
|
|
static vpx_codec_err_t vp9_copy_reference(vpx_codec_alg_priv_t *ctx,
|
|
|
|
int ctr_id,
|
|
|
|
va_list args) {
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_ref_frame_t *data = va_arg(args, vpx_ref_frame_t *);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (data) {
|
|
|
|
vpx_ref_frame_t *frame = (vpx_ref_frame_t *)data;
|
|
|
|
YV12_BUFFER_CONFIG sd;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
image2yuvconfig(&frame->img, &sd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-03-13 20:15:43 +01:00
|
|
|
return vp9_copy_reference_dec(ctx->pbi,
|
|
|
|
(VP9_REFFRAME)frame->frame_type, &sd);
|
2012-07-14 00:21:29 +02:00
|
|
|
} else
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-03-13 20:15:43 +01:00
|
|
|
static vpx_codec_err_t get_reference(vpx_codec_alg_priv_t *ctx,
|
|
|
|
int ctr_id,
|
|
|
|
va_list args) {
|
|
|
|
vp9_ref_frame_t *data = va_arg(args, vp9_ref_frame_t *);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
YV12_BUFFER_CONFIG* fb;
|
|
|
|
|
|
|
|
vp9_get_reference_dec(ctx->pbi, data->idx, &fb);
|
|
|
|
yuvconfig2image(&data->img, fb, NULL);
|
|
|
|
return VPX_CODEC_OK;
|
|
|
|
} else {
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
static vpx_codec_err_t vp8_set_postproc(vpx_codec_alg_priv_t *ctx,
|
|
|
|
int ctr_id,
|
2012-07-14 00:21:29 +02:00
|
|
|
va_list args) {
|
2010-05-18 17:58:33 +02:00
|
|
|
#if CONFIG_POSTPROC
|
2012-07-14 00:21:29 +02:00
|
|
|
vp8_postproc_cfg_t *data = va_arg(args, vp8_postproc_cfg_t *);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (data) {
|
|
|
|
ctx->postproc_cfg_set = 1;
|
|
|
|
ctx->postproc_cfg = *((vp8_postproc_cfg_t *)data);
|
|
|
|
return VPX_CODEC_OK;
|
|
|
|
} else
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#else
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_INCAPABLE;
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-11-05 00:03:36 +01:00
|
|
|
static vpx_codec_err_t vp8_set_dbg_options(vpx_codec_alg_priv_t *ctx,
|
2012-07-14 00:21:29 +02:00
|
|
|
int ctrl_id,
|
|
|
|
va_list args) {
|
2010-11-05 00:03:36 +01:00
|
|
|
#if CONFIG_POSTPROC_VISUALIZER && CONFIG_POSTPROC
|
2012-07-14 00:21:29 +02:00
|
|
|
int data = va_arg(args, int);
|
2010-11-05 00:03:36 +01:00
|
|
|
|
|
|
|
#define MAP(id, var) case id: var = data; break;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
switch (ctrl_id) {
|
|
|
|
MAP(VP8_SET_DBG_COLOR_REF_FRAME, ctx->dbg_color_ref_frame_flag);
|
|
|
|
MAP(VP8_SET_DBG_COLOR_MB_MODES, ctx->dbg_color_mb_modes_flag);
|
|
|
|
MAP(VP8_SET_DBG_COLOR_B_MODES, ctx->dbg_color_b_modes_flag);
|
|
|
|
MAP(VP8_SET_DBG_DISPLAY_MV, ctx->dbg_display_mv_flag);
|
|
|
|
}
|
2010-11-05 00:03:36 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_OK;
|
2010-11-05 00:03:36 +01:00
|
|
|
#else
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_INCAPABLE;
|
2010-11-05 00:03:36 +01:00
|
|
|
#endif
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2010-12-14 14:05:06 +01:00
|
|
|
static vpx_codec_err_t vp8_get_last_ref_updates(vpx_codec_alg_priv_t *ctx,
|
|
|
|
int ctrl_id,
|
2012-07-14 00:21:29 +02:00
|
|
|
va_list args) {
|
|
|
|
int *update_info = va_arg(args, int *);
|
2012-10-31 01:53:32 +01:00
|
|
|
VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi;
|
2010-12-14 14:05:06 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (update_info) {
|
2013-01-15 22:49:44 +01:00
|
|
|
*update_info = pbi->refresh_frame_flags;
|
2010-12-14 14:05:06 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_OK;
|
|
|
|
} else
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
2010-12-14 14:05:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-16 16:46:31 +01:00
|
|
|
static vpx_codec_err_t vp8_get_frame_corrupted(vpx_codec_alg_priv_t *ctx,
|
|
|
|
int ctrl_id,
|
2012-07-14 00:21:29 +02:00
|
|
|
va_list args) {
|
2010-12-16 16:46:31 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int *corrupted = va_arg(args, int *);
|
2010-12-16 16:46:31 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (corrupted) {
|
2012-10-31 01:53:32 +01:00
|
|
|
VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi;
|
2012-07-14 00:21:29 +02:00
|
|
|
*corrupted = pbi->common.frame_to_show->corrupted;
|
2010-12-16 16:46:31 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return VPX_CODEC_OK;
|
|
|
|
} else
|
|
|
|
return VPX_CODEC_INVALID_PARAM;
|
2010-12-16 16:46:31 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-31 01:12:12 +01:00
|
|
|
static vpx_codec_ctrl_fn_map_t ctf_maps[] = {
|
2012-10-30 20:58:42 +01:00
|
|
|
{VP8_SET_REFERENCE, vp9_set_reference},
|
2013-03-13 20:15:43 +01:00
|
|
|
{VP8_COPY_REFERENCE, vp9_copy_reference},
|
2012-07-14 00:21:29 +02:00
|
|
|
{VP8_SET_POSTPROC, vp8_set_postproc},
|
|
|
|
{VP8_SET_DBG_COLOR_REF_FRAME, vp8_set_dbg_options},
|
|
|
|
{VP8_SET_DBG_COLOR_MB_MODES, vp8_set_dbg_options},
|
|
|
|
{VP8_SET_DBG_COLOR_B_MODES, vp8_set_dbg_options},
|
|
|
|
{VP8_SET_DBG_DISPLAY_MV, vp8_set_dbg_options},
|
|
|
|
{VP8D_GET_LAST_REF_UPDATES, vp8_get_last_ref_updates},
|
|
|
|
{VP8D_GET_FRAME_CORRUPTED, vp8_get_frame_corrupted},
|
2013-03-13 20:15:43 +01:00
|
|
|
{VP9_GET_REFERENCE, get_reference},
|
2012-07-14 00:21:29 +02:00
|
|
|
{ -1, NULL},
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef VERSION_STRING
|
|
|
|
#define VERSION_STRING
|
|
|
|
#endif
|
2012-11-09 02:09:30 +01:00
|
|
|
CODEC_INTERFACE(vpx_codec_vp9_dx) = {
|
|
|
|
"WebM Project VP9 Decoder" VERSION_STRING,
|
2012-07-14 00:21:29 +02:00
|
|
|
VPX_CODEC_INTERNAL_ABI_VERSION,
|
|
|
|
VPX_CODEC_CAP_DECODER | VP8_CAP_POSTPROC,
|
|
|
|
/* vpx_codec_caps_t caps; */
|
|
|
|
vp8_init, /* vpx_codec_init_fn_t init; */
|
|
|
|
vp8_destroy, /* vpx_codec_destroy_fn_t destroy; */
|
2012-10-31 01:12:12 +01:00
|
|
|
ctf_maps, /* vpx_codec_ctrl_fn_map_t *ctrl_maps; */
|
2012-07-14 00:21:29 +02:00
|
|
|
vp8_xma_get_mmap, /* vpx_codec_get_mmap_fn_t get_mmap; */
|
|
|
|
vp8_xma_set_mmap, /* vpx_codec_set_mmap_fn_t set_mmap; */
|
|
|
|
{
|
|
|
|
vp8_peek_si, /* vpx_codec_peek_si_fn_t peek_si; */
|
|
|
|
vp8_get_si, /* vpx_codec_get_si_fn_t get_si; */
|
2012-11-15 21:19:07 +01:00
|
|
|
vp9_decode, /* vpx_codec_decode_fn_t decode; */
|
2012-07-14 00:21:29 +02:00
|
|
|
vp8_get_frame, /* vpx_codec_frame_get_fn_t frame_get; */
|
|
|
|
},
|
|
|
|
{
|
|
|
|
/* encoder functions */
|
|
|
|
NOT_IMPLEMENTED,
|
|
|
|
NOT_IMPLEMENTED,
|
|
|
|
NOT_IMPLEMENTED,
|
|
|
|
NOT_IMPLEMENTED,
|
|
|
|
NOT_IMPLEMENTED,
|
|
|
|
NOT_IMPLEMENTED
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|