mirror of
https://github.com/torvalds/linux.git
synced 2024-12-30 14:52:05 +00:00
c502e58350
Helper functions used by decoder back-ends to allocate physically contiguous memory required by hardware video decoder. Acked-by: Peter Griffin <peter.griffin@linaro.org> Signed-off-by: Hugues Fruchet <hugues.fruchet@st.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
15 lines
410 B
C
15 lines
410 B
C
/*
|
|
* Copyright (C) STMicroelectronics SA 2015
|
|
* Author: Hugues Fruchet <hugues.fruchet@st.com> for STMicroelectronics.
|
|
* License terms: GNU General Public License (GPL), version 2
|
|
*/
|
|
|
|
#ifndef DELTA_MEM_H
|
|
#define DELTA_MEM_H
|
|
|
|
int hw_alloc(struct delta_ctx *ctx, u32 size, const char *name,
|
|
struct delta_buf *buf);
|
|
void hw_free(struct delta_ctx *ctx, struct delta_buf *buf);
|
|
|
|
#endif /* DELTA_MEM_H */
|