Merge "Passing const cfg pointer to vpx_codec_{dec,enc}_init_ver()."

This commit is contained in:
Dmitry Kovalev 2014-08-25 15:17:46 -07:00 committed by Gerrit Code Review
commit d0e384e320
5 changed files with 9 additions and 7 deletions

View File

@ -20,7 +20,7 @@
vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
vpx_codec_iface_t *iface, vpx_codec_iface_t *iface,
vpx_codec_dec_cfg_t *cfg, const vpx_codec_dec_cfg_t *cfg,
vpx_codec_flags_t flags, vpx_codec_flags_t flags,
int ver) { int ver) {
vpx_codec_err_t res; vpx_codec_err_t res;

View File

@ -22,7 +22,7 @@
vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx, vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
vpx_codec_iface_t *iface, vpx_codec_iface_t *iface,
vpx_codec_enc_cfg_t *cfg, const vpx_codec_enc_cfg_t *cfg,
vpx_codec_flags_t flags, vpx_codec_flags_t flags,
int ver) { int ver) {
vpx_codec_err_t res; vpx_codec_err_t res;

View File

@ -203,9 +203,11 @@ extern "C" {
const char *err_detail; /**< Detailed info, if available */ const char *err_detail; /**< Detailed info, if available */
vpx_codec_flags_t init_flags; /**< Flags passed at init time */ vpx_codec_flags_t init_flags; /**< Flags passed at init time */
union { union {
struct vpx_codec_dec_cfg *dec; /**< Decoder Configuration Pointer */ /**< Decoder Configuration Pointer */
struct vpx_codec_enc_cfg *enc; /**< Encoder Configuration Pointer */ const struct vpx_codec_dec_cfg *dec;
void *raw; /**< Encoder Configuration Pointer */
const struct vpx_codec_enc_cfg *enc;
const void *raw;
} config; /**< Configuration pointer aliasing union */ } config; /**< Configuration pointer aliasing union */
vpx_codec_priv_t *priv; /**< Algorithm private storage */ vpx_codec_priv_t *priv; /**< Algorithm private storage */
} vpx_codec_ctx_t; } vpx_codec_ctx_t;

View File

@ -135,7 +135,7 @@ extern "C" {
*/ */
vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
vpx_codec_iface_t *iface, vpx_codec_iface_t *iface,
vpx_codec_dec_cfg_t *cfg, const vpx_codec_dec_cfg_t *cfg,
vpx_codec_flags_t flags, vpx_codec_flags_t flags,
int ver); int ver);

View File

@ -715,7 +715,7 @@ extern "C" {
*/ */
vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx, vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
vpx_codec_iface_t *iface, vpx_codec_iface_t *iface,
vpx_codec_enc_cfg_t *cfg, const vpx_codec_enc_cfg_t *cfg,
vpx_codec_flags_t flags, vpx_codec_flags_t flags,
int ver); int ver);