/* * This file is part of the DXX-Rebirth project . * It is copyright by its individual contributors, as recorded in the * project's Git history. See COPYING.txt at the top level for license * terms and a link to the Git history. */ #ifndef _LIBMVE_H #define _LIBMVE_H #include #include enum class MVE_StepStatus { Continue = 0, EndOfFile = 1, }; struct MVESTREAM; struct MVE_videoSpec { int screenWidth; int screenHeight; int width; int height; int truecolor; }; MVE_StepStatus MVE_rmStepMovie(MVESTREAM &mve); void MVE_rmHoldMovie(); void MVE_rmEndMovie(std::unique_ptr mve); void MVE_getVideoSpec(MVE_videoSpec *vSpec); void MVE_sndInit(int x); void MovieShowFrame(const uint8_t *buf, int dstx, int dsty, int bufw, int bufh, int sw, int sh); void MovieSetPalette(const unsigned char *p, unsigned start, unsigned count); #endif /* _LIBMVE_H */