[][src]Function stainless_ffmpeg_sys::av_hash_final

pub unsafe extern "C" fn av_hash_final(ctx: *mut AVHashContext, dst: *mut u8)

Finalize a hash context and compute the actual hash value.

The minimum size of dst buffer is given by av_hash_get_size() or #AV_HASH_MAX_SIZE. The use of the latter macro is discouraged.

It is not safe to update or finalize a hash context again, if it has already been finalized.

@param[in,out] ctx Hash context @param[out] dst Where the final hash value will be stored

@see av_hash_final_bin() provides an alternative API