From e404f867ccb574f2780bdfd973b320e777bd055a Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 24 Apr 2020 15:59:25 -0700 Subject: [PATCH] Update comments on nonexistent vpx_codec_init Update comments on the nonexistent vpx_codec_init() function. Replace it with vpx_codec_dec_init() and vpx_codec_enc_init(). based on the change in libaom: b1b8c68e8 Update comments on nonexistent aom_codec_init Change-Id: I63d3f6c87706a98f631457b5f6ce51e8b0c5cfb1 --- vpx/internal/vpx_codec_internal.h | 6 ++++-- vpx/vpx_codec.h | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/vpx/internal/vpx_codec_internal.h b/vpx/internal/vpx_codec_internal.h index 5135d3422..f01a63e0c 100644 --- a/vpx/internal/vpx_codec_internal.h +++ b/vpx/internal/vpx_codec_internal.h @@ -27,13 +27,15 @@ * * * An application instantiates a specific decoder instance by using - * vpx_codec_init() and a pointer to the algorithm's interface structure: + * vpx_codec_dec_init() and a pointer to the algorithm's interface structure: *
  *     my_app.c:
  *       extern vpx_codec_iface_t my_codec;
  *       {
  *           vpx_codec_ctx_t algo;
- *           res = vpx_codec_init(&algo, &my_codec);
+ *           int threads = 4;
+ *           vpx_codec_dec_cfg_t cfg = { threads, 0, 0 };
+ *           res = vpx_codec_dec_init(&algo, &my_codec, &cfg, 0);
  *       }
  *     
* diff --git a/vpx/vpx_codec.h b/vpx/vpx_codec.h index 6371a6ca2..b0a931e01 100644 --- a/vpx/vpx_codec.h +++ b/vpx/vpx_codec.h @@ -22,13 +22,16 @@ * video codec algorithm. * * An application instantiates a specific codec instance by using - * vpx_codec_init() and a pointer to the algorithm's interface structure: + * vpx_codec_dec_init() or vpx_codec_enc_init() and a pointer to the + * algorithm's interface structure: *
  *     my_app.c:
  *       extern vpx_codec_iface_t my_codec;
  *       {
  *           vpx_codec_ctx_t algo;
- *           res = vpx_codec_init(&algo, &my_codec);
+ *           int threads = 4;
+ *           vpx_codec_dec_cfg_t cfg = { threads, 0, 0 };
+ *           res = vpx_codec_dec_init(&algo, &my_codec, &cfg, 0);
  *       }
  *     
* -- 2.40.0