#ifndef VPX_VP9_VP9_IFACE_COMMON_H_
#define VPX_VP9_VP9_IFACE_COMMON_H_
#include <assert.h>
#include "vpx_ports/mem.h"
#include "vpx/vp8.h"
#include "vpx_scale/yv12config.h"
#include "common/vp9_enums.h"
#ifdef __cplusplus
extern "C" {
#endif
void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12,
void *user_priv);
vpx_codec_err_t image2yuvconfig(const vpx_image_t *img,
YV12_BUFFER_CONFIG *yv12);
static INLINE VP9_REFFRAME
ref_frame_to_vp9_reframe(vpx_ref_frame_type_t frame) { … }
#ifdef __cplusplus
}
#endif
#endif