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

« back to all changes in this revision

Viewing changes to tools/simplesource.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_TOOLS_SIMPLESOURCE_H_
 
19
#define MCS_TOOLS_SIMPLESOURCE_H_
 
20
 
 
21
#include <string>
 
22
#include <memory>
 
23
 
 
24
#include "mcs/basesourcemediamanager.h"
 
25
 
 
26
namespace mcs {
 
27
namespace tools {
 
28
 
 
29
class SimpleSource {
 
30
public:
 
31
    typedef std::shared_ptr<SimpleSource> Ptr;
 
32
 
 
33
    static Ptr Create(const std::string &remote_address, int port);
 
34
 
 
35
    ~SimpleSource();
 
36
 
 
37
    void Start();
 
38
    void Stop();
 
39
 
 
40
private:
 
41
    SimpleSource(const std::string &remote_address, int port);
 
42
 
 
43
private:
 
44
    std::shared_ptr<BaseSourceMediaManager> media_manager_;
 
45
    std::vector<wds::H264VideoCodec> sink_codecs_;
 
46
    wds::NativeVideoFormat sink_native_format_;
 
47
};
 
48
 
 
49
} // namespace tools
 
50
} // namespace mcs
 
51
 
 
52
#endif