~phablet-team/aethercast/fix-for-microsoft-dongle

« back to all changes in this revision

Viewing changes to src/mcs/common/threadedexecutor.h

Add hardware encoding and video streaming support.

The hardware encoding is currently only for Android 5.x based devices. On all others encoding will simply not work. The streaming part of aethercast (MPEGTS packetizing, RTP sending) as based on some code from Android.

Approved by PS Jenkins bot, Thomas Voß, Jim Hodapp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
#ifndef MCS_COMMON_THREADEDEXECUTOR_H_
 
19
#define MCS_COMMON_THREADEDEXECUTOR_H_
 
20
 
 
21
#include <atomic>
 
22
#include <memory>
 
23
#include <thread>
 
24
 
 
25
#include "mcs/common/executor.h"
 
26
#include "mcs/common/executable.h"
 
27
 
 
28
namespace mcs {
 
29
namespace common {
 
30
 
 
31
class ThreadedExecutor : public Executor {
 
32
public:
 
33
    static Executor::Ptr Create(const Executable::Ptr &executable,
 
34
                                const std::string &name = "");
 
35
 
 
36
    ~ThreadedExecutor();
 
37
 
 
38
    bool Start() override;
 
39
    bool Stop() override;
 
40
 
 
41
    bool Running() const override;
 
42
 
 
43
private:
 
44
    ThreadedExecutor(const Executable::Ptr &executable, const std::string &name);
 
45
 
 
46
    void ThreadWorker();
 
47
 
 
48
private:
 
49
    Executable::Ptr executable_;
 
50
    std::string name_;
 
51
    std::atomic<bool> running_;
 
52
    std::thread thread_;
 
53
};
 
54
 
 
55
} // namespace common
 
56
} // namespace mcs
 
57
 
 
58
#endif