1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef AVUTIL_HWCONTEXT_QSV_H
- #define AVUTIL_HWCONTEXT_QSV_H
- #include <mfx/mfxvideo.h>
- typedef struct AVQSVDeviceContext {
- mfxSession session;
- } AVQSVDeviceContext;
- typedef struct AVQSVFramesContext {
- mfxFrameSurface1 *surfaces;
- int nb_surfaces;
-
- int frame_type;
- } AVQSVFramesContext;
- #endif
|