Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
11 lines
489 B
C
11 lines
489 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVKM_MPEG_H__
|
|
#define __NVKM_MPEG_H__
|
|
#include <core/engine.h>
|
|
int nv31_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **);
|
|
int nv40_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **);
|
|
int nv44_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **);
|
|
int nv50_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **);
|
|
int g84_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **);
|
|
#endif
|