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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/**
* @file
* @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
* @copyright Simplified BSD
*
* @cond
* This program is free software: you can redistribute it and/or modify
* it under the terms of the FreeBSD license as published by the FreeBSD
* project.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the FreeBSD license along with this
* program. If not, see <http://www.opensource.org/licenses/bsd-license>.
* @endcond
*/
#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::list<std::string> getNames() {
std::list<std::string> names;
names.push_back("ffmpeg");
names.push_back("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, 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 */
|