Release 4.11 drivers/media/platform/coda/imx-vdoa.h
/*
* Copyright (C) 2016 Pengutronix
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef IMX_VDOA_H
#define IMX_VDOA_H
struct vdoa_data;
struct vdoa_ctx;
#if (defined CONFIG_VIDEO_IMX_VDOA || defined CONFIG_VIDEO_IMX_VDOA_MODULE)
struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa);
int vdoa_context_configure(struct vdoa_ctx *ctx,
unsigned int width, unsigned int height,
u32 pixelformat);
void vdoa_context_destroy(struct vdoa_ctx *ctx);
void vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src);
int vdoa_wait_for_completion(struct vdoa_ctx *ctx);
#else
static inline struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa)
{
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
static inline int vdoa_context_configure(struct vdoa_ctx *ctx,
unsigned int width,
unsigned int height,
u32 pixelformat)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
static inline void vdoa_context_destroy(struct vdoa_ctx *ctx) { }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
;
static inline void vdoa_device_run(struct vdoa_ctx *ctx,
dma_addr_t dst, dma_addr_t src) { }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
;
static inline int vdoa_wait_for_completion(struct vdoa_ctx *ctx)
{
return 0;
}Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
;
#endif
#endif /* IMX_VDOA_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 182 | 100.00% | 1 | 100.00% |
Total | 182 | 100.00% | 1 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.