mfmp2dlna.h 893 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _INC_MFMP2DLNA
  7. #define _INC_MFMP2DLNA
  8. #if (WINVER >= 0x0601)
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. typedef struct _MFMPEG2DLNASINKSTATS {
  13. DWORDLONG cBytesWritten;
  14. BOOL fPAL;
  15. DWORD fccVideo;
  16. DWORD dwVideoWidth;
  17. DWORD dwVideoHeight;
  18. DWORDLONG cVideoFramesReceived;
  19. DWORDLONG cVideoFramesEncoded;
  20. DWORDLONG cVideoFramesSkipped;
  21. DWORDLONG cBlackVideoFramesEncoded;
  22. DWORDLONG cVideoFramesDuplicated;
  23. DWORD cAudioSamplesPerSec;
  24. DWORD cAudioChannels;
  25. DWORDLONG cAudioBytesReceived;
  26. DWORDLONG cAudioFramesEncoded;
  27. } MFMPEG2DLNASINKSTATS;
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /*(WINVER >= 0x0601)*/
  32. #endif /*_INC_MFMP2DLNA*/