⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 videoframe.h

📁 开源的openh323的v1.18.0版,有1.19.0版无法编译过的朋友可以用这版
💻 H
字号:
#ifndef VIDEO_FRAME_H
#define VIDEO_FRAME_H

/************ Change log
 *
 * $Log: videoframe.h,v $
 * Revision 1.8  2003/02/10 00:32:34  robertj
 * Removed code for redundent class and constructor.
 *
 * Revision 1.7  2001/05/10 05:25:44  robertj
 * Removed need for VIC code to use ptlib.
 *
 * Revision 1.6  2000/12/19 22:22:34  dereks
 * Remove connection to grabber-OS.cxx files. grabber-OS.cxx files no longer used.
 * Video data is now read from a video channel, using the pwlib classes.
 *
 * Revision 1.5  2000/08/25 03:18:50  dereks
 * Add change log facility (Thanks Robert for the info on implementation)
 *
 *
 *
 ********/


class VideoFrame {
 public:
     VideoFrame(u_char *cr, int w, int h);
     VideoFrame(int w, int h) ;
     ~VideoFrame();
       
     void SetSize(int newwidth, int newheight);

     u_char *frameptr;
     u_char *crvec;

     u_int ts;

     int    width;
     int    height;
};

#endif //ifndef VIDEO_FRAME_H


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -