/*!\brief Current ABI version number * *\internal *IfthisfileisalteredinanywaythatchangestheABI,thisvalue *mustbebumped.Examplesinclude,butarenotlimitedto,changing *types,removingorreassigningenums,adding/removing/rearranging *fieldstostructures
*/ #define VPX_TPL_ABI_VERSION 5/**<\hideinitializer*/
/*!\brief Temporal dependency model stats for each block before propagation */ typedefstruct VpxTplBlockStats {
int16_t row; /**< Pixel row of the top left corner */
int16_t col; /**< Pixel col of the top left corner */
int64_t intra_cost; /**< Intra cost */
int64_t inter_cost; /**< Inter cost */
int16_t mv_r; /**< Motion vector row in pixel */
int16_t mv_c; /**< Motion vector col in pixel */
int64_t srcrf_rate; /**< Rate from source ref frame */
int64_t srcrf_dist; /**< Distortion from source ref frame */
int64_t pred_error; /**< Prediction error */
int64_t inter_pred_err; /**< Inter prediction error */
int64_t intra_pred_err; /**< Intra prediction error */ int ref_frame_index; /**< Ref frame index in the ref frame buffer */
} VpxTplBlockStats;
/*!\brief Temporal dependency model stats for each frame before propagation */ typedefstruct VpxTplFrameStats { int frame_width; /**< Frame width */ int frame_height; /**< Frame height */ int num_blocks; /**< Number of blocks. Size of block_stats_list */
VpxTplBlockStats *block_stats_list; /**< List of tpl stats for each block */
} VpxTplFrameStats;
/*!\brief Temporal dependency model stats for each GOP before propagation */ typedefstruct VpxTplGopStats { int size; /**< GOP size, also the size of frame_stats_list. */
VpxTplFrameStats *frame_stats_list; /**< List of tpl stats for each frame */
} VpxTplGopStats;
#ifdef __cplusplus
} // extern "C" #endif
#endif// VPX_VPX_VPX_TPL_H_
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-08-26)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.