1 /* $NetBSD: mpeg.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $ */ 2 3 /* SPDX-License-Identifier: MIT */ 4 #ifndef __NVKM_MPEG_H__ 5 #define __NVKM_MPEG_H__ 6 #include <core/engine.h> 7 int nv31_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **); 8 int nv40_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **); 9 int nv44_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **); 10 int nv50_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **); 11 int g84_mpeg_new(struct nvkm_device *, int index, struct nvkm_engine **); 12 #endif 13