videoframe.h

来自「sloedgy open sip stack source code」· C头文件 代码 · 共 51 行

H
51
字号
#ifndef VIDEO_FRAME_H
#define VIDEO_FRAME_H

/************ Change log
 *
 * $Log: videoframe.h,v $
 * Revision 1.1  2006/06/26 03:03:20  joegenbaclor
 * I have decided to include the latest development realease  of OPAL tagged Deimos Devel 1 (June 8 2006) as inegrated classes to opensipstack to avoid future version conflicts due to the fast pace in OPAL development.   This move is also aimed to reduce the size of projects using OPAL componets such as the soon to be relased OpenSIPPhone.
 *
 * Revision 2.1  2003/03/15 23:43:00  robertj
 * Update to OpenH323 v1.11.7
 *
 * 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 + =
减小字号Ctrl + -
显示快捷键?