mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-04 05:43:16 +00:00
lavu/tx: add unaligned flag to the API
This commit is contained in:
parent
8c55c82583
commit
aa6c757d50
@ -95,7 +95,7 @@ enum AVTXType {
|
|||||||
* @param stride the input or output stride in bytes
|
* @param stride the input or output stride in bytes
|
||||||
*
|
*
|
||||||
* The out and in arrays must be aligned to the maximum required by the CPU
|
* The out and in arrays must be aligned to the maximum required by the CPU
|
||||||
* architecture.
|
* architecture unless the AV_TX_UNALIGNED flag was set in av_tx_init().
|
||||||
* The stride must follow the constraints the transform type has specified.
|
* The stride must follow the constraints the transform type has specified.
|
||||||
*/
|
*/
|
||||||
typedef void (*av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride);
|
typedef void (*av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride);
|
||||||
@ -110,6 +110,12 @@ enum AVTXFlags {
|
|||||||
* transform types.
|
* transform types.
|
||||||
*/
|
*/
|
||||||
AV_TX_INPLACE = 1ULL << 0,
|
AV_TX_INPLACE = 1ULL << 0,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Relaxes alignment requirement for the in and out arrays of av_tx_fn().
|
||||||
|
* May be slower with certain transform types.
|
||||||
|
*/
|
||||||
|
AV_TX_UNALIGNED = 1ULL << 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user