1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef AVUTIL_HWCONTEXT_VDPAU_H
- #define AVUTIL_HWCONTEXT_VDPAU_H
- #include <vdpau/vdpau.h>
- typedef struct AVVDPAUDeviceContext {
- VdpDevice device;
- VdpGetProcAddress *get_proc_address;
- } AVVDPAUDeviceContext;
- #endif
|