summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/ffmpeg/FFMPEGInvoker.h
blob: ecce0311f4f3003a77f8aebfe9d817a225972356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef FFMPEGINVOKER_H_VQD1V1C2
#define FFMPEGINVOKER_H_VQD1V1C2

#include <uscxml/Interpreter.h>

extern "C" {
#include <libavutil/avutil.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
}

#ifdef BUILD_AS_PLUGINS
#include "uscxml/plugins/Plugins.h"
#endif

namespace uscxml {

class FFMPEGInvoker : public InvokerImpl {
public:
	FFMPEGInvoker();
	virtual ~FFMPEGInvoker();
	virtual boost::shared_ptr<InvokerImpl> create(InterpreterImpl* interpreter);

	virtual std::set<std::string> getNames() {
		std::set<std::string> names;
		names.insert("ffmpeg");
		names.insert("http://uscxml.tk.informatik.tu-darmstadt.de/#ffmpeg");
		return names;
	}

	virtual Data getDataModelVariables();
	virtual void send(const SendRequest& req);
	virtual void cancel(const std::string sendId);
	virtual void invoke(const InvokeRequest& req);

protected:
	class EncodingContext {
	public:
		EncodingContext() :
			format(NULL),
			formatCtx(NULL),
			audioStream(NULL), videoStream(NULL),
			audioCodec(NULL), videoCodec(NULL),
			audioTime(0), videoTime(0),
			frame(NULL),
			frame_count(0),
			width(0),
			height(0),
			sws_flags(SWS_BICUBIC),
			sws_ctx(NULL) {}

		virtual ~EncodingContext() {
			if (sws_ctx)
				sws_freeContext(sws_ctx);
		}
		
		tthread::recursive_mutex mutex;
		PixelFormat videoPixFmt;
		std::string filename;
		AVOutputFormat* format;
		AVFormatContext* formatCtx;
		AVStream *audioStream, *videoStream;
		AVCodec *audioCodec, *videoCodec, *imageCodec;
		double audioTime, videoTime;
		AVFrame *frame;
		AVPicture src_picture, dst_picture;
		int frame_count;
		size_t width, height;
		int sws_flags;
		SwsContext *sws_ctx;
		std::string extension;
	};

	AVStream* addStream(EncodingContext* ctx, AVFormatContext *oc, AVCodec **codec, enum AVCodecID codec_id);
	void openVideo(EncodingContext* ctx, AVFormatContext *oc, AVCodec *codec, AVStream *st);
	void writeVideoFrame(EncodingContext* ctx, AVFormatContext *oc, AVStream *st, boost::shared_ptr<Blob> image);
	void closeVideo(EncodingContext* ctx, AVFormatContext *oc, AVStream *st);

	static void run(void*);
	void finish(EncodingContext* ctx, const SendRequest& req);
	void process(const SendRequest& req);
	
	std::set<tthread::thread*> _threads;
	uscxml::concurrency::BlockingQueue<SendRequest> _workQueue;
	bool _isRunning;
	std::map<std::string, EncodingContext*> _encoders;
};

#ifdef BUILD_AS_PLUGINS
PLUMA_INHERIT_PROVIDER(FFMPEGInvoker, InvokerImpl);
#endif

}


#endif /* end of include guard: FFMPEGINVOKER_H_VQD1V1C2 */