/* video_window.h * Header file for opengl video window object */ /* Author: Diego Iglesias * iglesias@andrew.cmu.edu * You may not use or distribute this software in part or whole * without the authors' consent. */ #ifndef VIDEO_WINDOW_H_ #define VIDEO_WINDOW_H_ #define WINDOW_WIDTH 176 #define WINDOW_HEIGHT 144 #define QCIF_WIDTH 176 #define QCIF_HEIGHT 144 #include "rgb_frame.h" #include "yuv_frame.h" #include "net_decodefn.h" /* function prototypes */ int videoInitWindow(int width, int height,char *name, yuv_frame* yuv_frame_param); void videoAnimateCommand(); void videoStopAnimationCommand(); void videoQuit(void); #endif