Doxygen for PruneInfoFromTpl
BUG=aomedia:2700
Change-Id: If5ea1e4e8aaf4cd76547670c1912036413a1730e
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index 5ce28dc..4c4ab8b 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -2221,12 +2221,21 @@
}
return 0;
}
+/*!\endcond */
+/*! \brief Struct used to hold TPL data to
+ * narrow down parts of the inter mode search.
+ */
typedef struct {
+ /*!
+ * The best inter cost out of all of the reference frames.
+ */
int64_t best_inter_cost;
+ /*!
+ * The inter cost for each reference frame.
+ */
int64_t ref_inter_cost[INTER_REFS_PER_FRAME];
} PruneInfoFromTpl;
-/*!\endcond */
#if !CONFIG_REALTIME_ONLY
// TODO(Remya): Check if get_tpl_stats_b() can be reused