Video DemoDoc.h
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. // Video DemoDoc.h : interface of the CVideoDemoDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIDEODEMODOC_H__1DBD75F8_9440_4D7A_95AB_8BB9421E7245__INCLUDED_)
  5. #define AFX_VIDEODEMODOC_H__1DBD75F8_9440_4D7A_95AB_8BB9421E7245__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "DataManager.h"
  10. class CVideoDemoDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CVideoDemoDoc();
  14. DECLARE_DYNCREATE(CVideoDemoDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CVideoDemoDoc)
  22. public:
  23. virtual BOOL OnNewDocument();
  24. virtual void Serialize(CArchive& ar);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CVideoDemoDoc();
  29. public:
  30. unsigned char * data; // 图像数据
  31. int imgWidth;         // 图像宽度
  32. int imgHeight;   // 图像高度
  33. int bytesPerPixel;    // 带宽 
  34. int format;           // 输出格式 
  35. ImageData *id;        // 完整图像shuju
  36. bool image;           // 静态图像数据
  37. VideoData *ms;        // 视频数据源,视频数据源
  38. bool video;           // 是否包含视频数据
  39. // Generated message map functions
  40. public:
  41. void SetData(unsigned char* data,int imgWidth,int imgHeight,int bytePerPixel,int format); // 设置图像 
  42. void SetData(ImageData * id);                                                             // 完整的图像数据结构
  43. void SetVideoSource(VideoData *ms);                                                     // 设置图像数据源
  44. void RefreshView();                                                                       // 刷新全部视图
  45. #ifdef _DEBUG
  46. virtual void AssertValid() const;
  47. virtual void Dump(CDumpContext& dc) const;
  48. #endif
  49. protected:
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CVideoDemoDoc)
  53. // NOTE - the ClassWizard will add and remove member functions here.
  54. //    DO NOT EDIT what you see in these blocks of generated code !
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_VIDEODEMODOC_H__1DBD75F8_9440_4D7A_95AB_8BB9421E7245__INCLUDED_)