Document scaler_ctx_scale
This commit is contained in:
parent
ae1b4f8884
commit
4bd347375f
|
@ -242,6 +242,14 @@ void scaler_ctx_gen_reset(struct scaler_ctx *ctx)
|
||||||
memset(&ctx->output, 0, sizeof(ctx->output));
|
memset(&ctx->output, 0, sizeof(ctx->output));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* scaler_ctx_scale:
|
||||||
|
* @ctx : pointer to scaler context object.
|
||||||
|
* @output : pointer to output image.
|
||||||
|
* @input : pointer to input image.
|
||||||
|
*
|
||||||
|
* Scales an input image to an output image.
|
||||||
|
**/
|
||||||
void scaler_ctx_scale(struct scaler_ctx *ctx,
|
void scaler_ctx_scale(struct scaler_ctx *ctx,
|
||||||
void *output, const void *input)
|
void *output, const void *input)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue