You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
525 B
25 lines
525 B
/***************************************************************************************
|
|
*
|
|
* video.h is part of SimpleSkyCam.
|
|
*
|
|
***************************************************************************************/
|
|
|
|
#ifndef _VIDEO_H_
|
|
#define _VIDEO_H_
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include <stdint.h>
|
|
#include <jpeglib.h>
|
|
#include <setjmp.h>
|
|
|
|
#include "json.h"
|
|
#include "gui.h"
|
|
#include "config.h"
|
|
#include "videoframe.h"
|
|
|
|
extern void videoframe_to_pixbuf(GdkPixbuf* dest, VideoFrame *src);
|
|
|
|
#endif // _VIDEO_H_
|
|
|